hi ! I'm currently trying to port an app from asp.net to php, however I just hit a wall and need a hand with this.
I need to dump all the data an .aspx recieves via POST to a file, but I have no clue on how to do this
any ideas ?
thanks in advance!
|
|
|
|
|
|
|
You can use the InputStream property of the Request object. This will give you the raw data of the http request. Generally you might want to do this as a custom http handler, but I believe you can do it any time.
|
||
|
|
|
|
You can use
Or you could get a reference to input
Then you could use
|
||
|
|
|
|
The best way to do this is via some browser plugin like Fiddler or LiveHttpHeaders (Firefox only). Then you can intercept the raw POST data. |
||
|
|
|
|
Here is an old post that might help you. |
||
|
|
|
|
You could use a proxy application such as Fiddler. This will let you look at all of the data that was transferred, as well as save it to a file as needed. |
||
|
|