I have a set of SOAP webservices that are wrapping exceptions using IErrorHandler, specifically:
public sealed class ErrorHandler : IErrorHandler
{
public bo
I was under the impression that using webHttpBinding
was a way to get the "all-in-one" functionality of JSON/POX/SOAP as opposed to using separate bindings for each (i.e. wsHttpBinding
, basicHttpBinding
etc.). So wouldn't you be able to just throw the WebHttpException
and then have that give you all the error details you needed regardless of the technology?