owenb 2002/10/23 07:21:45
Modified: java/src/org/apache/wsif/base WSIFDefaultOperation.java
Log:
Do not set the message name when createInputMessage or createOutputMessage are
called with no arguments
Revision Changes Path
1.17 +0 -2
xml-axis-wsif/java/src/org/apache/wsif/base/WSIFDefaultOperation.java
Index: WSIFDefaultOperation.java
===================================================================
RCS file:
/home/cvs/xml-axis-wsif/java/src/org/apache/wsif/base/WSIFDefaultOperation.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- WSIFDefaultOperation.java 23 Oct 2002 13:35:12 -0000 1.16
+++ WSIFDefaultOperation.java 23 Oct 2002 14:21:45 -0000 1.17
@@ -158,7 +158,6 @@
try {
msg.setMessageDefinition(
getOperation().getInput().getMessage());
- msg.setName(getOperation().getInput().getName());
} catch (Exception e) {
Trc.ignoredException(e);
}
@@ -198,7 +197,6 @@
try {
msg.setMessageDefinition(
getOperation().getOutput().getMessage());
- msg.setName(getOperation().getOutput().getName());
} catch (Exception e) {
Trc.ignoredException(e);
}