Ich möchte eine AppointmentRequest über eine SOAP-Nachricht zu Dynamics CRM 4.0 Die folgenden SOAP-Nachricht, die ich Entsendung bin auszuführen:AppointRequest mit SOAP-Nachricht an MS Dynamics CRM 4.0
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:m0="http://schemas.microsoft.com/crm/2007/CoreTypes" xmlns:m="http://schemas.microsoft.com/crm/2007/WebServices" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<m:CrmAuthenticationToken>
<m0:AuthenticationType>0</m0:AuthenticationType>
<m0:OrganizationName>MyOrg</m0:OrganizationName>
<m0:CallerId>4d6792b2-d96f-de11-bc90-005056a243de</m0:CallerId>
</m:CrmAuthenticationToken>
</soap:Header>
<soap:Body>
<m:Execute>
<m:request xsi:type="SearchRequest">
<AppointmentRequest>
<ServiceId>7b94C2A1D8-C201-DE11-B7B1-0022640DEB74</ServiceId>
</AppointmentRequest>
</m:request>
</m:Execute>
</soap:Body>
</soap:Envelope>
ich von CRM einen Fehler erhalte zurück :
<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><soap:Fault><faultcode>soap:Server</faultcode><faultstring>Server was unable to process request.</faultstring><detail><error>
<code>0x80040203</code>
<description>request</description>
<type>Platform</type>
</error></detail></soap:Fault></soap:Body></soap:Envelope>
Jeder mit Erfahrung auf diesem? Ich wäre sehr dankbar, wenn jemand mir helfen kann oder mir Tipps gibt
Vielen Dank!