While building a SOAP request to be sent to a webservice, do I need to include MIME Headers or are they optional?
And do I need to specify the MIME type in the WSDL?
While building a SOAP request to be sent to a webservice, do I need to include MIME Headers or are they optional?
And do I need to specify the MIME type in the WSDL?
Copyright © 2021 Jogjafile Inc.
If you build your SOAP request from scratch by your own you have to set the MIME-Type.
The default MIME-Type for a SOAP request is
Also add the charset
There is no need to specify the
MIMEtype in theWSDL. The content of aSOAPrequest is by defaultapplication/soap+xml.