Tagged Questions

3
votes
3answers
970 views

WCF: Same Faultcontract on many methods

Take for example a project with 10 services and 20 methods on each service. All services inherit from a base services which has a security check. The first thing each method does is to make a call to ...
2
votes
4answers
2k views

WCF : FaultContract(typeof(ExceptionDetail)) issue

I have put the attribute [FaultContract(typeof(ExceptionDetail))] for my operation contract. When I am trying to add the service th' a client app, I get this error - "Custom tool error: Failed to ...
1
vote
0answers
231 views

Writing a data contract to the SOAP envelope headers for an outgoing FaultException?

I am in a bit of a pickle with a current project. We have an integration partner who is refusing to conform to contract, and they are expecting a fault contract with custom headers, rather than the ...
1
vote
0answers
404 views

WCF: Exception handling on OneWay OperationContract

I am having a WCF duplex service with Silverlight client and .NET 3.5 WCF service. The scenario I have is: during the duplex push OneWay operation from server to client if an exception happens in ...
1
vote
3answers
712 views

Using custom FaultContract object containing System.Exception causes 'Add Service Reference' to fail

I just noticed something particular. I have an internal stock service which is published through basicHttpBinding, and a customBinding (http+binary) for which metadata is enabled. I also included a ...
1
vote
2answers
875 views

FaultException<T>() exception thrown by the service is not caught by the client catch(FaultException<T>)

Ok, I know I am missing something here. I have the following operation contract: public double DivideByZero(int x, int y) { if (y == 0) { throw new ...
1
vote
1answer
411 views

svcutil fails against service with a fault contract

We have a WCF self hosted service which we have been developing for awhile. As part of our standard we have defined a FaultContract which we apply to operations. Recently we needed to add a new ...
0
votes
1answer
351 views

client will not catch generic FaultException< T >, only FaultException

I've read all there is to read on this, but maybe I'm missing something (well, definitely I'm missing something otherwise it would be working already) I'm throwing some exception error inside my ...
0
votes
2answers
266 views

System.Exception.Data will not serialise on DataContract?

I have some WCF services using dataContracts and i wanted to I was hoping to pass a Exception with custom Dictionary< string , object > data in the Data property, but when i add any data on this ...
0
votes
2answers
102 views

FaultContract with MessageContracts

I am using MessageContracts for my WCF services; I am grouping various DataContracts into a single MessageContracts. My base response is contains - isOperationSuccess (bool), exceptionMessage ...
0
votes
1answer
244 views

WCF: FaultContracts and exception hierarchies

My system consists of two sites, communicating between themselves using WCF. Occasionally, exceptions are thrown when one site invokes operations on its peer, and I'm trying to decide what's the best ...
0
votes
2answers
252 views

Looking for advice on WCF Fault Contracts

I have a situation where I want to be able to distinguish between different types of errors within a web service. In an API this would usaully be a separate exception for each, does this mean I should ...
0
votes
1answer
144 views

WCF autogenerate FaultContracts

We have many WCF services, we have not been using contract first. So now we have a lot of code that throws exceptions, that are not specified in the FaultContracts. Other than manually inspecting the ...