Вызов веб-сервиса из PHP - PullRequest
0 голосов
/ 29 ноября 2011

Я пытался вызвать веб-сервис, созданный в Java, снизу вверх и хочу вызвать его через мой PHP-файл, но он всегда выдает мне ошибку.

Код, который я пробовал:

$client = new SoapClient("http://localhost:8080/Indexer/services/IndexerService?wsdl");
$params = array(
      'anId' => 3,
      'action' => 'OMNOMNOMNOM',
      'parameters' => array(
                  'Param' => array(
                          array('Name' => 'in0', 'Value' => 'Skinnarlyngen startar Välkommen')
      )
));
$result = $client->__soapCall("getIds",$params);

print_r($result);

второй кусок кода, который я попробовал:

$wsdl = 'http://localhost:8080/Indexer/services/IndexerService?wsdl';   
  $client = new SoapClient($wsdl );

  print($client->getIds("ibm"));

мой веб-сервис дает отличные результаты при попытке использовать его с Java-клиентом:

This XML file does not appear to have any style information associated with it. The document tree is shown below.
<wsdl:definitions xmlns:soapenc12="http://www.w3.org/2003/05/soap-encoding" xmlns:tns="http://labs.aroha.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc11="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope" targetNamespace="http://labs.aroha.com">
<wsdl:types>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://labs.aroha.com">
<xsd:element name="example">
<xsd:complexType>
<xsd:sequence>
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="exampleResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
</wsdl:types>
<wsdl:message name="exampleRequest">
<wsdl:part name="parameters" element="tns:example"></wsdl:part>
</wsdl:message>
<wsdl:message name="exampleResponse">
<wsdl:part name="parameters" element="tns:exampleResponse"></wsdl:part>
</wsdl:message>
<wsdl:portType name="IndexerServicePortType">
<wsdl:operation name="example">
<wsdl:input name="exampleRequest" message="tns:exampleRequest"></wsdl:input>
<wsdl:output name="exampleResponse" message="tns:exampleResponse"></wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="IndexerServiceHttpBinding" type="tns:IndexerServicePortType">
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="example">
<wsdlsoap:operation soapAction=""/>
<wsdl:input name="exampleRequest">
<wsdlsoap:body use="literal"/>
</wsdl:input>
<wsdl:output name="exampleResponse">
<wsdlsoap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="IndexerService">
<wsdl:port name="IndexerServiceHttpPort" binding="tns:IndexerServiceHttpBinding">
<wsdlsoap:address location="http://localhost:8080/Indexer/services/IndexerService"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

В каждом случае это выдает мне следующую ошибку:

Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://localhost:8080/Indexer/services/IndexerService?wsdl' : failed to load external entity 

Может ли кто-нибудь помочь мне с тем, как я могу вызвать написанный на Java веб-сервис в php-коде.

Хочу отметить, что я использую php 5 и расширение wap с включенным расширением soap в моем php.

Ответы [ 2 ]

2 голосов
/ 29 ноября 2012

Один хороший инструмент, который вы можете использовать, это wsdl2php-интерпретатор , он будет создавать классы и т.д. для вас.

0 голосов
/ 20 января 2014

Используйте следующий код

 $Url = "http://localhost:8080/Indexer/services/IndexerService?wsdl";
    $params = array ("param1" =>"value","parm2"=>"value");

    $httpQuery = http_build_query ($params);
    $contextData = array (
                    "method" => "POST",
            "header" => "Connection: close\r\n".
                    "Content-Length: ".strlen($httpQuery)."\r\n",
                    "content"=> $httpQuery );               

    $context = stream_context_create (array ( "http" => $contextData )); 
    $result =  file_get_contents ($Url, false, $context); 
...