簡體   English   中英

Salesforce PHP SOAP API-無法使自定義WebService工作

[英]Salesforce PHP SOAP API - Unable to get custom WebService working

讓我設置場景:

我是一名PHP開發人員,需要從Web表單獲取信息並將其發送到客戶Salesforce。 起初我雖然很簡單,但是使用Web2Lead一樣簡單。 但是,客戶內部有一個Salesforce開發人員。

內部開發人員已向我發送了partner.wsdlCatalystWebservice.wsdl文件以及登錄詳細信息到他們的沙箱,以運行所有這些信息。 內部開發人員基本上已經說過,我需要使用Salesforce的SOAP API,並且一旦連接並登錄,我需要調用->makeContact("FormField1", "FormField2", "etc...");

因此,在花了一整天的時間嘗試許多事情並遇到許多問題之后,我終於碰壁了,我無法攀登。 這是我現在擁有的PHP代碼:

<pre>
<?php
define("SOAP_CLIENT_BASEDIR", "../soapclient");
$USERNAME = '******@********' ;
$PASSWORD = '******************************' ;
require_once (SOAP_CLIENT_BASEDIR.'/SforcePartnerClient.php');
require_once (SOAP_CLIENT_BASEDIR.'/SforceHeaderOptions.php');

try {

    $mySforceConnection = new SforcePartnerClient();
    $mySoapClient = $mySforceConnection->createConnection(SOAP_CLIENT_BASEDIR.'/partner2.wsdl.xml');
    $loginResult = $mySforceConnection->login($USERNAME, $PASSWORD);

    $location = $mySforceConnection->getLocation();
    $session_ID = $mySforceConnection->getSessionId();

    $client = new SoapClient(SOAP_CLIENT_BASEDIR.'/CatalystWebservice.wsdl.xml');
    $sforce_header = new SoapHeader("http://soap.sforce.com/schemas/class/CatalystWebservice", "SessionHeader", array( "sessionId" => $session_ID ) );
    $client->__setSoapHeaders( array( $sforce_header ) );

    $client->makeContact("*****", "*****", "Address1", "Address2", "London", "****", "no-one@****", "0123456789", "07891236456", "New Build Homebuy", "This is my question\n\nAnd an other line", "1", "Test");

} catch (Exception $e) {
    print_r($e);
}
?>
</pre>

我已經為這里加注了敏感信息。 當我運行上面的代碼時,我得到以下輸出:

SoapFault Object
(
    [message:protected] => UNKNOWN_EXCEPTION: An unexpected error occurred. Please include this ErrorId if you contact support: ***********-*** (***********)
    [string:Exception:private] => 
    [code:protected] => 0
    [file:protected] => /home/******/public_html/********/test/partner.php
    [line:protected] => 23
    [trace:Exception:private] => Array
        (
            [0] => Array
.....

還有CatalystWebservice.wsdl.xml文件

內部開發人員已經用C#開發了一些東西來測試他的WebService,並且效果很好,所以一定是我做錯了。 我做錯了什么?

我找到了解決方案...我必須確保我將數據作為關聯數組發送,如下所示:

$response = $client->makeContact
                (
                    array
                    (
                        "sLastName" => (string) $wpcf7_data->posted_data['last-name'],
                        "sFirstName" => (string) $wpcf7_data->posted_data['first-name'],
                        "sAddress1" => (string) $wpcf7_data->posted_data['address-one'],
                        "sAddress2" => (string) $wpcf7_data->posted_data['address-two'],
                        "sCity" => (string) $wpcf7_data->posted_data['town-city'],
                        "sPostcode" => (string) $wpcf7_data->posted_data['post-code'],
                        "sEmail" => (string) $wpcf7_data->posted_data['email-address'],
                        "sPhone" => (string) $wpcf7_data->posted_data['telephone'],
                        "sMobile" => (string) "",
                        "sEnquiries" => (string) $wpcf7_data->posted_data['enquiry'],
                        "sComment" => (string) $wpcf7_data->posted_data['comments'],
                        "sPropertyID" => (string) wpcf7_special_mail_tag_for_post_data( "", "_post_id" ),
                        "sPropertyName" => (string) wpcf7_special_mail_tag_for_post_data( "", "_post_title" ),
                    )
                );

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM