Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
1k views

IErrorHandler doesn't seem to be handling my errors in WCF .. any ideas?

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. MSDN Keyvan Nayyeri blog about the type defintion Rory ...
3
votes
3answers
1k views

WCF Error Handling without fault contract

I have a WCF service which all operations return type is OperationStatus: [DataContract] public abstract class ServiceResponse { [DataMember] public bool Success { get; set; } ...
2
votes
1answer
442 views

REST WCF Service with IErrorHandler catches SerializationExceptions

I have a REST WCF service with a custom IErrorHandler, so that I can catch all uncaught exceptions in my service and return a custom error message, a proper Http status code (500) and log the error. ...
2
votes
1answer
444 views

WCF IErrorHandler.ProvideFault() behavior

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 ...
1
vote
1answer
86 views

How to get the original Exception in IErrorHandler

I'm using role based security in a WCF application. I've decorated my service operation implementation with the System.Security.Permissions.PrincipalPermissionAttribute. If the authorization fails ...
1
vote
0answers
29 views

Is it possible to shortcut/bypass other IErrorHandlers in WCF?

I am developing a rather large application and would like to implement IErrorHandler multiple ways for different conditions. However, it appears that ALL of the instances will be called for every ...
1
vote
2answers
529 views

WCF, IErrorHandler and log4Net

I am trying to implement an error handling behavior on a wcf service that will use log4net to log an exception [AttributeUsage(AttributeTargets.Class)] public class AErrorHandlerBehaviorAttribute : ...
1
vote
1answer
1k views

Implementing IErrorHandler using class level Attributes in WCF

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 ...
1
vote
1answer
575 views

Implement 'Ping' functionality using Message Inspector causes WCF runtime to throw NullReferenceException

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 and ...
0
votes
1answer
11 views

How do I handle WCF SOAP deserialization errors in HTTP Reponse?

How do I hide the following error information and show custom message in WCF? This error occur when we inject invalid parameter in http request HTTP/1.0 500 Internal Server Error Cache-Control: ...
0
votes
1answer
34 views

How can I pass logfile location to an IErrorHandler?

I've got a C# Windows Service hosting a WCF Service (two separate projects). My WCF Service project implements IErrorHandler, which I'd like to use to log errors to a file. My Windows Service is ...
0
votes
0answers
34 views

WCF - access RequestContext.RequestMessage values in ProvideFault of IErrorHandler

Not sure if it's even possible, but I can't believe that it isn't, so here I am... I created a class that derives from the IErrorHandler and IServiceBehavior and that has the requisite ProvideFault ...
0
votes
1answer
124 views

IErrorHandler gives page not found for Json response in rest

For any webprotocol exception the errorhandler should handle the exception and give only json response instead gives the page not found. Here is the configuration for the service ...
0
votes
0answers
79 views

WCF - IErrorHandler vs Authentication

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 ...
0
votes
0answers
197 views

Can I handle EndpointNotFoundException's using WCF's customer endpoint behavior mechanism?

I have a simple WebHttpBinding WCF service and I am trying to globally catch all EndpointNotFoundException(s) without having to insert "plumbing" everywhere I make a call from the client. To make a ...
0
votes
1answer
359 views

IErrorHandler not being binded, and not handling error

I have a WCF service, and I have a FaultContract with an IErrorHandler binded to it, and it was working great. For some reason, that I don't know, it stopped being binded at runtime. When I place ...
0
votes
2answers
422 views

Calling Abort on faulted WCF channel causes server side error to be logged

When a FaultException is returned 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 IErrorHandler ...
0
votes
0answers
293 views

MSMQ thru WCF is swallowing badly formatted messages, no errors, no warnings

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 the ...
0
votes
1answer
717 views

Custom JSON IErrorHandler in WCF returning StatusCode 200/504 when should return 400

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 ...
0
votes
1answer
456 views

How can I inject an object into an WCF IErrorHandler implementation with Castle Windsor?

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. ...