Hi again!!!
to
ianhull -->
Please, read my posts... I'm not receiving a common POST Request. As you may know, a common one would be:
Code: Select all
POST /test.php HTTP/1.1
Host: localhost
Content-Length: 27
Content-Type: application/x-www-form-urlencoded
userid=joe&password=guessme
--------------------------------------------------------------------------
to
Ambush Commander-->
Your post is interesting, but it's interesting if you want to get information from a server. As you said "You'd have to open a connection to the server and retrieve it.". But it's not the case. I'm not sending the request, I'm receiving it.
The problem is that the external server is passing me information in that singular way. It's not passing me info in a common GET way o POST way, it's just sending a POST without variables and it's adding a text/html content which could be "MAXUSER=21" or "My life is boring" or an XML utf encoded between the body tags.
I want to read THAT text/html he's sending me within the request.
