I need to consume a webservice, after adding the web reference, i found all complex web message parts are added to Reference.xsd as root elements. It also contains root elements for each defined SOAP header. I know they are SOAP header only because i was sent a sample XML file that the webservice expecting.
While creating a map, i can only map things with message parts. So i can create message parts using map and construction in Orchestration.
And i can create the SOAP Header part using message assignment and steps like below:
-
-
the root name in the property schema should match the root element in Reference.xsd (But in Reference.xsd, it’s a root record
-
assign the XML Part of the SOAP Header as a string to the property
Then my question is how to combine them together as the sample XML file that the webservice requires?
Thanks,