← Prev in month
← Prev in thread
parsing xml strings that consists of special characters
Hello everybody,
I have a question about parsing xml strings that have special characters such as <,>,& .I need to send some <html> tag elements as an xml string in a soap request .I tried replacing < with < and > with > and embedding this inside <![[CDATA ]]> but it didnt work
<html><head></head><body><h1>Test</h1><h3>foo</h3></body></html> this is the content I want to send as a xml string .
And I send in the following way,
var conten=<![CDATA[ " < html > < head > < /head > < body > < h1 > Test < /h1 ><h3> foo < /h3 > < /body > < /html > "]]>;
var conten=<![CDATA[ " < html > < head > < /head > < body > < h1 > Test < /h1 ><h3> foo < /h3 > < /body > < /html > "]]>;
which is sent as,
<content><html><head></head><body><h1>Test</h1><h3>foo</h3></body></html></content> in the soap request message.
can anyone tell me what's my mistake and how can I rectify it?I would be of great help to me.Thanks in advance.
regards,
Robina
Master of Media Informatics
(RWTH univ)
Bonn
Germany
Robina
Master of Media Informatics
(RWTH univ)
Bonn
Germany
Robina
Master of Media Informatics
(RWTH univ)
Bonn
Germany
← Prev in month
← Prev in thread