scheu 02/05/18 08:07:54
Modified: java/src/org/apache/axis/providers/java RPCProvider.java
java/src/org/apache/axis/utils resources.properties
Log:
The second insert of this message was not being inserted properly. Tweaked the code
and message, and now it works.
Revision Changes Path
1.61 +5 -5
xml-axis/java/src/org/apache/axis/providers/java/RPCProvider.java
Index: RPCProvider.java
===================================================================
RCS file:
/home/cvs/xml-axis/java/src/org/apache/axis/providers/java/RPCProvider.java,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- RPCProvider.java 16 May 2002 19:41:38 -0000 1.60
+++ RPCProvider.java 18 May 2002 15:07:54 -0000 1.61
@@ -239,12 +239,12 @@
argClasses += ",";
}
}
- log.info(JavaUtils.getMessage("dispatchIAE00",
- methodSig,
- argClasses), e);
+ log.info(JavaUtils.getMessage("dispatchIAE00",
+ new String[] {methodSig, argClasses}),
+ e);
throw new AxisFault(JavaUtils.getMessage("dispatchIAE00",
- methodSig,
- argClasses), e);
+ new String[] {methodSig, argClasses}),
+ e);
}
/* Now put the result in the result SOAPEnvelope */
1.101 +4 -1 xml-axis/java/src/org/apache/axis/utils/resources.properties
Index: resources.properties
===================================================================
RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/utils/resources.properties,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- resources.properties 16 May 2002 19:41:38 -0000 1.100
+++ resources.properties 18 May 2002 15:07:54 -0000 1.101
@@ -840,4 +840,7 @@
j2woptsoapAction00=value of the operation's soapAction field. Values are DEFAULT,
OPERATION or NONE. OPERATION forces soapAction to the name of the operation. DEFAULT
causes the soapAction to be set according to the operation's meta data (usually "").
NONE forces the soapAction to "". The default is DEFAULT.
j2wBadSoapAction00=The value of --soapAction must be DEFAULT, NONE or OPERATION.
-dispatchIAE00=Tried to invoke {0} but the arguments do not match the caller's
signature. The classes of the calling arguments are: {1}.
+dispatchIAE00=Tried to invoke method {0} with arguments {1}. The arguments do not
match the signature.
+
+
+