SOAP-ERROR: Kodierung: Verstöße gegen Kodierungsregeln?
Leute, ich stecke fest und hau mir in den letzten Stunden den Kopf vom Schreibtisch.
Ich versuche, einen Dienst zu konsumieren, und ich habe 8 andere Funktionen, die ich beinahe als identisch bezeichne. Diese führen jedoch zu dem Fehler "SOAP-ERROR: Encoding: Violation of encoding rules".
Hier der Funktionsaufruf (wsdl aus Sicherheitsgründen weggelassen):
function CanLoadProduct($data){
$client = new SoapClient('wsdl-url');
$params = array('username' => $this->username,
'password' => $this->password,
'prod' => $data['productid'],
'mdn' => $data['mdn']);
try {
$reply = $client->__soapCall("CanLoadProduct", $params);
} catch (Exception $e) {
echo 'Error: ', $e->getMessage(), "\n";
print_r($params);
die();
}
if( $reply['result'] == 1 ){
return TRUE; // 1 = true
} else {
return FALSE;
}
}
Ok, diese Funktion stellt eine Verbindung zu einem Webservice her. Die erforderlichen Elemente sind: Benutzername, Passwort, prod, mdn, alle 4, die ich als Teil des Arrays $ params bereitstelle. Benutzername / Pass sind früher definiert und funktionieren einwandfrei, da die anderen 8 Funktionen den Webdienst problemlos nutzen.
Das Array $ data [] (das ich an die Funktion übergebe) enthält: $ data ['productid'] $ data ['mdn'] es wird nichts anderes verwendet.
ich bekomme
SOAP-ERROR: Encoding: Violation of encoding rules
aus irgendeinem ungeklärten Grund, und Googeln bringt mich dieser Fehler nirgendwo hin. Läuft sonst noch jemand darauf? Ausführen von PHP 5.2.9-2. Das Seltsame ist, dass dies mit dieser Funktion identisch ist, die zu 100% funktioniert:
function GetPIN($productid){
$client = new SoapClient('wsdl-url');
$params = array('username' => $this->username,
'password' => $this->password,
'prod' => $productid);
try {
$reply = $client->__soapCall("GetPIN", $params);
} catch (Exception $e) {
echo 'Error: ', $e->getMessage(), "\n";
die();
}
return $reply;
}
Hier ist die WSDL (sollte diese zuerst gepostet haben):
<?xml version="1.0" encoding="ISO-8859-1"?>
<definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:tns="ready:test" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="ready:test">
<types>
<xsd:schema targetNamespace="ready:test"
>
<xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
<xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" />
</xsd:schema>
</types>
<message name="CanLoadProductRequest">
<part name="username" type="xsd:string" />
<part name="password" type="xsd:string" />
<part name="prod" type="xsd:string" />
<part name="mdn" type="xsd:string" />
<part name="esn" type="xsd:string" /></message>
<message name="CanLoadProductResponse">
<part name="result" type="xsd:int" /></message>
<portType name="CanLoadProductPortType">
<operation name="CanLoadProduct">
<input message="tns:CanLoadProductRequest"/>
<output message="tns:CanLoadProductResponse"/>
</operation>
</portType>
<binding name="CanLoadProductBinding" type="tns:CanLoadProductPortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="CanLoadProduct">
<soap:operation soapAction="{url-removed}" style="rpc"/>
<input>
<soap:body use="encoded" namespace=""
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace=""
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
</binding>
<service name="CanLoadProduct">
<port name="CanLoadProductPort" binding="tns:CanLoadProductBinding">
<soap:address location="{url-removed}"/>
</port>
</service>
</definitions>