Estoy tratando de configurar un cliente SOAP en un servidor para comunicarme con Magento en un servidor de prueba. Ambos servidores tienen instalada, configurada y mostrada la extensión SOAP de PHP phpinfo()
.
Intenté desactivar el almacenamiento en caché, utilizando las API v2 y v1 y todo lo demás que se me ocurrió. De todos modos, sigo teniendo los mismos problemas.
O bien es:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<SOAP-ENV:Fault>
<faultcode>SOAP-ENV:Server</faultcode>
<faultstring>
Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL:
Couldn't find <definitions> in 'http://myserver.com/api/v2_soap?wsdl=1'
in dispatch.php:39
Stack trace: #0 dispatch.php(39):
SoapClient->SoapClient('http://myserver.com/...', Array) #1 {main} thrown
</faultstring>
</SOAP-ENV:Fault>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
o a veces otro error SOAP doesn't allow DTD....
Ahora estoy usando solo el código de ejemplo simple de Magento desde aquí , en lugar de ejecutar algo significativo, hasta que pueda descubrir qué está pasando con esto.
Si hago file_get_contents
a la URL del servicio, obtengo:
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns:typens="urn:Magento" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" name="Magento" targetNamespace="urn:Magento">
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:Magento">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/" schemaLocation="http://schemas.xmlsoap.org/soap/encoding/"/>
<complexType name="associativeEntity">
<all>
<element name="key" type="xsd:string"/>
<element name="value" type="xsd:string"/>
</all>
</complexType>
.
.
.
</definitions>
Parece que no debería tener problemas para analizar esto ... idk.
fuente