This issue comes into picture whenever there is any issue at WCF service.
So see more details about the issue, you need to
Go to your web.config
So see more details about the issue, you need to
includeexceptiondetailInfaults
attribute to true
in servicedebug
tag.Go to your web.config
<servicebehaviors>
<behavior name="myServiceBehavior">
<servicedebug includeexceptiondetailinfaults="true" />
</behavior>
</servicebehaviors>
Either you can also add class attribute to the service class.
No comments:
Post a Comment