10 Rules to identify if a Web Service is a true Web service

Here is a list of top 10 rules that ensures if a Web Service is a true Web Service.

  1. Uses WSDL

    A Web Service should expose its service contract using WSDL.  If it can't give you a WSDL document, it's probably just XML over HTTP.
  2. Uses SOAP

    All messages sent from and received by the Web Service must use SOAP formatting.  If it's not using SOAP it's probably just XML over HTTP.
     
  3. Uses XSD
    All data types in the SOAP payload must be XSD compliant.  No platform native types are allowed.  If it's not using XSD it's probably just XML over HTTP.
     
  4. Uses XML

    T
    he underlying messages should of course be formatted using XML.
     
  5. No Arbitrary Binary Data

    The message payload should 7 bit ASCII and should contain no embedded binary blobs.  Any binary data passed over a Web Service should be sent using either SwA, DIME or MTOM (preferably MTOM).
     
  6. Transport is likely to be HTTP

    Although not a requirement, the majority of Web Services today use HTTP as the transport.  Compliant Web Services should definitely work over HTTP.
     
  7. Discovery can be through UDDI

    Again although not a requirement, it should be possible to host the Web Service endpoint using UDDI.
     
  8. Agreed Versions of Specifications

    The versions of the above specifications (WSDL, SOAP, XSD, XML, HTTP, UDDI) should be in line with the latest version of the WS-I Basic Profile (http://www.ws-i.org/) - to ensure Web Service compliance between vendors.
     
  9. Operations should be Document Style

    Operations to/from a Web Service should be Document/Message Style (e.g. SendOrder(order o)).  RPC style should be avoided (e.g. SetOrderLine1(orderId id)).
     
  10. Should be compliant with WS-*

    Compliant Web Services should be able to accept WS-* payloads and extensions for Security, Reliability and Transactions (although not all stacks today support these yet)


Similar Articles