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 FaultExceptions, in the client I get a CommunicationObjectFaultedException and none of its properties contain my original FaultException.

From what I could learn so far about this, is that information is stored elsewhere. Can anybody please tell me where exactly it is?

For example these two handle the registration of a user:

internal void CallRegisterUser()
{
    _service.RegisterUserAsync("username", "pass");
}

void _service_RegisterUserCompleted(object sender, RegisterUserCompletedEventArgs e)
{
    if (e.Error != null) { MessageBox.Show(e.Error.Message); }
}
link|improve this question

Can you show the code you are using to call the service and catch exception? – Ladislav Mrnka Feb 26 '11 at 19:07
feedback

1 Answer

An oversimplified example, but this is how you would get your custom fault details:

    void client_RegisterUserCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
    {
        if (e.Error != null)
        {
            if (e.Error is FaultException<UserRegistrationFault>)
            {
                UserRegistrationFault fault = (e.Error as FaultException<UserRegistrationFault>).Detail;
                MessageBox.Show("Error: " + fault.TheExceptionMessage);
            }
            else
            {
                MessageBox.Show("Error: " + e.Error.ToString());
            }
        }            
    }
link|improve this answer
Yes, it is IF you get a FaultException. But I get CommunicationObjectFaultedException, with no inner exceptions, just stating the presence of a fault. Nothing more. And I cannot cast it to FaultException either. – Tenshiko Feb 26 '11 at 20:09
What kind of application is your client? WPF? Windows Forms? Silverlight? – Julio Casal Feb 26 '11 at 20:42
Also take a look [here]msdn.microsoft.com/en-us/library/…. Seems like CommunicationObjectFaultedException happens when your proxy object cannot be used anymore. Would this also happen if you create a new instance of your service proxy (_service) every time the CallRegisterUser method is called? – Julio Casal Feb 26 '11 at 20:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.