Hi,
I have this piece of code in a SOAP Envelope and i know for sure the string element 'vCareOf' can contain illegal XML characters like 'James & Mika' . Can anyone tell me what the correct syntax is to bypass these characters? below is my attempt. PS, i'm a newbie to JDev
+ "<ns1:AddressToOracleProcessRequest> "
+ " <ns1:input> "
+ " <ns1:careOf>"
+ <![CDATA[ vCareOf]]>
+ "</ns1:careOf>
I have this piece of code in a SOAP Envelope and i know for sure the string element 'vCareOf' can contain illegal XML characters like 'James & Mika' . Can anyone tell me what the correct syntax is to bypass these characters? below is my attempt. PS, i'm a newbie to JDev
+ "<ns1:AddressToOracleProcessRequest> "
+ " <ns1:input> "
+ " <ns1:careOf>"
+ <![CDATA[ vCareOf]]>
+ "</ns1:careOf>