2013-02-21 58 views
1

今天,我在Windows Server 2008 R2上安裝了Microsoft Dynamics CRM。什麼是Microsoft Dynamics CRM服務器的URL?

一切都很好,但現在我找不到鏈接到我的主頁。

有人可以告訴我來自Microsoft Dynamics CRM的默認URL嗎?我剛剛安裝了90天免費試用版。

當我在瀏覽器中鍵入:http://localhost/然後我得到的錯誤:

HTTP Error 401.2 - Unauthorized You are not authorized to view this page due to invalid authentication headers. and here are some Informations about my Server: Detailed Error Information Module IIS Web Core Notification AuthenticateRequest Handler StaticFile Error Code 0x80070005 Requested URL `http://localhost:80/` Physical Path C:\inetpub\wwwroot Logon Method Not yet determined Logon User Not yet determined

我該如何解決呢?

如果沒問題,我想我可以在我的網頁瀏覽器中輸入網址,並且CRM中的典型頁面出現了?

我使用Internet Explorer。我的服務器上已經擁有管理員權限。

編輯:好的,本地主機的問題改變了。當我現在輸入Localhost時,我來到IIS網站。但是這對我沒有多大幫助。所以,我所做的是:我從IIS服務器將Windows authentication添加到服務器角色。我在安全部分找到它。

但是來自CRM的URL的問題已經在這裏。

編輯編輯:我發現,我有CRM的端口5555。所以,當我在Internet Explorer中寫入時:http://localhost:5555/然後出現一個非常長而複雜的錯誤。

Server Error in '/' Application. 
-------------------------------------------------------------------------------- 

Caller does not have enough privilege to set CallerOriginToken to the specified value. 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: Microsoft.Crm.CrmException: Caller does not have enough privilege to set CallerOriginToken to the specified value. 

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 

Stack Trace: 


[CrmException: Caller does not have enough privilege to set CallerOriginToken to the specified value.] 
    Microsoft.Crm.Extensibility.ExternalMessageDispatcher.VerifyCallerOrigin(ExecutionContext context) +260 
    Microsoft.Crm.Extensibility.ExternalMessageDispatcher.Execute(String messageName, Int32 primaryObjectTypeCode, Int32 secondaryObjectTypeCode, PropertyBag fields, CorrelationToken correlationToken, CallerOriginToken originToken, UserAuth userAuth, Guid callerId) +724 
    Microsoft.Crm.Sdk.RequestBase.Process(Int32 primaryObjectTypeCode, Int32 secondaryObjectTypeCode, CorrelationToken correlationToken, CallerOriginToken originToken, UserAuth userAuth, Guid callerId) +149 
    Microsoft.Crm.Sdk.RequestBase.Process(CorrelationToken correlationToken, CallerOriginToken originToken, UserAuth userAuth, Guid callerId) +183 
    Microsoft.Crm.Sdk.CrmServiceInternal.Execute(RequestBase request, CorrelationToken correlationToken, CallerOriginToken originToken, UserAuth userAuth, Guid callerId) +465 
    Microsoft.Crm.Sdk.InProcessCrmService.Execute(Object request) +2688 
    Microsoft.Crm.Application.Platform.ServiceCommands.PlatformCommand.ExecuteInternal() +368 
    Microsoft.Crm.Application.Platform.DataSource.RetrieveAvailableLanguages() +40 
    Microsoft.Crm.Application.Utility.ApplicationLanguage.get_AvailableLanguages() +220 
    Microsoft.Crm.Application.Controls.AppUIPage.get_AvailableLanguages() +9 
    Microsoft.Crm.Application.Controls.AnonymousPage.OnInit(EventArgs e) +25 
    Microsoft.Crm.Application.Web.Pages.ErrorHandlerPage.OnInit(EventArgs e) +211 
    System.Web.UI.Control.InitRecursive(Control namingContainer) +143 
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1477 




-------------------------------------------------------------------------------- 
Version Information: Microsoft .NET Framework Version:2.0.50727.5466; ASP.NET Version:2.0.50727.5456 

編輯︰現在它最終運作。問題是,我的帳戶不在隱私用戶組中。我發現這個非常有用的博客:

Link 1
Link 2
Link 3

對不起,我不能發佈超過1個鏈接。所以我必須在Code中這樣做。希望這可以幫助有同樣問題的人。

回答

1

您可能想要在不同的端口上註冊CRM服務器(例如我們使用5555),特別是如果它用於開發而不是暴露給客戶。

並回答你的問題。地址如下。假設你已經註冊了兩個組織:猴子驢子

http://localhost:5555/monkey 
http://localhost:5555/donkey 

和Discovery等服務如下(默認端口猴子)。

http://localhost:80/XRMServices/2011/Discovery.svc 
http://localhost:80/CRM-Konsulterna/XRMServices/2011/Organization.svc 
http://localhost:80/CRM-Konsulterna/XRMServices/2011/OrganizationData.svc 

你需要記住兩件事(你可能已經知道了)。
1。不需要明確指定端口80,也不需要協議。
2. 本地主機只有當你實際上在服務器上(否則,指定IP)時纔會工作。

+0

這只是一個測試。我們使用免費試用版。後來我們可能會購買整個CRM。但現在它終於起作用了。我發佈了鏈接,它幫助我進入我的帖子底部:) – 2013-02-21 13:55:22

+0

我修復了你的鏈接。現在看起來好多了。 – 2013-02-21 14:00:39

+0

非常感謝:) – 2013-02-21 14:36:15

2

該網址很不錯,請檢查您是否有其他應用程序在端口80.嘗試在iis中設置Windows身份驗證,請參閱this。驗證AD的訪問權限。

+0

如何檢查80端口是否有其他應用程序? – 2013-02-21 09:40:34

+0

選中此鏈接(http://blogs.msdn.com/b/jonasd/archive/2008/01/11/caller-does-not-have-enough-privilege-to-set-callerorigintoken-to-the -specified-value.aspx) – 2013-02-21 10:05:59

相關問題