1

我尝试调用作为 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(我想这是错误的原因)

有人可以建议我解决我的问题吗?

4

4 回答 4

0

这是从 ASP.Net 站点调用它吗?您可能需要将应用程序池标识更改为有权访问 CRM 站点的域用户(它当前正在尝试使用 NT AUTHORITY\NETWORK SERVICE)

于 2009-02-13T12:29:27.467 回答
0

是的,正在调用 CRM 服务的网络服务

自定义服务网址:“ http://cw-dev-5/RecurrenceService/RecurrenceService.asmx

这需要以 CRM 用户管理员中设置的 crm 用户身份登录。

如果您从插件调用 - 这也需要是在 CRM 中具有用户设置的身份

于 2009-02-13T13:37:40.737 回答
0

也许您正在运行非英语操作系统?

不知何故,无论出于何种原因,当操作系统被翻译成其他语言时,网络服务的登录名有时会被本地化。

现在很多程序都希望将登录名硬编码为“NT AUTHORITY\NETWORK SERVICE”——例如在德语版本的 Windows 中,帐户的名称是“NT-AUTORITÄT\NETZWERKDIENST”。所以你的程序正在寻找英文名称,找不到它,并显示错误。

不确定这是否适用于您的问题,但可能值得检查!

于 2009-05-07T12:40:19.110 回答
0

如果您的 CRM 服务器上有多个组织,您需要将组织名称放在您的 URL 中:

http://cw-dev-5/SomeOrgName/RecurrenceService/RecurrenceService.asmx

如果 Web 应用程序位于 CRM 网站中,您必须执行此操作,因为 CRM 将对用户进行身份验证并查看他们是否存在于该组织中。如果您关闭组织,它将使用默认组织。

以下是有关其工作原理的一些 MSDN 文档:使用 Microsoft Dynamics CRM URL

于 2009-11-17T01:08:27.757 回答