Add specific namespace to SOAP envelope in PHP
1 answer
You cannot change the namespace in SoapEnvelope.
Notice the xmlns: soap namespace in the above example. It should always be set to "http://www.w3.org/2001/12/soap-envelope". The namespace defines an envelope as a SOAP envelope. If a different namespace is used, the application generates an error and discards this message.
+1
a source to share