How to retrieve HTTP_RAW_POST_DATA in c# 2.0
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hello, I am trying to integrate GoogleCheckout and working on to process order notifications sent by google... Google sends order notifictaion in XML format as HTTP_RAW_POST_DATA. I can retrive it in PHP as follows: if(isset($GLOBALS["HTTP_RAW_POST_DATA"]) && $GLOBALS["HTTP_RAW_POST_DATA"] != "") { $msg.="
".$GLOBALS["HTTP_RAW_POST_DATA"]; } Can anybody let me know its equivalent code in asp.net C# 2.0 Thanks in advance for all your help. Regards, Suman Singh