From the blogosphere

I don't usually do a summary post like this one but as I try to go through my ~2000 unread blog posts, I am making a note of those I find interesting.

Phew... that was it! ~2000 blog posts marked as 'read'. Most probably I missed a lot of good ones 🙁 To all bloggers... can you, please, stop blogging for a while? (just joking :-)))

4 responses to “From the blogosphere”

  1. Regarding the echo service, I don’t think I said SOAP == RPC . I certainly don’t think it is. Regarding SOAP != HTTP POST, tell me more about that. Are you saying SOAP can use other transports? What’s the magic I’m missing?

  2. Hey Tony,

    Yes, SOAP can be used with other transports as well. There is nothing specific to SOAP to couple it with HTTP. It’s just happens that the only binding that has been standardised (and the most popular one) is the SOAP over HTTP. However, MS, Axis, and probably others are building SOAP over TCP and other transports as well.

    SOAP is a message transfer protocol. It treats HTTP as a transport protocol (and not as an application protocol).

    Does this make sense? Feel free to email me if you want to chat about this.

    .savas.

  3. Hi Savas,

    I asked the question badly. I realize SOAP can be sent over the transport of your choice, but in the case of HTTP, what is the issue with an exchange of documents as I’ve described it? A service accepts a document and returns a document. That is exactly what a SOAP service is. The returned document can be a static document. A Web server can return a static document. Why is that not SOAP?

  4. That is indeed one way of serving a SOAP message but it has nothing to do with SOAP, the spec. Also, SOAP says nothing about request-response which is what you are describing here. If what you are describing does not violate the SOAP/HTTP binding, then that’s fine. However, please note that the SOAP spec is completely agnostic to all these, hence my comment.