Is it possible to send my own developed exceptions over Soap to a client using http.sys??
A:
Yes, you can throw your own exceptions. Any uncaught exception that does not derive from SoapException will be bottled up by the .NET framework into a SoapException. You can derive from SoapException if you want to control how certain parts of the SoapException are formed (for instance, the fault and detail portions).
Zach
2008-11-19 19:57:57