Tips while working on WCF
While working on WCF application, i encountered an error but could not see the message . I was only getting this message
"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 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."
To enable to see the error , go to the web.config and set the includeExceptionDetailInFaults to true .
Cheers!!!
"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
To enable to see the error , go to the web.config and set the includeExceptionDetailInFaults to true .
Cheers!!!
Comments