Saturday, 2 April 2016

How SOAP based system works for client side ?


Here, we have these components :
1. Client code, which calls web service.
2. SOAP package : 
       a. SOAP Serializer / Deserializer
       b. HTTP Encoding / Decoding

STEPS
 1. Client code makes method call.
 2. SOAP Serializer / Deserializer: serializes the method call into a SOAP-XML request.
 3. HTTP Encoding / Decoding: wraps the SOAP-XML request in a HTTP request.
 4. Send HTTP request to SOAP server.
 5. Recieve response from SOAP server.
 6. HTTP Encoding / Decoding: extracts SOAP-XML response from HTTP response.
 7. SOAP Serializer / Deserializer: deserialize SOAP-XML response into method response.
 8. Return value to method call in client code.




No comments:

Post a Comment

Note: only a member of this blog may post a comment.