How to set the web.config to get WebService errors returned to the client
The issue is you are testing, and it’s hard to see the exceptions you are encountering. You don’t want to go read the IIS logs, and they might not have the full .net error anyway. 1) Set customErrors mode attribute to “Off” 2) Set serviceDebug includeExceptionDetailInFaults attribute to “true” Example of a webconfig below with […]