owenb 2003/01/10 02:33:07
Modified: java/src/org/apache/wsif/providers/ejb
WSIFOperation_EJB.java
Log:
Quietly trace exceptions in getOperation when input or output names cannot be found.
Revision Changes Path
1.26 +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.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- WSIFOperation_EJB.java 7 Dec 2002 12:34:02 -0000 1.25
+++ WSIFOperation_EJB.java 10 Jan 2003 10:33:07 -0000 1.26
@@ -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;
}