user1453602
user1453602

Reputation: 1165

New installation of Tridion 2011 SP CMS server gives error

We are having Tridion 2011 SP1 environment up and running with one CMS server and one CDS server. Today we installated new CMS server and pointed it to existing SQL Server database. We used same MTSUser, same database credentials. Installation went smooth, but when we try to access CMS server we are getting 9 error as below.

1) The remote server returned an error: (404) Not Found.

at System.Net.HttpWebRequest.GetResponse() at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)

2) Loading list of languages failed.

 at System.Net.HttpWebRequest.GetResponse() at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)

3) Loading list of locales failed.

 at System.Net.HttpWebRequest.GetResponse() at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)

How to troubleshoot ?
We are able to access SQL Server database using ODBC.

Upvotes: 6

Views: 266

Answers (3)

Quirijn
Quirijn

Reputation: 3548

Is the Tcm Service Host (windows service) running?

Upvotes: 0

Chris Morgan
Chris Morgan

Reputation: 700

Use a tool like Fiddler to watch HTTP traffic when you load the Tridion GUI, and find the requests that are failing.

From here you could use WCFTestClient to get more specific details on the errors and the available bindings.

My guess is IIS Configuration.

Upvotes: 4

Ram Saurabh
Ram Saurabh

Reputation: 1584

I would like to suggest you to think a bit out of box. As errors are more specific to WCF service. so configure tracing and see what things are going wrong with the webservice. This could be due to the service endpoint binding not using the HTTP protocol. This could also be due to an HTTP request context being aborted by the server (possibly due to the service shutting down). After all I will again recommend you to see server logs for more details. I or someone else can better help you , if you can share logs here.

Upvotes: 3

Related Questions