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

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.
  • Comment on Re^4: Question: Send a chunk of XML to a server

Replies are listed 'Best First'.
Re^5: Question: Send a chunk of XML to a server
by ikegami (Patriarch) on Nov 09, 2009 at 23:28 UTC
    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

        You are mistaken. CGI uses a pair of pipes and some environment variables. CGI does not use or rely on HTTP at all.