owenb 2003/01/10 02:32:04 Modified: java/src/org/apache/wsif/providers/ejb Tag: pre1_2_0-patches WSIFOperation_EJB.java Log: Quietly trace exceptions in getOperation when input or output names cannot be found. Revision Changes Path No revision No revision 1.19.2.6 +2 -2 xml-axis-wsif/java/src/org/apache/wsif/providers/ejb/WSIFOperation_EJB.java Index: WSIFOperation_EJB.java =================================================================== RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/providers/ejb/WSIFOperation_EJB.java,v retrieving revision 1.19.2.5 retrieving revision 1.19.2.6 diff -u -r1.19.2.5 -r1.19.2.6 --- WSIFOperation_EJB.java 6 Dec 2002 13:32:14 -0000 1.19.2.5 +++ WSIFOperation_EJB.java 10 Jan 2003 10:32:04 -0000 1.19.2.6 @@ -516,7 +516,7 @@ inputName = this.fieldBindingOperationModel.getBindingInput().getName(); } catch (NullPointerException e) { - Trc.exception(e); + Trc.ignoredException(e); inputName = null; } @@ -525,7 +525,7 @@ outputName = this.fieldBindingOperationModel.getBindingOutput().getName(); } catch (NullPointerException e) { - Trc.exception(e); + Trc.ignoredException(e); outputName = null; }