??? 04/09/08 22:45 Read: times |
#153098 - They could Responding to: ???'s previous message |
Craig Steiner said:
But that doesn't mean that any generalization such as "GET" is for getting and "POST" is for submitting is a valid assessment. Andy Neil said:
However, one could choose to adopt this as an operating principle when implementing a system such as the OP seems to be describing... They could. But if I were coding such a beast on the 8052 I'd almost definitely use a single function that POSTs both "requests" and "submits." Why have code to construct a GET request and more code to construct a POST request when you could just use the POST function for everything? Now if they never need POST then I'd do everything with GET. But if they need POST even once I think it'd make more sense for them to use that same POST function to handle everything and ignore "GET" altogether. Regards, Craig Steier |