Hmm. that's wierd. This passed 100% when I ran all-tests locally. Will
take a look.
- James Snell
IBM Emerging Technologies
[EMAIL PROTECTED]
(559) 587-1233 (office)
(700) 544-9035 (t/l)
Programming Web Services With SOAP
O'Reilly & Associates, ISBN 0596000952
Have I not commanded you? Be strong and courageous.
Do not be terrified, do not be discouraged, for the Lord your
God will be with you whereever you go. - Joshua 1:9
[EMAIL PROTECTED]
02/28/2003 06:59 AM
Please respond to axis-dev
To
[EMAIL PROTECTED]
cc
bcc
Subject
cvs commit: xml-axis/java/src/org/apache/axis/message RPCElement.java
dims 2003/02/28 06:59:37
Modified: java/src/org/apache/axis/message RPCElement.java
Log:
Breaks "ant clean all-tests"....Commenting it out till James gets a chance
to take a look.
Revision Changes Path
1.83 +10 -10
xml-axis/java/src/org/apache/axis/message/RPCElement.java
Index: RPCElement.java
===================================================================
RCS file:
/home/cvs/xml-axis/java/src/org/apache/axis/message/RPCElement.java,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- RPCElement.java 27 Feb 2003 21:12:10 -0000 1.82
+++ RPCElement.java 28 Feb 2003 14:59:37 -0000 1.83
@@ -251,16 +251,16 @@
if(!JavaUtils.isConvertable(value, sigType))
match = false;
- if (!sigType.isArray() &&
value.getClass().isArray() &&
- !sigType.equals(Object.class)) {
- match = false;
- }
-
- if (operation.getUse() == Use.ENCODED &&
- sigType.isArray() &&
- !value.getClass().isArray()) {
- match = false;
- }
+ //if (!sigType.isArray() &&
value.getClass().isArray() &&
+ // !sigType.equals(Object.class)) {
+ // match = false;
+ //}
+ //
+ //if (operation.getUse() == Use.ENCODED
&&
+ // sigType.isArray() &&
+ // !value.getClass().isArray()) {
+ // match = false;
+ //}
}
}
// This is not the right operation, try the next one.