butek 2002/07/02 13:15:56 Modified: java/src/org/apache/axis/wsdl/fromJava Emitter.java Log: Fix for http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10355. Java2WSDL was matching overloaded operations incorrectly. Revision Changes Path 1.47 +4 -4 xml-axis/java/src/org/apache/axis/wsdl/fromJava/Emitter.java Index: Emitter.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/wsdl/fromJava/Emitter.java,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- Emitter.java 1 Jul 2002 09:29:43 -0000 1.46 +++ Emitter.java 2 Jul 2002 20:15:56 -0000 1.47 @@ -624,10 +624,10 @@ equals(thisOper.getParameter(k).getJavaType()))) { parmsMatch = false; } - if (parmsMatch) { - messageOper = tryOper; - found = true; - } + } + if (parmsMatch) { + messageOper = tryOper; + found = true; } } }
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fromJava... glyn
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... tomj
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... tomj
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... butek
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... scheu
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... scheu
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... scheu
- RE: cvs commit: xml-axis/java/src/org/apache/axis/wsdl... Tom Jordahl
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... scheu
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... scheu
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... butek
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... scheu
- RE: cvs commit: xml-axis/java/src/org/apache/axis/wsdl... Tom Jordahl
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... scheu
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... scheu
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... tomj
- cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fro... tomj
- Re: cvs commit: xml-axis/java/src/org/apache/axis/... Steve Loughran