How to send multiple key value pairs to individual repetitive tags for outbound SOAP,

Community Alums
Not applicable

How to send multiple key value pairs to individual repetitive tags for outbound SOAP, 

 

The wsdl looks like below,

 

<hello>

<parm>

<name>Subject</name>

<value>Test</value>

</parm>

<parm>

<name>ID</name>

<value>ID</value>

</parm>

 

</hello>

 

 

2 REPLIES 2

Ankur Bawiskar
Tera Patron
Tera Patron

@Community Alums 

you can use variable substitution and form the complete XML and replace there

check this link

Send multiple values for same xml tag in SOAP 

If my response helped please mark it correct and close the thread so that it benefits future readers.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

Community Alums
Not applicable

Yes I have tried that, but this example is different as I have to send it as key value pairs (Subject as key and Value as the answer) and also I need to pass some variables only on certain conditions on the same repetitive tags, can you please help how to form this XML structure?