You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2005/10/20 23:06:22 UTC

svn commit: r327003 - /webservices/axis/trunk/java/src/org/apache/axis/client/Call.java

Author: dims
Date: Thu Oct 20 14:06:18 2005
New Revision: 327003

URL: http://svn.apache.org/viewcvs?rev=327003&view=rev
Log:
Fix for AXIS-2264 - org.apache.axis.client.Call implementation Bug => CurrentModificationException if an other VM is used (e.g. http://www.cacaojvm.org)

Modified:
    webservices/axis/trunk/java/src/org/apache/axis/client/Call.java

Modified: webservices/axis/trunk/java/src/org/apache/axis/client/Call.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/src/org/apache/axis/client/Call.java?rev=327003&r1=327002&r2=327003&view=diff
==============================================================================
--- webservices/axis/trunk/java/src/org/apache/axis/client/Call.java (original)
+++ webservices/axis/trunk/java/src/org/apache/axis/client/Call.java Thu Oct 20 14:06:18 2005
@@ -2559,7 +2559,7 @@
                 // does not match one of the operation parameters.
                 if (findReturnParam) {
                     Iterator it = outParams.keySet().iterator();
-                    while (it.hasNext() && findReturnParam) {
+                    while (findReturnParam && it.hasNext()) {
                         QName qname = (QName) it.next();
                         ParameterDesc paramDesc =
                             operation.getOutputParamByQName(qname);