PHP中的SOAP调用根本不起作用

时间:2017-04-12 12:17:38

标签: php web-services soap

不幸的是我之前从未使用过SOAP,所以我希望无论如何我都能很好地表达自己。

我有以下SOAP请求(用于在HPSM中创建票证):

        <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://schemas.hp.com/SM/7" xmlns:com="http://schemas.hp.com/SM/7/Common" xmlns:xm="http://www.w3.org/2005/05/xmlmime">
   <soapenv:Header/>
   <soapenv:Body>
      <ns:SubmitIntApiIncidentRequest attachmentInfo="?" attachmentData="?" ignoreEmptyElements="true" updateconstraint="-1">
         <ns:model query="?">
            <ns:keys query="?" updatecounter="?">
               <!--Optional:-->
               <ns:id type="Decimal" mandatory="?" readonly="?">?</ns:id>
            </ns:keys>
            <ns:instance query="?" uniquequery="?" recordid="?" updatecounter="?">
               <!--Optional:-->
               <ns:registrationId type="String" mandatory="?" readonly="0">HPSM Registration ID</ns:registrationId>
               <!--Optional:-->
               <ns:contactId type="String" mandatory="?" readonly="?">???</ns:contactId>
               <!--Optional:-->
               <ns:affectedUserId type="String" mandatory="?" readonly="?">User ID</ns:affectedUserId>
               <!--Optional:-->
               <ns:serviceId type="String" mandatory="?" readonly="?">?</ns:serviceId>
               <!--Optional:-->
               <ns:affectedCiId type="String" mandatory="?" readonly="?">?</ns:affectedCiId>
               <!--Optional:-->
               <ns:priority type="String" mandatory="?" readonly="?">?</ns:priority>
               <!--Optional:-->
               <ns:title type="String" mandatory="?" readonly="?">?</ns:title>
               <!--Optional:-->
               <ns:description type="String" mandatory="?" readonly="?">description</ns:description>
               <!--Optional:-->
               <ns:returnCode type="String" mandatory="?" readonly="?">?</ns:returnCode>
               <!--Optional:-->
               <ns:returnMessage type="String" mandatory="?" readonly="?">?</ns:returnMessage>
               <!--Optional:-->
               <ns:returnTicketId type="String" mandatory="?" readonly="?">?</ns:returnTicketId>
               <!--Optional:-->
               <ns:submittedBy type="String" mandatory="?" readonly="?">?</ns:submittedBy>
               <!--Optional:-->
               <ns:submitterGroup type="String" mandatory="?" readonly="?">?</ns:submitterGroup>
               <!--Optional:-->
               <ns:assignmentGroup type="String" mandatory="?" readonly="?">?</ns:assignmentGroup>
               <!--Optional:-->
               <ns:externalReferenceId type="String" mandatory="?" readonly="?">?</ns:externalReferenceId>
               <!--Optional:-->
               <ns:category type="String" mandatory="?" readonly="?">?</ns:category>
               <!--Optional:-->
               <ns:resolveImmediately type="Boolean" mandatory="?" readonly="?">?</ns:resolveImmediately>
               <!--Optional:-->
               <ns:solutionCode type="String" mandatory="?" readonly="?">?</ns:solutionCode>
               <!--Optional:-->
               <ns:solution type="String" mandatory="?" readonly="?">?</ns:solution>
               <!--Optional:-->
               <ns:contactInfo type="String" mandatory="?" readonly="?">?</ns:contactInfo>
               <!--Optional:-->
               <ns:incidentType type="String" mandatory="?" readonly="?">?</ns:incidentType>
               <!--Optional:-->
               <ns:attachments>
                  <!--Zero or more repetitions:-->
                  <com:attachment xm:contentType="application/?" href="?" contentId="?" action="?" name="?" type="?" len="?" charset="?" upload.by="?" upload.date="?" attachmentType="?">cid:933455187673</com:attachment>
               </ns:attachments>
            </ns:instance>
            <!--Optional:-->
            <ns:messages>
               <!--Zero or more repetitions:-->
               <com:message type="String" mandatory="?" readonly="?" severity="?" module="?">?</com:message>
            </ns:messages>
         </ns:model>
      </ns:SubmitIntApiIncidentRequest>
   </soapenv:Body>
</soapenv:Envelope>

到目前为止,我在soapcall.php文件中有以下代码:

    <?php         

    $wsdl ='asdf?wsdl';
    $client = new SoapClient($wsdl, array('login' => "user", 'password' => "pw"));


    $request = array(
        'SubmitIntApiIncident'=>(array(
            'model' => '',
            'registrationID' => 'registrationid',
            'contactId' => 'me',
            'affectedUserId' => 'affuser',
            'serviceId' => 'serviceid',
            'affectedCiId' => '',
            'priority' => '4',
            'title' => 'Test Title',
            'description' => 'description',
            'submittedBy' => 'me',
            'assignmentGroup' => 'assignment group',
            'externalReferenceId' => '',
            'category' => 'incident',
            'resolveImmediately' => ''
        )));

    $response = $client->__soapCall("SubmitIntApiIncident", $request);
    var_dump($response);


?>

这根本不起作用 - 现在我没有收到任何错误消息,只有一个空白页面。但每次我在代码中更改某些内容时都会出现另一条错误消息。所以我甚至不知道我是否走在正确的轨道上,或者我尝试的一切只会让它变得更糟。

如果您能告诉我代码中是否有任何重大错误或者如何使用php文件成功提交故障单,我将非常感激。

1 个答案:

答案 0 :(得分:1)

使用__soapCall方法是一种很好的方法。您也可以直接使用操作名称作为$client->SubmitIntApiIncident()

等方法

你应该明确地使用WSDL到php生成器,以避免浪费你的时间来搜索问题。

使用WSDL到php生成器的优点很多:

  • 构建请求而不想知道如何构造它,只需使用一个好的IDE让自动完成功能显示要传递的数据
  • 使用处理干净错误和响应的生成类的方法发送请求
  • 获取干净对象的响应
  • 从生成的classe获取帮助以定位错误
  • 停止想知道请求是否格式正确
  • ...

尝试PackageGenerator项目