INVALID_SESSION_ID:在SessionHeader中找到无效的会话ID:非法会话

时间:2013-09-09 09:56:07

标签: php session soap zend-framework2 salesforce

类似问题 - INVALID_SESSION_ID using partner/enterprise wsdl for two different SF users - 尝试过解决方案,但没有效果。

我正在尝试使用带有ZF 2的Salesforce PHP工具包。我已将命名空间添加到salesforce soap客户端中的php文件,并在zend控制器中使用它。

在Salesforce SOAP客户端库中为所有php文件添加了以下行。

enter image description here

namespace Salesforce\Soapclient;

然后将其包含在ZF控制器中。

use Salesforce\Soapclient;

这是连接代码 -

    $empid = 'e1234567';
    $sf_WSDL = 'C:\wamp\www\myapp\app\vendor\salesforce\wsdl\enterprise.wsdl.xml';
    $sf_username = $config['salesforce']['username'];
    $sf_password = $config['salesforce']['password'];
    $sf_token = $config['salesforce']['token'];
    /***********/


    try {
        // Create SOAP client instance
        $sfSoapClient = new Soapclient\SforceEnterpriseClient();
        // Create connection
        $sfSoapClient->createConnection($sf_WSDL);

        var_dump($_SESSION['enterpriseSessionId']);

        if (isset($_SESSION['enterpriseSessionId'])) {

            $location = $_SESSION['enterpriseLocation'];
            $sessionId = $_SESSION['enterpriseSessionId'];

            $sfSoapClient->setEndpoint($location);
            $sfSoapClient->setSessionHeader($sessionId);

        } else {
            // Login to SF
            $sfSoapClient->login($sf_username,$sf_password . $sf_token);
            $_SESSION['enterpriseLocation'] = $sfSoapClient->getLocation();
            $_SESSION['enterpriseSessionId'] = $sfSoapClient->getSessionId();
        }
        var_dump($_SESSION['enterpriseSessionId']);
        // Get candidate profile by employee id
        $candidate_profile = $this->getCandidateTable()->getCandidateByEmpId($empid);
        $ids = array();
        array_push($ids, $empid);

        // If no profile for logged internal employee
        if (!$candidate_profile){
            $query = "SELECT Id, First_Name__c from Employee__c";
            $response = $sfSoapClient->query($query);

            echo "Results of query '$query'<br/><br/>\n";
            foreach ($response->records as $record) {
                echo $record->Id . ": " . $record->First_Name__c . "<br/>\n";
            }
        }

    } catch (Exception $exc) {
        //TODO Handle error login exception
        die('Connection could not established.');
    }

但我收到了以下错误 -

  

INVALID_SESSION_ID:在SessionHeader中找到无效的会话ID:非法   会话

请注意,“将会话发送到它们所源自的IP地址”设置已关闭。

0 个答案:

没有答案