On Wednesday, June 08, 2011 10:07:56 AM STEVEN THEIN wrote: > Hi, > > I created an inbound interceptor on server side which have two override > methods:- > > handleMessage() and handleFault() > > When an exception is thrown while processing the message in > handleMessage(), it called into handleFault() method. > In handleFault() method, how can I retrieve the fault that was thrown > from handleMessage().
I think you can call message.getContent(Fault.class) or message.getContent(Exception.class). Likely the latter. -- Daniel Kulp [email protected] http://dankulp.com/blog Talend - http://www.talend.com
