I have developed a webservice using Apache CXF ,which will be in production very soon . I am concerned about the exception handling in this , i am not sure whether what i followed is correct or not .

I have a method shown below which i exposed i as a webservice

import javax.jws.WebService;

@WebService
public interface TataWebService {
    public String distragery()throws Exception;

}
public String distrager throws Exception {
    int a  = 30;
    strategyData = "currentlyhadcoced" ;

    if(a==30) {
        throw new IncorrectProjectIdsException("The Value of a is 30");
    }

    return strategyData;
}

And the way i defined User defined exception is this way

@WebFault(name = "IncorrectProjectIdsDetails")    
public class IncorrectProjectIdsException extends Exception {

    private java.lang.String incorrectProjectIdsDetails;

    public IncorrectProjectIdsException (String message) {
        super(message);
    }

    public java.lang.String getFaultInfo() {
        return this.incorrectProjectIdsDetails;
    }
}

Please tell me if this is correct , regarding the throws declaration inside the method signature or shuld we handle in any other manner ??

Thank you very much

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You should throw the specific subclass of Exception in your interface that's annotated with @WebService so that the JAX-WS engine knows to publish the information about which faults are possible. That's because that is information that is discovered statically by examining the declarations, not by dynamic discovery of the exceptions that are actually thrown.

If you're stuck with a lower-level API that can throw anything (it happens; indeed, it happens a lot) then you should wrap that lower-level exception. Here's a simple way of doing that:

@WebFault(name = "ImplementationFault")    
public class ImplementationException extends Exception {
    public ImplementationException(Exception cause) {
        super(cause.getMessage(), cause);
    }
}

Which you'd use like this inside your web method:

public String fooMethod(String example) throws ImplementationException {
    try {
        return doRealThingWith(example);
    } catch (Exception e) {
        throw new ImplementationException(e);
    }
}

(There are other ways of doing the exception mapping, but they're quite a lot more complex. Wrapping is at least easy.)

link|improve this answer
Thank you very much , but what about if a method throws an exception like IOException or some checked exception . ( So a method should throw a Business as well as all these checked exceptions )?? – Revathi Nov 3 '11 at 9:21
The above technique works for that; that's why I included it. (What you can't do is turn an IOException into a fault directly without lots of trickery. I think. I just use the technique above, sometimes in many layers.) – Donal Fellows Nov 3 '11 at 10:55
Thank you my very much . – Revathi Nov 3 '11 at 13:58
feedback

Your Answer

 
or
required, but never shown

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