Hello all,
Apologies if this has been asked before but couldn’t find anything specific when searching the forum.
I am working on an automation that needs to use SOAP Web Service to send a request to a service via WSDL. The automation i’ve developed scrapes a number of values that are must be included in the SOAP request from an web page and stores them as variables.
I’m struggling to work out how to include the values within the SOAP web service action, the URI that I have been provided allows me to build the soap request and select the operation:
What I can’t work out is how to add the variables I need to pass into the request? below is a bit of a sample XML I was supplied from an order, below is a snippet of it:
<Address>
<PremisesName/>
<ThoroughfareNumber/>
<ThoroughfareName>01</ThoroughfareName>
<AddressLine2/>
<AddressLine3>High Road</AddressLine3>
<PostTown>Cambridge</PostTown>
<PostCode>CB11 1CA</PostCode>
<Country>UK</Country>
</Address>
I’m guessing I need to add the variables the bot is scraping the page in the parameters but not sure how to apply it?
Any help on this one would be most appreciated!!