XML soap Problem
-
hii all; i got a serious problem. i return an xml file in a string from web service. when its serialized the xml serializer replaces tages '<' with its unicode &.. which make a problem to me. how can i force the serializer to make some how my xml string const ,commented and don't change tages. by the way i don't want change values to tages again with my own i wanted to be back as tages. Thanks in advance. marcoryos
-
hii all; i got a serious problem. i return an xml file in a string from web service. when its serialized the xml serializer replaces tages '<' with its unicode &.. which make a problem to me. how can i force the serializer to make some how my xml string const ,commented and don't change tages. by the way i don't want change values to tages again with my own i wanted to be back as tages. Thanks in advance. marcoryos
You mean that the data is html encoded? "" turns into "<tag>"? This is obviously needed if you put an xml document as data inside another xml document, as web services use xml to send the data. When the soap message is parsed the data will be restored to it's original state. --- b { font-weight: normal; }
-
You mean that the data is html encoded? "" turns into "<tag>"? This is obviously needed if you put an xml document as data inside another xml document, as web services use xml to send the data. When the soap message is parsed the data will be restored to it's original state. --- b { font-weight: normal; }
yes but the problem is when i got the data back i don't wanna parse it i wanna save it as its on xml file. The destenation program written in c standard so i have to change the the codes by my self into tages which headach i don't want to. is there any way to transfer file without allowing soap serializer to do soo. i tried to comment xml tages and use CDATA but it changes to:doh: marcoryos
-
yes but the problem is when i got the data back i don't wanna parse it i wanna save it as its on xml file. The destenation program written in c standard so i have to change the the codes by my self into tages which headach i don't want to. is there any way to transfer file without allowing soap serializer to do soo. i tried to comment xml tages and use CDATA but it changes to:doh: marcoryos