‘Microsoft.Crm.WebServices.Crm2007.MultipleOrganizationSoapHeaderAuthenticationProvider’ doest not exist


Hi,

Got this error while running a custom aspx page within the isv folder of CRM 4.0. To resolve the issue we need to add Microsoft.Crm.WebServices.dll either to our application or to the gac of the server.

Microsoft.Crm.WebServices.dll – It could be found at following location C:\Program Files\Microsoft Dynamics CRM\Setup

Check this info as well

http://blog.philiprichardson.org/2007/12/25/part-4-aspnet-applications-on-the-crm-server/
Bye..

HTTP Error 401.1 – Unauthorized: Access is denied while accessing CRM 4.0


Hi was facing this issue when trying to open crm.

The url i was using was something like this

http://servername:5555

than thought of trying with an ip address instead of host name of the server

http://192.168.20.114:5555   ( something like this .. )

And than everything was fine !

Bye…

Verify Domain User account SPN for the Microsoft Dynamics CRM ASP.NET Application Pool account


Hi,

Got this warning while installing CRM 4.0  ! This warning comes when we specify a domain account instead of network service account for application pool. To get through this error follow this post http://billoncrmtech.blogspot.com/2008/08/now-i-am-master-tips-for-running-crm-40.html

Bye..

Action Microsoft.Crm.Setup.Common.RegisterAsyncService Action Failed


Hi,

Got this error while installing CRM 4.0.

Two possible resolution for it

http://ronaldlemmen.blogspot.com/2008/01/failure-at-microsoftcrmsetupcommonregis.html
http://blog.kazmarek.com/2008/02/06/crm-40-installation-error-registerasyncserviceaction-failed/

Restarting the server didn’t solve the problem. Than tried rebuilding the performance counter.

To rebuild all Performance counters including extensible and third-party counters in Windows Server 2003, type the following commands at a command prompt. Press ENTER after each command.

cd\windows\system32
lodctr /R
It also didn’t help. So manually started the async service using domain admin user.
This way i was able to get it installed properly.
Bye…

Action Microsoft.Crm.Setup.Server.GrantConfigDBDatabaseAccessAction failed. Windows NT user or group ” not found. Check the name again.


Hi,

I was facing this issue while installing CRM 4.0.

It was saying that ‘domain\NRANA-VN$’ not found. So i tried creating a new login with the same name for which i was getting the error. But it was not allowing me to create a new login saying ‘ Security Principal already exists’. Than i just tried renaming an existing account ‘domain\SM-VN$’ to’domain\NRANA-VN$’ and it worked fine. The error was resolved.

Bye…

Error : instance name must be same as computer name while installing CRM 4.0


Hi i was recieving this error while installting crm 4.0.

This is how i resolved it

http://msdn.microsoft.com/en-us/library/ms143799.aspx

Running the following command was giving the name as ‘DASDS’

SELECT @@SERVERNAME AS ‘Server Name’

where as the name of the sql server was ‘NRANA’

So ran the following command
sp_dropserver ‘DASDS’
GO
sp_addserver ‘NRANA’, local
GO

followed by

SQL Server service restart.

After this SELECT @@SERVERNAME AS ‘Server Name’ gave me the new name.

I mentioned the same name during the installation of CRM 4.0 and the error was resolved.

Bye…