I am using PHP SoapClient to access the SOAP service. The service provider told me that their WSDL is for development only, and I should not use it in production.
The SoapClient constructor expects the first argument to be the WSDL of this service, but also allows null when working in non-WSDL mode.
I was looking for RFC and W3C for guidance, but could not find anything specific in using WDSL with SOAP.
Should anyone providing a SOAP service also provide WSDL?
If someone who provides the WSDL SOAP service, is it right to request a WSDL for every SOAP call?
source
share