http posting data and reading data post
-
hi, does any one know a good class which can post data to a http server and most important read back posted data? Thanks, i really need it urgent!
-
hi, does any one know a good class which can post data to a http server and most important read back posted data? Thanks, i really need it urgent!
I know few classes, check out System.Net.WebClient ,System.Web.HttpRequest and System.Web.HttpResponse ...
DevIntelligence.com - My blog for .Net Developers
-
hi, does any one know a good class which can post data to a http server and most important read back posted data? Thanks, i really need it urgent!
-
Thanks, but i need a class that could read POSTED data. like if I'm sending to a page which response me with post info (credit card clearing for example) i need to read the post only. do you know any solution?
-
Thanks, but i need a class that could read POSTED data. like if I'm sending to a page which response me with post info (credit card clearing for example) i need to read the post only. do you know any solution?
Eli Nurman wrote:
sending to a page which response me with post info
Do you mean the web page to which you posted data (eg: the credit card number) returns a response (eg: validation success/failure) to the client via a
POST
? :confused: /raviMy new year resolution: 2048 x 1536 Home | Music | Articles | Freeware ravib(at)ravib(dot)com
-
Eli Nurman wrote:
sending to a page which response me with post info
Do you mean the web page to which you posted data (eg: the credit card number) returns a response (eg: validation success/failure) to the client via a
POST
? :confused: /raviMy new year resolution: 2048 x 1536 Home | Music | Articles | Freeware ravib(at)ravib(dot)com
yes, that is exactly it! how is it possible to read the POST sent? BTW i think all clearing companies do so (sending the transactioID etc... data)
-
yes, that is exactly it! how is it possible to read the POST sent? BTW i think all clearing companies do so (sending the transactioID etc... data)
Hi Eli,
Eli Nurman wrote:
how is it possible to read the POST sent?
The only thing I can think of is that you'd have to have a server to receive responses from the clearing house.
Eli Nurman wrote:
i think all clearing companies do so
I would've thought they send back some token as part of the response, allowing you to conduct an encrypted conversation in order to process the transaction. Much like a series of web service calls. The "
POST
response" story seems odd to me, but that's just my opinion. /raviMy new year resolution: 2048 x 1536 Home | Music | Articles | Freeware ravib(at)ravib(dot)com
-
Hi Eli,
Eli Nurman wrote:
how is it possible to read the POST sent?
The only thing I can think of is that you'd have to have a server to receive responses from the clearing house.
Eli Nurman wrote:
i think all clearing companies do so
I would've thought they send back some token as part of the response, allowing you to conduct an encrypted conversation in order to process the transaction. Much like a series of web service calls. The "
POST
response" story seems odd to me, but that's just my opinion. /raviMy new year resolution: 2048 x 1536 Home | Music | Articles | Freeware ravib(at)ravib(dot)com
Thanks Ravi I guess so :^) but if there is a class that allows me to read the entire data that has send including headers and post data that can be useful to, no? and then analyze the post data into a dictionary So if you know a tool that responses the entire received data from the "HTTP/1.1 200 OK" until the end of document please let me know. Thanks
-
Thanks Ravi I guess so :^) but if there is a class that allows me to read the entire data that has send including headers and post data that can be useful to, no? and then analyze the post data into a dictionary So if you know a tool that responses the entire received data from the "HTTP/1.1 200 OK" until the end of document please let me know. Thanks