| 
								        
								         
								        What are the elements that should be contained in SOAP message?1. Envelope - Translates the XML document to a SOAP message. It is the root element.2. Header - Contains the header message. Contains the application specific information.
 3. Body - Contains the call and response message.
 4. Fault element - Used for communicating errors. If present, it appears as a child element of the body and can appear only once.
 What are the elements that should be contained in SOAP message?The following are contained in SOAP messages:
 1. Envelope Element : XML document identification and translation into a SOAP compatible message is done by this element.
 2. Header Element : The header message is available in his element.
 3. Body Element : The call and response message is available in the body element.
 4. Fault Element : Errors occurred during the process is handled by fault element.
 |