I have a custom java exception called ClientAlreadyExistsException this exception is thrown by a signup method in java and I use Apache CXF to generate the web services. Now in my C# client when I call for the signup method I can't catch the exception as it always returns an error FaultException`1 but in which I can actually see the text i wrote in the java exception.
I tried catching a SoapException but it didn't work and I even tried this :
try
{
//signup method call
}
catch (FaultException<ClientAlreadyExistsException> ex)
{
//code
}
Any help ?