What are the disadvantages of SOAP web services?

devquora
devquora

Posted On: Feb 22, 2018

 

As every good thing comes with some cost, SOAP also has few disadvantages attached to it. Below are few disadvantages:
  • SOAP only uses XML. It doesn’t take other formats like JSON into consideration.
  • There is a high possibility of coupling between client and server as SOAP is based on contract.
  • Since it uses XML format, SOAP is considered to be a slow platform because the payload is large for a simple string message.
  • Any change in server contract is reflected in client stub classes.
  • SOAP is hard to test in browsers.
  • SOAP clients do not hold any stateful references to remote objects.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Soap Interview Questions

    Explain what is SOAP?

    SOAP (Simple Object Access Protocol) is a communication protocol that facilitates the exchange of data over different n..

    Soap Interview Questions

    Mention the differences between SOAP and other remote access techniques?

    The following are the differences between SOAP and other remote web services such as DCOM, COBRA :SOAP WEB SERVICES O..

    Soap Interview Questions

    State the syntax rule for SOAP message?

    Following is the syntax rule for SOAP message- A SOAP message should use XML that is encoded. A SOAP message MUST use t..