1
vote
1answer
51 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 …
1
vote
3answers
73 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; }
…
0
votes
1answer
64 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. …
