- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2018 08:27 AM
Hi,
I see it's problematic when sending special characters in the text that's sent across.
Checked other advises where they say to replace the text in the following way where I call the SOAP service.
add_info.replaceAll('&', '&'); I had to do the same for
Is there a standard way that ServiceNow takes care of this instead of I writing this replace script on every text item I send across in SOAP XML? Thanks.
Solved! Go to Solution.
- Labels:
-
Scoped App Development

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2018 06:33 PM
How are you calling webservice from business rule. make sure if you are using script than use setStringParameter instead of setStringParameterNoEscape

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2018 08:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2018 06:18 PM
As soon as I make the variable to Escape XML, my SOAP request is failing when called through business rule.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2018 06:29 PM
Please refer to https://blogs.msdn.microsoft.com/adpowershell/2010/01/20/addingremoving-members-from-another-forest-or-domain-to-groups-in-active-directory/
or powershell
Import-Module ActiveDirectory $dn = Get-ADUser username -Server "different.domain.com" Add-ADGroupMember -Identity YourDomainLocalGroup -Members $dn

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2018 06:33 PM
How are you calling webservice from business rule. make sure if you are using script than use setStringParameter instead of setStringParameterNoEscape