Thread POST direkt auslesen ohne Formular (32 answers)
Opened by dater at 2010-02-10 15:55

bianca
 2010-02-10 17:00
#132553 #132553
User since
2009-09-13
7016 Artikel
BenutzerIn

user image
2010-02-10T15:57:06 sid burn
Evtl. hat CGI aber einen befehl der dir dir RAW Daten zurück gibt.

Wenn er Einfluss auf den Content-Type des Absenders hat, vielleicht hiermit:
Quote
HANDLING NON-URLENCODED ARGUMENTS
If POSTed data is not of type application/x-www-form-urlencoded or multipart/form-data, then the POSTed data will not be processed, but instead be returned as-is in a parameter named POSTDATA. To retrieve it, use code like this:

my $data = $query->param('POSTDATA');
10 print "Hallo"
20 goto 10

View full thread POST direkt auslesen ohne Formular