Q
quest
<?xml version="1.0" encoding="UTF-8"?>
<VV version="2">
</VV>
I have a simple xml as above. I posted it (using HTTP post command) from my
Win32 app ("text/xml; utf-8" specified) to http handler written in C#. To my
surprise, I am gettting something like this from my http handler :
"%3C%3Fxml+version%3D%221.0%22+encoding%3D%22UTF-8%22%3F%3E%3" which is
supposed to be :
<?xml version="1.0" encoding="UTF-8"?>
Any idea why this happen and how should I solve it ?
<VV version="2">
</VV>
I have a simple xml as above. I posted it (using HTTP post command) from my
Win32 app ("text/xml; utf-8" specified) to http handler written in C#. To my
surprise, I am gettting something like this from my http handler :
"%3C%3Fxml+version%3D%221.0%22+encoding%3D%22UTF-8%22%3F%3E%3" which is
supposed to be :
<?xml version="1.0" encoding="UTF-8"?>
Any idea why this happen and how should I solve it ?