PHP Soap client, Java SOAP server
问题 I am writing PHP SOAP client that will connect to Java SOAP web service and the cliente needs to fetch some data from web service. Web service wsdl files: http://test.iaeste.net:8080/iws-ws/accessWS?wsdl http://test.iaeste.net:8080/iws-ws/exchangeWS?wsdl My code: <?php $soapURL = "http://test.iaeste.net:8080/iws-ws/accessWS?wsdl" ; $options = array('features' => SOAP_USE_XSI_ARRAY_TYPE + SOAP_SINGLE_ELEMENT_ARRAYS); $soapClient = new SoapClient($soapURL, $options); $soapResult = $soapClient-