It's important to handle exceptions in your service.
When developing the service, you can set the WCF to provide more detailed information, adding this tag to configuration file, usually Web.config:
<serviceDebug includeExceptionDetailInFaults="true"/>
This tag must be placed w...