Hello, members of swe-php.
I am writing a client in PHP 5.6 . Yes. (Sadly, it has to be PHP to integrate well with another SW).
The WSDL file location link is ending with "/v3?wsdl" . Too bad that the server does NOT tolerate ending slash like this: "/v3/?wsdl" , because the PHP ver 5.6.24-0+deb8u1 (cli) would have no problems finding the XSD file, I suppose.
It the
WSDL file, this is how it defines the XSD schema import:
(btw: can I tweak the WSDL file received from the webservice? Probably not. So, how to tweak PHP into finding the XSD ?)
------------ snip ----------------
<wsdl:types>
<xsd:schema>
</xsd:schema>
</wsdl:types>
--------------- snip ---------------
PHP 5.6.24... fails miserably in finding it !!!
It is TRYING to locate it here:
instead to look for it here:
Please, can anyone shed some light on this issue? Why does it NOT look for it in the /v3/ subfolder?
Is there any WAY to tweak this and alter the location where it is looking???
Thank You for any advice.
F.R.