“&” is terminate as “&” in the request Parse XML, can anyone help on this to pass it as “&” only?
@keerthiy ‘&’ is a special character in XML.
If you are using connect soap to connect to an external service and in the parse XML stream mapping, the field contains an unescaped special character ‘&’. The field is using the ‘mapping mode’ as standard. The unescaped special character & is getting escaped properly by getting updated to ‘&’ . This is similar to sending a ‘<’ or ‘>’ in the payload. All special characters must be escaped.
To send it as an ‘&’ you need to escape the special character. In the soap request this will show as ‘&’. We have provided the same solution to other clients, and it has worked for them.
The special character needs to be escaped and there is no local fix for this
Hi Marije ,
Actually In parse Xml the field i used the ‘mapping mode’ as standard.
For example "abc & edu " i will pass this formate in xml .it’s showing fail
while Passing "abc & edu " xml showing sucess and in dev it’s shows like “abc & edu” .
In xml Instead of using & i want to pass only & ..please help me out
In advance Thank you so much
@keerthiy the character must be escaped first. in order for it to display correctly.
See this article.