如何通过SOAPui从Microsoft Dynamics CRM 2015中获取数据或检索数据
本文关键字:数据 获取 检索 2015 CRM SOAPui 何通过 Microsoft Dynamics | 更新日期: 2023-09-27 18:14:12
我知道这可能是重复的问题,但在2015年发布时,我在获取数据时面临一些问题。
我已经阅读了所有与这个主题相关的博客,但是没有找到。
我按照下面的步骤来获取数据。
- 从http://{server}/{OrgName}/XRMServices/2011/Organization.svc加载SOAPui项目
- 编辑端点,在Organisation.svc后添加/web
- 添加身份验证。(用户名、密码域)
- 新增content-type、SOAPAction、Accept
我仍然得到Bad-Request错误。
请帮助。如果可能的话,请提供一些请求样品。
谢谢。
如何设置请求,确保设置正确:
-
创建指向
http://<organization url>/XrmServices/2011/Organization.svc?wsdl
的SOAP项目(您必须进行身份验证) -
为你需要做的w/e创建一个新的请求
-
请求中,设置
Authentication
为NTLM
(提供凭据) -
在请求中,您将需要像这样的三个
Headers
(如果您已经拥有它们,请仔细检查它们):4.1。
4.2SOAPAction
-从请求接口属性中复制/粘贴Accept
-application/xml, text/xml, */*
4.3
Content-Type
-text/xml; charset=utf-8
-
提供一个格式良好的请求和go
例如,RetrieveEntityRequest
看起来是这样的(这将特别返回account
实体的元数据):
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header><a:SdkClientVersion xmlns:a="http://schemas.microsoft.com/xrm/2011/Contracts">6.0</a:SdkClientVersion></soapenv:Header>
<soapenv:Body>
<Execute xmlns="http://schemas.microsoft.com/xrm/2011/Contracts/Services" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<request i:type="a:RetrieveEntityRequest" xmlns:a="http://schemas.microsoft.com/xrm/2011/Contracts">
<a:Parameters xmlns:b="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
<a:KeyValuePairOfstringanyType>
<b:key>EntityFilters</b:key>
<b:value i:type="c:EntityFilters" xmlns:c="http://schemas.microsoft.com/xrm/2011/Metadata">Attributes</b:value>
</a:KeyValuePairOfstringanyType>
<a:KeyValuePairOfstringanyType>
<b:key>MetadataId</b:key>
<b:value i:type="ser:guid" xmlns:ser="http://schemas.microsoft.com/2003/10/Serialization/">00000000-0000-0000-0000-000000000000</b:value>
</a:KeyValuePairOfstringanyType>
<a:KeyValuePairOfstringanyType>
<b:key>RetrieveAsIfPublished</b:key>
<b:value i:type="c:boolean" xmlns:c="http://www.w3.org/2001/XMLSchema">true</b:value>
</a:KeyValuePairOfstringanyType>
<a:KeyValuePairOfstringanyType>
<b:key>LogicalName</b:key>
<b:value i:type="c:string" xmlns:c="http://www.w3.org/2001/XMLSchema">account</b:value>
</a:KeyValuePairOfstringanyType>
</a:Parameters>
<a:RequestId i:nil="true" />
<a:RequestName>RetrieveEntity</a:RequestName>
</request>
</Execute>
</soapenv:Body>
</soapenv:Envelope>