tags:

views:

200

answers:

2

Is it possible to send my own developed exceptions over Soap to a client using http.sys??

+1  A: 

I found this article on MSDN to be helpfull

http://msdn.microsoft.com/en-us/library/aa480592.aspx

CheGueVerra
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