Error: The server encountered an error processing the request. See server logs for more details
Hi,
This issue comes into picture whenever there is any issue at WCF service.
So see more details about the issue, you need to
includeexceptiondetailInfaults
attribute to
true
in
servicedebug
tag.
<servicebehaviors>
<behavior name="myServiceBehavior">
<servicedebug includeexceptiondetailinfaults="true" />
</behavior>
</servicebehaviors>
Either you can also add class attribute to the service class.
Happy Kooding… Hope this helps!