Hi all!
I'm trying to use ASP.NET to build a Web Application that connects to the CRM web services.
It was correctly working when I was debugging it in VS 2010. After deploying it in IIS 7 I've got a Internal error on my server :
[FaultException: The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and inspect the server trace logs.]
System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) +4727747
System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) +1725
Microsoft.Xrm.Sdk.IOrganizationService.RetrieveMultiple(QueryBase query) +0
Microsoft.Xrm.Sdk.Client.OrganizationServiceProxy.RetrieveMultipleCore(QueryBase query) +892
_Default.RetrieveEntity(String entityLogicalName) +343
_Default.Page_Load(Object sender, EventArgs e) +388
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +25
System.Web.UI.Control.LoadRecursive() +71
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3064
The problem seems to come from a Who am I request that I send to the web service.
I've haven't any idea of the origin of the problem so any idea is welcome!
Thank you in advance for your help,
Philippe