Web Service SOAP Request正在使用SOAPUI,但不支持PHP

mai*_*ido 6 php xml soap wsdl web-services

我已经尝试了几乎所有可能找到的解决方案,但我似乎无法让这个脚本工作.以下是我以前的一些尝试:

如何使用wse-php库通过SOAP连接到安全的Web服务

/sf/ask/1326655571/

如何解决错误:SOAP-ERROR:编码:对象没有'createLead'属性?

如何通过SOAP [PHP]使用WS-Security来使用安全的Web服务?

这是我最近的尝试:

<?php  
try    {
$username = 'derek';
$password = 'Momentum1';
$url = "https://integrationdev.momentum.co.za/sales/CRMService/CRMLeadService_v1_0/"; 

$xml = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v1="http://www.momentum.co.za/crm/service/application/CRMLeadService/v1.0" xmlns:v11="http://www.momentum.co.za/crm/service/type/application/Lead/v1.0" xmlns:v12="http://www.momentum.co.za/crm/service/type/TitleType/v1.0" xmlns:v13="http://www.momentum.co.za/crm/service/type/LanguageType/v1.0" xmlns:v14="http://www.momentum.co.za/crm/service/type/PreferredContactMethodType/v1.0" xmlns:v15="http://www.momentum.co.za/crm/service/type/CampaignType/v1.0" xmlns:v16="http://www.momentum.co.za/crm/service/type/ProductCategoryType/v1.0">
   <soapenv:Header>
      <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
         <wsse:UsernameToken>
            <wsse:Username>derek</wsse:Username>
            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">Momentum1</wsse:Password>
         </wsse:UsernameToken>
      </wsse:Security>
   </soapenv:Header>
   <soapenv:Body>
      <v1:CreateLeadRequest>
         <createLead>
            <v11:LeadSourceId>23627e70-a29e-e211-b8a8-005056b81ebe</v11:LeadSourceId>
            <v11:AffiliateLeadReference>852800020</v11:AffiliateLeadReference>
            <v11:Title>
               <v12:Code>852800018</v12:Code>
            </v11:Title>
            <v11:Initials>MD</v11:Initials>
            <v11:PreferredName>Marius</v11:PreferredName>
            <v11:FirstName>Marius</v11:FirstName>
            <v11:LastName>Drew</v11:LastName>
            <v11:PreferredCorrespondenceLanguage>
               <v13:Code>852800001</v13:Code>
               <v13:Description>?</v13:Description>
            </v11:PreferredCorrespondenceLanguage>
            <v11:PreferredCommunicationMethod>
               <v14:Code>852800000</v14:Code>
            </v11:PreferredCommunicationMethod>
            <v11:Campaign>
               <v15:Code>95D9042A-440E-E311-A5EB-005056B81EA5</v15:Code>
            </v11:Campaign>
            <v11:HomePhoneNumber>0723621762</v11:HomePhoneNumber>
            <v11:BusinessPhoneNumber>0723621762</v11:BusinessPhoneNumber>
            <v11:MobilePhoneNumber>0723621762</v11:MobilePhoneNumber>
            <v11:EmailAddress>mdrew@gmail.com</v11:EmailAddress>
            <v11:Notes>IMU</v11:Notes>
            <v11:ProductCategories>
               <v16:Code>d000083d-229c-e211-b8a8-005056b81ebe</v16:Code>
            </v11:ProductCategories>
         </createLead>
      </v1:CreateLeadRequest>
   </soapenv:Body>
</soapenv:Envelope>';       

$content = utf8_encode($xml); 
$content_length = strlen($xml);  

$headers = array('Content-Type: application/soap+xml; charset=utf-8', 'Content-Length: ' . $content_length); 

$ch = curl_init(); 
curl_setopt ($ch, CURLOPT_URL, $url); 
curl_setopt ($ch, CURLOPT_HTTPHEADER, $headers); 
curl_setopt ($ch, CURLOPT_POSTFIELDS, $content); 
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 
$output = curl_exec($ch); 
curl_close($ch);  

print $output; 
} catch (Exception $e) { 
    var_dump($e); 
} 
?>
Run Code Online (Sandbox Code Playgroud)

我认为我发送信息的方式有问题.问题可能是我的WSDL及其位置吗?

我已经在这方面工作了一个星期,我已经感到沮丧了.这个WS-Security的东西很痛苦.我尝试使用StackOverflow上的建议,例如创建一个扩展到SoapClient但仍然无效的类.我希望有人可以成为天使并帮助我.谢谢!

哦,顺便说一句,这是SOAPUI上的RAW XML消息请求:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v1="http://www.momentum.co.za/crm/service/application/CRMLeadService/v1.0" xmlns:v11="http://www.momentum.co.za/crm/service/type/application/Lead/v1.0" xmlns:v12="http://www.momentum.co.za/crm/service/type/TitleType/v1.0" xmlns:v13="http://www.momentum.co.za/crm/service/type/LanguageType/v1.0" xmlns:v14="http://www.momentum.co.za/crm/service/type/PreferredContactMethodType/v1.0" xmlns:v15="http://www.momentum.co.za/crm/service/type/CampaignType/v1.0" xmlns:v16="http://www.momentum.co.za/crm/service/type/ProductCategoryType/v1.0">
   <soapenv:Header>
      <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
         <wsse:UsernameToken>
            <wsse:Username>817221</wsse:Username>
            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">1234</wsse:Password>
         </wsse:UsernameToken>
      </wsse:Security>
   </soapenv:Header>
   <soapenv:Body>
      <v1:CreateLeadRequest>
         <createLead>
            <v11:LeadSourceId>23627e70-a29e-e211-b8a8-005056b81ebe</v11:LeadSourceId>
            <v11:AffiliateLeadReference>852800020</v11:AffiliateLeadReference>
            <v11:Title>
               <v12:Code>852800018</v12:Code>
            </v11:Title>
            <v11:Initials>MD</v11:Initials>
            <v11:PreferredName>Marius</v11:PreferredName>
            <v11:FirstName>Marius</v11:FirstName>
            <v11:LastName>Drew</v11:LastName>
            <v11:PreferredCorrespondenceLanguage>
               <v13:Code>852800001</v13:Code>
               <v13:Description>?</v13:Description>
            </v11:PreferredCorrespondenceLanguage>
            <v11:PreferredCommunicationMethod>
               <v14:Code>852800000</v14:Code>
            </v11:PreferredCommunicationMethod>
            <v11:Campaign>
               <v15:Code>95D9042A-440E-E311-A5EB-005056B81EA5</v15:Code>
            </v11:Campaign>
            <v11:HomePhoneNumber>0723621762</v11:HomePhoneNumber>
            <v11:BusinessPhoneNumber>0723621762</v11:BusinessPhoneNumber>
            <v11:MobilePhoneNumber>0723621762</v11:MobilePhoneNumber>
            <v11:EmailAddress>mdrew@gmail.com</v11:EmailAddress>
            <v11:Notes>IMU</v11:Notes>
            <v11:ProductCategories>
               <v16:Code>d000083d-229c-e211-b8a8-005056b81ebe</v16:Code>
            </v11:ProductCategories>
         </createLead>
      </v1:CreateLeadRequest>
   </soapenv:Body>
</soapenv:Envelope>
Run Code Online (Sandbox Code Playgroud)

这在SOAPUI上完美地工作,但它返回一个soapenv:PHP上的客户端内部错误.

这是我制作的另一个脚本版本.但它仍然会发出内部错误.也许在构建处理Web服务上的WS-Security的标头时存在问题.

<?php
$wsdl = "http://imupost.co.za/momentumcrm/CRMLeadServiceV10.wsdl";
$momurl = "https://integrationdev.momentum.co.za/sales/CRMService/CRMLeadService_v1_0/";
echo("Post to URL: {$momurl}\n");

$username = "derek";
$password = "Momentum1";

echo("<pre>\n");
$client = new SoapClient ($wsdl, array('location' => $momurl, 'style' => SOAP_DOCUMENT, 'trace' => true,  'soap_version' => SOAP_1_1, 'exceptions' => true, 'compression' => SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP));

$header='
    <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
        <wsse:UsernameToken wsu:Id="UsernameToken-45">
            <wsse:Username>'.$username.'</wsse:Username>
            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">'.$password.'</wsse:Password>
        </wsse:UsernameToken>
    </wsse:Security>
    ';

echo("<pre>\n");

$headerSoapVar = new SoapVar($header,XSD_ANYXML); 
$soapheader = new SoapHeader('wsse', "Security" , $headerSoapVar , true);
$client->__setSoapHeaders($soapheader);

$params['createLead'] = array(
        'LeadSourceId' => '23627e70-a29e-e211-b8a8-005056b81ebe',
        'AffiliateLeadReference' => '852800020',
        'Title' => array('Code' => '852800018'),
        'Initials' => 'MD',
        'PreferredName' => 'Marius',
        'FirstName' => 'Marius',
        'LastName' => 'Drew',
        'PreferredCorrespondenceLanguage' => array('Code' => '852800001'),
        'PreferredCommunicationMethod' => array('Code' =>'852800000'),
        'Campaign' => array('Code' => '95D9042A-440E-E311-A5EB-005056B81EA5'),
        'HomePhoneNumber' => '0723621762',
        'BusinessPhoneNumber' => '0723621762',
        'MobilePhoneNumber' => '0723621762',
        'EmailAddress' => 'mdrew@gmail.com',
        'Notes' => 'IMU',
        'ProductCategories' => array('Code' => 'd000083d-229c-e211-b8a8-005056b81ebe')
    ); 

try { 
    echo $result = $client->__call("createLead", array($params));
    echo "REQUEST:\n" . htmlentities($client->__getLastRequest())  . "\n";
    echo "REQUEST:\n" . $client->__getLastRequestHeaders()  . "\n";
} catch (Exception $e) { 
    $ml = new SimpleXMLElement($client->__getLastRequest());
    $ml->asXML('new.xml');
    echo "REQUEST:\n" . htmlentities($client->__getLastRequest())  . "\n";
    echo "REQUEST:\n" . $client->__getLastRequestHeaders()  . "\n";
    $msgs = $e->getMessage();
    echo "Error: $msgs"; 
} 
?>
Run Code Online (Sandbox Code Playgroud)

有什么建议?我非常需要你的帮助.谢谢!

mai*_*ido 0

我能够使用以下代码连接到网络服务:

$client = new SoapClient ($wsdl, array('location' => $momurl, 'action'=>$action, 'style' => SOAP_DOCUMENT, 'trace' => 1,  'soap_version' => SOAP_1_1, 'exceptions' => false, 'compression' => SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP, 'ssl_method' => SOAP_SSL_METHOD_TLS));

$header='<wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
        <wsse:UsernameToken wsu:Id="UsernameToken-45">
            <wsse:Username>'.$usname.'</wsse:Username>
            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">'.$password.'</wsse:Password>
        </wsse:UsernameToken>
    </wsse:Security>';

$headerSoapVar = new SoapVar($header,XSD_ANYXML); 
$soapheader = new SoapHeader('wsse', "Security" , $headerSoapVar , true);
$client->__setSoapHeaders($soapheader);

$params['/* the function or method that you want to use */'] = array(/* insert your parameters here */);

$result = $client->__soapCall("/* the function or method that you want to use */", $params);
Run Code Online (Sandbox Code Playgroud)

检查您的请求的标头部分是否与我的类似。如果不是,则只需使用您自己的标头。基本上,只需复制请求的标头部分并设置用户名和密码的变量即可。我已经在另一个网络服务上尝试过,并且运行良好。