I take full SOAP XML request from javascript with http-headers and authentication header. Insert it to my EXE C++ code.
Send request by TCT/IP to CRM SOAP port.
Authentication header:
<soap:Header>
<CrmAuthenticationToken xmlns="http://schemas.microsoft.com/crm/2007/WebServices">
<AuthenticationType xmlns="http://schemas.microsoft.com/crm/2007/CoreTypes">
0
</AuthenticationType>
<OrganizationName xmlns="http://schemas.microsoft.com/crm/2007/CoreTypes">
AdventureWorksCycle
</OrganizationName>
<CallerId xmlns="http://schemas.microsoft.com/crm/2007/CoreTypes">
00000000-0000-0000-0000-000000000000
</CallerId>
</CrmAuthenticationToken>
</soap:Header>
windows user of EXE registred in CRM.
Request return error 'unautherised reqest';
Please help. Any body use SOAP request to CRM from windows non .NET programms?