in reply to Re^2: Question: Send a chunk of XML to a server
in thread Question: Send a chunk of XML to a server

There's nothing in the CGI specification that says a form submission must be a POST or that *all* POST submissions are forms. Am I missing something AM?

-derby
  • Comment on Re^3: Question: Send a chunk of XML to a server

Replies are listed 'Best First'.
Re^4: Question: Send a chunk of XML to a server
by Anonymous Monk on Nov 09, 2009 at 22:38 UTC
    Kinda. There are no forms on the server, just data. POST is not a "safe method", its used to change something on the server. GET is a "safe method", its only used to query the server, to retrieve data from server. All this is part of the standard protocol called CGI. It is not just convention, its the rules.
      The choice method to use for requests without side-effects (GET) and requests with side-effects (POST) is indicated by the HTTP protocol. It has nothing to do with the CGI protocol or the post to which you replied.
        Yes it doesm, CGI is built on top of HTTP