hi
I just want to fetch the OrganizationData.svc in the browser, in the first call I use the admin username and password and then I get the so much annoying unhelpful error:
Request Error The server encountered an error processing the request. See server logs for more details.
it seems to be IIS error rather than CRM error. I have checked some trace files of CRM using Dynamics CRM Trace Reader and also have enabled tracing using Diagnostics tool for microsoft CRM, I have also enabled Dev errors using the latter tool.
I have also put a web.config file inside the "C:\Program Files\Microsoft Dynamics CRM\CRMWeb\XRMServices\2011" folder withe below content to enable tracing and showing some errors but I still get the above damn error.
there is also nothing about the error in the event viewer (windows logs->application) of windows (win server 2008R2)...
<configuration> <system.diagnostics> <sources> <source name="System.ServiceModel" switchValue="Information, ActivityTracing" propagateActivity="true"> <listeners> <add name="xml" /> </listeners> </source> <source name="CardSpace"> <listeners> <add name="xml" /> </listeners> </source> <source name="System.IO.Log"> <listeners> <add name="xml" /> </listeners> </source> <source name="System.Runtime.Serialization"> <listeners> <add name="xml" /> </listeners> </source> <source name="System.IdentityModel"> <listeners> <add name="xml" /> </listeners> </source> </sources> <sharedListeners> <add name="xml" type="System.Diagnostics.XmlWriterTraceListener" initializeData="c:\log\Traces.svclog" /> </sharedListeners> </system.diagnostics> <system.serviceModel> <behaviors> <serviceBehaviors> <behavior name="debug"> <serviceDebug includeExceptionDetailInFaults="true" /> <serviceMetadata httpGetEnabled="true" /> </behavior> </serviceBehaviors> </behaviors> </system.serviceModel> </configuration>
I'm really confused.
Any clue guys?
*This post is locked for comments