我尝试调用作为CRM4一部分部署的自定义Web服务,并收到以下错误:
Client found response content type of 'text/html; charset=utf-8', but expected 'text/xml'.
The request failed with the error message:
--
<html>
<head>
<title>No Microsoft Dynamics CRM user exists with the specified domain name and user ID</title>
<style>
...
</style>
</head>
<body bgcolor="white">
<span><H1>Server Error in '/RecurrenceService' Application.<hr width=100% size=1 color=silver></H1>
<h2> <i>No Microsoft Dynamics CRM user exists with the specified domain name and user ID</i> </h2></span>
...
<table width=100% bgcolor="#ffffcc">
<tr>
<td>
[CrmException: No Microsoft Dynamics CRM user exists with the specified domain name and user ID]
Microsoft.Crm.Authentication.WindowsAuthenticationProvider.Authenticate(HttpApplication application) +895
Microsoft.Crm.Authentication.AuthenticationStep.Authenticate(HttpApplication application) +125
Microsoft.Crm.Authentication.AuthenticationPipeline.Authenticate(HttpApplication application) +66
Microsoft.Crm.Authentication.AuthenticationEngine.Execute(Object sender, EventArgs e) +513
System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +92
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64
</td>
</tr>
</table>
<br>
<hr width=100% size=1 color=silver>
<b>Version Information:</b> Microsoft .NET Framework Version:2.0.50727.1433; ASP.NET Version:2.0.50727.1433
</font>
</body>
</html>
<!--
[CrmException]: No Microsoft Dynamics CRM user exists with the specified domain name and user ID
at Microsoft.Crm.Authentication.WindowsAuthenticationProvider.Authenticate(HttpApplication application)
at Microsoft.Crm.Authentication.AuthenticationStep.Authenticate(HttpApplication application)
at Microsoft.Crm.Authentication.AuthenticationPipeline.Authenticate(HttpApplication application)
at Microsoft.Crm.Authentication.AuthenticationEngine.Execute(Object sender, EventArgs e)
at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-->
--.
调用我的网络服务的代码:
RecurrenceService serv = new RecurrenceService();
serv.Credentials = System.Net.CredentialCache.DefaultCredentials;
string result = serv.UpdateSeries();
CRM4网址:http://cw-dev-5/loader.aspx
自定义服务网址:http://cw-dev-5/RecurrenceService/RecurrenceService.asmx
以下代码段System.Security.Principal.WindowsIdentity.GetCurrent().Name
返回NT AUTHORITY\NETWORK SERVICE
(我认为这是错误原因)
有人可以建议我解决我的问题吗?
答案 0 :(得分:0)
这是从ASP.Net网站调用吗?您可能需要将应用程序池标识更改为有权访问CRM站点的域用户(它当前正在尝试使用NT AUTHORITY \ NETWORK SERVICE)
答案 1 :(得分:0)
是的,正在调用CRM服务的Web服务
自定义服务网址: “http://cw-dev-5/RecurrenceService/RecurrenceService.asmx”
需要以CRM用户admin中设置的crm用户身份登录。
如果你是从一个插件打来的话 - 那也需要是在CRM中有用户设置的身份
答案 2 :(得分:0)
也许您正在运行非英语操作系统?
不知何故,无论出于何种原因,当操作系统被翻译成其他语言时,网络服务的登录名有时会被本地化。
现在很多程序都希望将登录名硬编码为“NT AUTHORITY \ NETWORK SERVICE” - 在德语版本的Windows中,例如帐户名称为“NT-AUTORITÄT\ NETZWERKDIENST”。所以你的程序正在寻找英文名称,找不到它,并显示错误。
不确定这是否适用于您的问题,但可能值得检查!
答案 3 :(得分:0)
如果您的CRM服务器上有多个组织,您需要将组织名称放在您的网址中:
http://cw-dev-5/SomeOrgName/RecurrenceService/RecurrenceService.asmx
如果Web应用程序位于CRM网站中,则必须执行此操作,因为CRM将对用户进行身份验证并查看其是否存在于该组织中。如果您关闭组织,它将使用默认组织。
以下是一些有关其工作原理的MSDN文档:Using Microsoft Dynamics CRM URLs。