Hallo, per Java simuliere ich einen POST-Request und erhalte folgenden request:
POST /test.php HTTP/1.1
Host: www.meinedomain.de
User-Agent: null
Accept: */*
Cookie: 12345=null
Connection: keep-alive
Referer: www.meinedomain.de/test.php
Pragma: no-cache
Content-Type: multipart/form-data; boundary=---------------------------34468843
Content-Length: 183
---------------------------34468843
content-disposition: form-data; name="test"; filename="Hallo.txt"
Content-Type: text/plain
[B@1c6866d
---------------------------34468843
Als Antwort erhalte ich:
HTTP/1.0 200 OKDate: Wed, 28 Mar 2007 10:10:50 GMTServer: Apache/1.3.31 (Unix) FrontPage/5.0.2.2635 PHP/4.4.2X-Powered-By: PHP/4.4.2Content-Type: text/html
...
Aber im PHP-Skript dass die Daten bekommt kann ich nichts ansprechen, keon $_POST, kein $_FILES etc.
lediglich "$stdin = fopen('php://stdin', 'r');" gibt mir den Inhalt der Datei aus, sofern als content-type "text/plain" angegeben wurde ...
POST /test.php HTTP/1.1
Host: www.meinedomain.de
User-Agent: null
Accept: */*
Cookie: 12345=null
Connection: keep-alive
Referer: www.meinedomain.de/test.php
Pragma: no-cache
Content-Type: multipart/form-data; boundary=---------------------------34468843
Content-Length: 183
---------------------------34468843
content-disposition: form-data; name="test"; filename="Hallo.txt"
Content-Type: text/plain
[B@1c6866d
---------------------------34468843
Als Antwort erhalte ich:
HTTP/1.0 200 OKDate: Wed, 28 Mar 2007 10:10:50 GMTServer: Apache/1.3.31 (Unix) FrontPage/5.0.2.2635 PHP/4.4.2X-Powered-By: PHP/4.4.2Content-Type: text/html
...
Aber im PHP-Skript dass die Daten bekommt kann ich nichts ansprechen, keon $_POST, kein $_FILES etc.
lediglich "$stdin = fopen('php://stdin', 'r');" gibt mir den Inhalt der Datei aus, sofern als content-type "text/plain" angegeben wurde ...
Kommentar