How to send multiple key value pairs to individual repetitive tags for outbound SOAP,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2024 05:23 AM
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>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2024 06:25 AM
@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.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2024 06:38 AM
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?