1

我向 SAP PI Web 服务发出 SOAP 请求。该服务返回 SOAP 错误,如下所示:

<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
       <SOAP:Body>
          <SOAP:Fault>
             <faultcode>SOAP:Server</faultcode>
             <faultstring>Server Error</faultstring>
             <detail>
                <s:SystemError xmlns:s="http://sap.com/xi/WebService/xi2.0">
                   <context>XIAdapter</context>
                   <code>ADAPTER.JAVA_EXCEPTION</code>
                   <text>com.sap.aii.af.service.cpa.CPAObjectNotFoundException: Couldn't retrieve binding for the given channelId: Binding:CID=null;
        at com.sap.aii.af.service.cpa.impl.lookup.AbstractLookupManager.getBindingByChannelId(AbstractLookupManager.java:173)
        at com.sap.aii.adapter.soap.web.MessageServlet.doPost(MessageServlet.java:449)
        ....
        at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:327)</text>
                </s:SystemError>
             </detail>
          </SOAP:Fault>
       </SOAP:Body>
</SOAP:Envelope>

在 PHP 中,我确实遵循:

$client = new SoapClient('path/to/wsdl', array(
            'cache_wsdl' => WSDL_CACHE_NONE,
            'exceptions' => true,
            'login' => 'some_login',
            'password' => 'some_password',
        ));
$result = $client->some_funtion("bla-bla-bla");
var_dump($result);

它打印null,但应该是异常

如果我在自己的 Web 服务中输出相同的 xml(soap 错误),我会发现它。

4

2 回答 2

1

问题出在 WSDL 中的输出标记中。我添加了这个标签,它解决了我的问题

<wsdl:portType name="...">
     <wsdl:operation name="...">
         ...
         <wsdl:input message="..."/>
         <wsdl:output message="..."/> <!--- that tag-->
     </wsdl:operation>
</wsdl:portType>
于 2012-01-12T13:59:07.907 回答
0

那是因为你没有 try/catch 块。

试试这个:

$client = new SoapClient('path/to/wsdl', array(
            'cache_wsdl' => WSDL_CACHE_NONE,
            'exceptions' => true,
            'login' => 'some_login',
            'password' => 'some_password',
        ));

try{
  $result = $client->some_funtion("bla-bla-bla");
} catch (SoapFault $e){
   exit('caught soap fault');
}
于 2011-12-15T14:00:54.183 回答