in reply to Re^3: Finding XML POST data in HTTP::Server::Simple::CGI
in thread Finding XML POST data in HTTP::Server::Simple::CGI
There may also be a difference between the result in the 'handle_request()' and the dispatched 'resp_hello()'.tuser:/u1/data/MeerKat/taxiiSite$ telnet localhost 8080 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. POST /hello HTTP/1.1 Content-type: text/plain Content-length: 6 foobar HTTP/1.1 200 Content-Type: text/plain; charset=ISO-8859-1 <<<foobar>>> Connection closed by foreign host. tuser:/u1/data/MeerKat/taxiiSite$ telnet localhost 8080 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. POST /hello HTTP/1.1 Content-type: application/xml Content-length: 6 foobar HTTP/1.1 200 Content-Type: text/plain; charset=ISO-8859-1 <<<undef>>> Connection closed by foreign host.
It is always better to have seen your target for yourself, rather than depend upon someone else's description.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Finding XML POST data in HTTP::Server::Simple::CGI
by Anonymous Monk on Mar 16, 2016 at 19:39 UTC | |
by Wiggins (Hermit) on Mar 16, 2016 at 19:49 UTC | |
by Anonymous Monk on Mar 16, 2016 at 19:57 UTC |