Forum Discussion
richie
5 years agoCommunity Hero
Hey chinthasantosh
The characters you tried to use are reserved in xml (so reserved in SOAP messages) as these characters are actually entity placeholders.
There are 5 defined xml entities
Double quot (")
Single quote (')
Greater than (>)
Less than (<)
Ampersand (&)
So you need to escape these characters so instead of using the character, e.g. '&' as part of a tag value you need to use the escape sequence
So instead of
<element>&</element>
You use
<element>&</element>
Escape sequences are as follows:
Double quot (") == "
Single quote (') == '
Greater than (>) == >
Less than (<) == <
Ampersand (&) == &
Hope ive been clear,
Rich
The characters you tried to use are reserved in xml (so reserved in SOAP messages) as these characters are actually entity placeholders.
There are 5 defined xml entities
Double quot (")
Single quote (')
Greater than (>)
Less than (<)
Ampersand (&)
So you need to escape these characters so instead of using the character, e.g. '&' as part of a tag value you need to use the escape sequence
So instead of
<element>&</element>
You use
<element>&</element>
Escape sequences are as follows:
Double quot (") == "
Single quote (') == '
Greater than (>) == >
Less than (<) == <
Ampersand (&) == &
Hope ive been clear,
Rich