17

Web サービスを介して crm 2011 でリードにアクセスする (新しいリードを作成してリストを取得する) 必要があります。私はすでにc#/asp.netでアプリを作成しました(動作します)が、今はphpで実行する必要があり、立ち往生しています。

私は試してみます: https://code.google.com/p/php-dynamics-crm-2011/しかし、フェデレーション認証のみをサポートし、それがアクティブディレクトリであるため、機能しません。

nusoap に接続しようとしましたが、非常にわかりにくいです。

wsdl2php: http://www.urdalen.no/wsdl2php/を使用してディスカバリー サービスと組織サービスのクラスを生成しますが、クラスをどうするかわかりません。

誰かがこれらのクラスを使用する方法の例を持っていますか?

4

1 に答える 1

5

MSCRM 2013 およびおそらく 2011 は、Web サービスの認証に NTLM を使用しています。

データ クエリには、URL エンコードされた FetchXML を使用できます

http://msdn.microsoft.com/en-us/library/gg328117.aspx

たとえば、高度な検索で XML をエクスポートし、RetrieveMultiple メソッドでクエリを実行することで、CRM から正しい XML を取得できます。

NTLM で認証された SOAP エンベロープと CURL POST クエリの例を追加しています。

<?php

$soap_envelope = <<<END
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Body>
    <RetrieveMultiple xmlns="http://schemas.microsoft.com/xrm/2011/Contracts/Services" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
      <query i:type="a:FetchExpression" xmlns:a="http://schemas.microsoft.com/xrm/2011/Contracts">
        <a:Query>&lt;fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false'&gt;
          &lt;entity name='contact'&gt;
            &lt;attribute name='fullname' /&gt;
            &lt;attribute name='parentcustomerid' /&gt;
            &lt;attribute name='telephone1' /&gt;
            &lt;attribute name='emailaddress1' /&gt;
            &lt;attribute name='contactid' /&gt;
            &lt;order attribute='fullname' descending='false' /&gt;
            &lt;filter type='and'&gt;
              &lt;condition attribute='ownerid' operator='eq-userid' /&gt;
              &lt;condition attribute='statecode' operator='eq' value='0' /&gt;
            &lt;/filter&gt;
          &lt;/entity&gt;
        &lt;/fetch&gt;</a:Query>
      </query>
    </RetrieveMultiple>
  </s:Body>
</s:Envelope>
END;

$soap_action = 'http://schemas.microsoft.com/xrm/2011/Contracts/Services/IOrganizationService/RetrieveMultiple';
$req_location = 'http://crm.server.local/YourOrganization/XRMServices/2011/Organization.svc/web';

$headers = array(
  'Method: POST',
  'Connection: Keep-Alive',
  'User-Agent: PHP-SOAP-CURL',
  'Content-Type: text/xml; charset=utf-8',
  'SOAPAction: "'.$soap_action.'"'
);

$user = 'YOURDOMAIN\YOURUSERNAME';
$password = '**********';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $req_location);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POST, true );
curl_setopt($ch, CURLOPT_POSTFIELDS, $soap_envelope);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_NTLM);
curl_setopt($ch, CURLOPT_USERPWD, $user.':'.$password);
$response = curl_exec($ch);

if(curl_exec($ch) === false)
{
  echo 'Curl error: ' . curl_error($ch);
}
else
{
  var_dump($response);
}
于 2014-03-04T11:28:38.390 に答える