I\'m writing a WCF service with some authentication and a custom error handler. However, I\'m coming up against this problem: my implementation of IErrorHandler is not getting hit when the authenticat
When a FaultException is returned开发者_JAVA技巧 from my WCF service, I need to Abort the channel instead of Closing it. Both my client and service work fine with this approach but after implementing
My service methods are marked with PrincipalPermissionAttribute and i have a custom IErrorHandler implementation attached to the service. When an incoming request has no permissions to execute the met
I have a service that responds to messages on an MSMQ, using WCF. When the message is well formatted, it works as normal, and we\'re happy. When the message is intended for a different service, and th
I have a WCF service that among other bindings also uses WebHttpBinding for JSON inputs/results. I made a custom IErrorHandler implementation in order to be able to set the StatusCode to 400 when som
Had no luck with getting it working via config files, so decided to attempt to go the more robust route of doign it via class level attributes. If I can get this working it is clearly a great way of w
Have been reading around on IErrorHandler and want to go the config route. so, I have read the following in an attempt to implement it.
I\'m using WCF to implement a web service. This web service requires a \'ping\' feature as a health monitor for each service. This functionality has been implemented using IDispatchMessageInspector an
I\'m developing a set of services using WCF. The application is doing dependency injection with Castle Windsor. I\'ve added an IErrorHandler implementation that is added to services via an attribute.