Hello,
I am sorry i may not put on my question correctly but i do receive the posted data but not in correct format
HTML POST
<form name="form1" action="http://localhost/prosessor.asmx/payment" method="post">
<input name="xml_data" type="hidden" value="<note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body></note>" />
</form>
<script language="javascript">
document.forms["form1"].submit();
</script>
XML DATA SENT ON HTTP POST
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
DATA RECEIVED FROM HTTP POST
<string>xml_data=%3Cnote%3E%3Cto%3ETove%3C%2Fto%3E%3Cfrom%3EJani%3C%2Ffrom%3E%3Cheading%3EReminder%3C%2Fheading%3E%3Cbody%3EDon%27t+forget+me+this+weekend%21%0D%0A%3C%21--+Visual+Studio+Browser+Link+--%3E%0D%0A%3Cscript+type%3D</string>
THIS IS EXACTLY WHAT I AM TRYING TO ACHIVE. I WANT TO GET THE ACTUAL XML DATA THAT WAS SENT FROM HTTP POST.
THAnk you