The faultexception tag has no wiki summary.
7
votes
2answers
953 views
Unit testing WCF Faults
What's the best way to unit test expected faults from WCF services?
I am attempting to unit test a WCF service which is (correctly) throwing FaultExceptions for a certain reproducible error. The unit ...
5
votes
1answer
589 views
WCF FaultException Without Sending StackTrace
I have some WCF services with predefined FaultContract attributes. When the FaultException<TDetail> exceptions are thrown, they're sending StackTrace, Source and other potentially unsave ...
3
votes
3answers
528 views
FaultException.Detail coming back empty
I am trying to catch a given FaultException on a WCF client. I basically need to extract a inner description from the fault class so that I can then package it in another exception for the upper ...
3
votes
1answer
2k views
Custom Exception as Detail in Fault Exception
I'm trying to throw my own custom exception inside a FaultException from my WCF service and catch it in my WCF client. On the client side, however, the exception is caught as a non-generic ...
2
votes
0answers
33 views
WCF - A web service running in IIS but through a factory doesn't keep up the original exception thrown
A web service running in IIS but through a factory doesn't keep up the original exception thrown.
For example:
My web service has been marked up with FaultContractAttribute like this way:
public ...
2
votes
2answers
369 views
WCF - Throw an Exception or FaultException?
What's more efficient? Throwing an exception or throwing a fault... the way I see it is that there's 2 scenarios:
An exception occurred and is caught, do you throw that existing Exception or create ...
2
votes
1answer
126 views
Visual Studio Debugger: Skip over FaultExceptions being thrown
I have my client calling a WCF Server I'm hosting locally, right now I'm debugging the client so on the server I'm purposely throwing a FaultException to see how the client would handle it.
The part ...
2
votes
3answers
531 views
WCF/WebService: Interoperable exception handling
I understand that WCF will convert an exception into a fault and send it back as a SOAP message, but I was wondering if this is truly interoperable. I guess I'm having a tough time trying to figure ...
2
votes
1answer
570 views
WebFaultException to pass back an XML message rather than string?
In my RESTful services layer, any exceptions that bubble up to me are caught as Fault Exceptions. Within that FaultException, there's a custom XML message that contains <errorNumber>, ...
1
vote
2answers
161 views
Throwing FaultException using Custom Exception Handler EL WCF
So I'm trying to use Enterprise Library in my WCF service to do some of the exception-related work for me.
My idea is to set up a "Custom Exception Handler" for say "NullReferenceException" and in ...
1
vote
1answer
77 views
How to Return DTO Nicely Without Closing Connection in WCF
My WCF Service in C# looks like this.
[ServiceContract]
public class MySecretService
{
[OperationContract]
[FaultContract(typeof(ErrorMessage))]
public MyDTO ReturnMyDTOMethod(int ...
1
vote
2answers
111 views
Handling WCF Faults
I am working on a client that is consuming a WCF service. In various cases, the service simply raises a FaultException with an associated message informing of the reason behind the given fault.
Some ...
1
vote
1answer
417 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 ...
1
vote
1answer
156 views
Catch FaultException<TDetail> for any Exception derived TDetail?
How do I catch FaultException for any Exception derived TDetail?
I tried catch( FaultException<Exception> ) {} but that does not seem to work.
Edit
The purpose is to gain access to the Detail ...
1
vote
2answers
361 views
WCF: SOAP Fault or normal Exception(s) in DataContract class
The main parameter to my Service's OperationContract is a class called Preapproval. In the Preapproval class, there are a few public getters/setters for the DataMember attributes. I have code that ...
1
vote
2answers
1k views
silverlight client doesnt understand faultexception
I have a WCF service that throws an exception which I am trying to catch unsucessfully in my silverlight client code. I am using Undeclared Faults for Debugging purposes and this is my service method ...
1
vote
2answers
516 views
How to invalidate a C# WCF session if login is incorrect
I am writing a remote service for an application using WCF, in which login information is kept in a database. The service requires session establishment through a login or account creation call. There ...
1
vote
1answer
361 views
Abort() method of wcf client proxy doesn't release session after catching FaultException
I have created a simple wcf service hosted in IIS and wcf client and figured out that when u catch a FaultException from the wcf service and then call client.Abort() to release the session (as the ...
1
vote
1answer
331 views
Wcf exception handling throw an error
Hi I have a problem handling exceptions in wcf.
I have a service like this one:
[ServiceContract]
public interface IAddressService
{
[OperationContract]
...
1
vote
1answer
632 views
How to handle a FaultException in WCF without aborting the whole transaction?
I have a WCF service being called as part of a transaction.
If the service is called twice (often happening during debugging) I want a FaultException to be thrown by the service but the overall ...
0
votes
1answer
86 views
throwing faultcode(“Receiver”) but responding with “Server”
I'm throwing a FaultCode of Receiver, but the client is getting back "s:Server" as a response faultcode. How can i get a response of "s:Receiver"?
My code:
throw new ...
0
votes
1answer
255 views
Not able to catch FaultException in WCF client with WSDualHttpBinding
I have a WCF server with a custom UserNamePasswordValidator.
public class CustomUserNameValidator : UserNamePasswordValidator
{
private readonly string m_userName;
private readonly string ...
0
votes
1answer
416 views
WCF throwing CommunicationException when FaultException is thrown
Solution:
A bit of tracing showed the CommunicationException was being thrown because there was an issue with my exception T not serializing correctly; because, two layers deep, I had an anonymously ...
0
votes
2answers
147 views
Why do WCF Fault Exceptions not retain their details after crossing two boundaries?
When a fault exception is thrown across a boundary, it can take a type parameter, to pass a detail object across the WCF boundary. However, I have noticed that when a fault exception crosses two ...
0
votes
1answer
61 views
WCF - calling a void service (is it still synchronous)?
Basically, if my service is: public void DoSomethingThatTakesAwhile() { ... }, will the call to that service cause my application to wait for the method to finish?
I ask because I don't want my ...
0
votes
2answers
477 views
FaultException and custom exception WCF
I have a question on how to send a custom exception as FaultException. It works when I use a system Exception like ArgumentException, but if I change it to my custom exception "TestException" it ...
0
votes
1answer
412 views
Custom fault exception causing a wcf timeout on the client
I followed the same example on how to create a custom fault exception (by creating an Exception class and referencing it in the FaultContract), however every time I try to throw the exception from the ...
0
votes
0answers
87 views
weird issues of a published RIA domain service
I've recently published a .NET web project, which includes some RIA domain services.
The solution works perfectly in the local system, the dev box, but it does not work on the production server.
For ...
0
votes
0answers
218 views
Create a PHP SOAP webservices best compatible with WCF typed FaultContracts
I need to create a PHP SOAP webservices that must be best compatible with WCF typed FaultContracts, to distinguish between the errors or exception types on the wcf client. In the services I've created ...
0
votes
0answers
272 views
Wcf and ExceptionDetail Issue
I have created my own class like this:
[DataContract]
public class MyOperationFault : ExceptionDetail
{
/// <summary>
/// Contructor
/// </summary>
/// <param ...
0
votes
1answer
542 views
How to catch FaultExceptions from asynchronous WCF calls?
I would like to call a wcf service that can throw FaultException, but I would like to do that asynchronously. If everything's ok, it returns no exception, but if the service throws one of my ...
0
votes
1answer
619 views
WCF FaultContract Fails with NamedPipe
I have a simple IPC mechanism that uses WCF and named pipes. My goal is to propagate exception details (including the stacktrace) to the client for logging purposes (the rest of the application ...