Re: Web Service: Which Way In?



"(PeteCresswell)" <x@xxxxxxxxx> wrote in
news:lkop725cc70jqhhv29orv75242c6d96hjk@xxxxxxx:

Seems like there are three ways to post a request to a web
service: ------------------
- SOAP message
- HTTP Get
- HTTP Post
-----------------

Given that I can do any of the three from VBA code (?), is there
any reason that I shouldn't go with the least syntax/coding?
That would seem to be one of the HTTP methods.

Well, for one, GET and POST are not equivalent. GET is for read-only
operations, POST for operations that change data, for instance
(that's a vast oversimplification, but one way of defining the weird
word "idempotent", which is used in the W3C docs to describe the
appropriate use of the two).

Seems to me that which one you choose will depend on how the
interface of the application you're working with on the web is
designed.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
.



Relevant Pages

  • Authenticate SOAP Message only no GET OR POST
    ... i need to write a webservice which will accept only soap message NO POST or ... use WSE, is there way? ... I don't speak via HTTP GET- you have to use HTTP POST to talk to me. ...
    (microsoft.public.dotnet.framework.aspnet.webservices)
  • Authenticate SOAP Message only no GET OR POST
    ... i need to write a webservice which will accept only soap message NO POST or ... use WSE, is there way? ... I don't speak via HTTP GET- you have to use HTTP POST to talk to me. ...
    (microsoft.public.dotnet.framework.webservices)
  • Web Service: Which Way In?
    ... Seems like there are three ways to post a request to a web service: ... SOAP message ... HTTP Post ...
    (comp.databases.ms-access)