Hallo liebe Experten,
ich versuche ein Soapclient zu entwickeln. das ist der Testclient:
<?php set_time_limit(0);ini\_set("soap.wsdl\_cache\_enabled", "0"); // create a new soap client to access the available of the web service //$oClient = new SoapClient("http://localhost/Vispanet5\_wrapper.wsdl", array("trace" =\> 1)); // check which functions are available $oClient = new SoapClient("[http://doorsnet.dlr.de/vispanet/Vispanet5\_wrapper.wsdl"](http://doorsnet.dlr.de/vispanet/Vispanet5_wrapper.wsdl%22)); print\_r($oClient-\>\_\_getFunctions()); // define some test parameters for the session token, the email, the start and endtime $params = array('EmailAddress'=\>'[[email protected]](mailto:[email protected])','startTime'=\>'2010-01-01','endTime'=\>'2020-12-31'); //$params = array("data"=\>"'test','[[email protected]](mailto:[email protected])','2010-01-01','2010-12-31'"); // call the client with the parameters $result = $oClient-\>VispanetGMDN($params); $result2 = $oClient-\>VispanetGMDNresonse($params2); // print the result print " "; print $result; print $result2; print " "; unset($oClient); ?\> und das das WSDL: <?xml version='1.0' encoding='UTF-8'?>
Dabei erscheint folgender Fehler:
Fatal error: SOAP-Error:stuck_out_tongue:arsing WSDL: Coudnt’t load from
‚http:…Vispanet5_wrapper.wsdl‘:
Extar content at the end of the document in … \soaptest_dlr.php on line 6
Übrigens auch dann, wenn die die Zeile mit SessionToken auskommentiert ist und der Zugriff über localhost erfolgt.
Kann mir da jemand helfen?
Danke!
Günter Bartling