InterviewSolution
| 1. |
Mention What Is The Response Format For Soap Response? |
|
Answer» SOAP response would be LIKE Content Type: text/xml; CHAR set=utf-8 Content-Length: nnn <? xml version= “1.0”?> <SOAP-ENV: ENVELOP xmlns: SOAP-ENV= http://www.guru99.org/2003/05/soap-envelope” SOAP-ENV: encoding style= http://www.guru99.org/2003/05/soap-encoding> <SOAP-ENV: Body xmlns=http://www.xyz.org/quotation”> <m:GetQuotationResponse> <m:Quotation > Here is the Quotation</m:Quotation> </m:QuotationRequest> </SOAP-ENV: Body> </SOAP-ENV: Envelope> SOAP response would be like HTTP/1.0 200 OK Content Type: text/xml; char set=utf-8 Content-Length: nnn <? xml version= “1.0”?> <SOAP-ENV: Envelop xmlns: SOAP-ENV= http://www.guru99.org/2003/05/soap-envelope” SOAP-ENV: encoding style= http://www.guru99.org/2003/05/soap-encoding> <SOAP-ENV: Body xmlns=http://www.xyz.org/quotation”> <m:GetQuotationResponse> <m:Quotation > Here is the Quotation</m:Quotation> </m:QuotationRequest> </SOAP-ENV: Body> </SOAP-ENV: Envelope> |
|