I am successfully working with a third party soap service. I have added a service reference to a soap web service which has auto generated the classes.
When an error oc
You can catch FaultException, which gives you detail for free.
FaultException
catch (FaultException ex) { string yourDetail = ex.Detail; }