0

Microsoft Dynamic 2011 でリードを作成しようとしています。PHP スクリプトを CRM に接続したところ、肯定的なフィードバックが得られました。

私は Fiddler を使用して、CRM2011 でリードを作成するために使用された SOAP コードを取得しました。ただし、PHP スクリプトで同じコードを使用すると、「false」が返されます。

私が発見した石鹸コードは以下のとおりです。

   <s:Body>
        <Execute xmlns="http://schemas.microsoft.com/crm/2009/WebServices">
                <command>1</command>
                <commandXml>
                    <Input>
                        <id>{00000000-0000-0000-0000-000000000000}</id>
                        <name>lead</name>
                        <formId>e3b6ddb7-8df0-4410-ac7b-fd32e5053d38</formId>
                        <dataxml>
                            <lead>
                                <leadqualitycode>2</leadqualitycode>
                                <statuscode>1</statuscode>
                                <ownerid type="8" name="Vlad Hercules">{6710C3A0-6EE9-E211-B17C-984BE16D3DAA}</ownerid>
                                <decisionmaker>0</decisionmaker>
                                <salesstage>0</salesstage>
                                <subject>subject</subject>
                                <lastname>vladislav</lastname>
                                <transactioncurrencyid type="9105" name="usd">{5B1C0B98-6CE9-E211-8B44-984BE17C9A7B}</transactioncurrencyid>
                                <preferredcontactmethodcode>1</preferredcontactmethodcode>
                                <donotemail>0</donotemail>
                                <donotbulkemail>0</donotbulkemail>
                                <donotphone>0</donotphone>
                                <donotpostalmail>0</donotpostalmail>
                                <donotsendmm>0</donotsendmm>
                            </lead>
                        </dataxml>
                        <associations></associations>
                    </Input>
                </commandXml>
            </Execute>
        </s:Body>
    </s:Envelope>

この問題はどのように解決できますか? リクエストの外観に関する情報はどこで入手できますか?

マイクロソフトが提供した例は、試してみると false を返します。

<Create xmlns="http://schemas.microsoft.com/xrm/2011/Contracts/Services">
                    <entity xmlns:b="http://schemas.microsoft.com/xrm/2011/Contracts" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
                        <b:Attributes xmlns:c="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
                            <b:KeyValuePairOfstringanyType>
                                <c:key>name</c:key>
                                <c:value i:type="d:string" xmlns:d="http://www.w3.org/2001/XMLSchema">Newer Corporation</c:value>
                            </b:KeyValuePairOfstringanyType>
                        </b:Attributes>
                        <b:EntityState i:nil="true"/>
                        <b:FormattedValues xmlns:c="http://schemas.datacontract.org/2004/07/System.Collections.Generic"/>
                        <b:Id>00000000-0000-0000-0000-000000000000</b:Id>
                        <b:LogicalName>account</b:LogicalName>
                        <b:RelatedEntities xmlns:c="http://schemas.datacontract.org/2004/07/System.Collections.Generic"/>
                    </entity>
                    </Create>
4

1 に答える 1