clarification on the concept of "web service"

Posted by udit on Stack Overflow See other posts from Stack Overflow or by udit
Published on 2010-03-28T23:37:26Z Indexed on 2010/03/28 23:43 UTC
Read the original article Hit count: 236

Filed under:
|
|
|
|

Im a little confused on the varying definitions and implementations of web services available as implementations. Need some clarification please.

Ones I have used till now:

  1. If a vendor gives me a specific format of XML that I can send populated with data to request and I make a simple HTTP POST over the internet passing in the XML String as the payload, is this a web service call ? If so, is there a specific name to it, this kind of web service ? Because obviously, it does not use anything like Axis, WSDL or SOAP to establish this connection.

  2. A variant of this is If the vendor gives me an XSD, I use JAXB to make a java class out of it and pass in the serialized version of the object, which eventually works out to be the same as option 1.

  3. RESTful web service: Vendor gives me a URL like http://restfulservice/products and I can make HTTP Requests to the URL and depending on what HTTP verb I use, the appropropriate action is called and the response sent over the wire.

Ones I have only read about\ have a vague idea about

  1. SOAP. How does this work?.. Ive read the W3Schools tutorial and I undertsand that there is a very specific form of XML that is standardized according to W3C standards that we use to pass the same kind of messages as we did in option 1. But how does this work in real life? Vendor sends me what? Do I generate classes? Do I serialize some objects and http post them over to an address? Or do the generated objects themselves have connection methods that will do them for me?

  2. What about WSDL? When does a vendor send me WSDL and what do I do with it ? I guess I can generate classes from it. If yes, then what do I do with the generated classes ?

  3. When do I need that axis jar to generate classes from something that the vendor sends ?

As you can see, I have some clear and other mostly vague ideas about the different kinds of web services available. would help if someone ould clarify and\or point to more real-world resources. I've looked a little bit into Java Web Services on the internet and the numerous four letter acronyms that get thrown at me make me dizzy.

Thanks

© Stack Overflow or respective owner

Related posts about java

Related posts about web-services