We have setup a simple process which calls a webservice and then assigns the response to a memo text field.
We need to assign the value returned from the webservice call to another field lets say "IndustryNumber".
The output we receive from the webservice is as follows:
<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="
schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="
www.w3.org/2001/XMLSchema-instance" xmlns:xsd="
www.w3.org/2001/XMLSchema"><s...<CheckPinResponse xmlns="
tempuri.org/"><CheckPinResult...t;/soap:Envelope>
How would we go about extracting the value "P12345" we tried using regular expressions but get a error when running the process.
Your help will be appreciated.