Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 3636 invoked by uid 500); 25 Sep 2002 18:27:52 -0000 Mailing-List: contact axis-dev-help@xml.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@xml.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@xml.apache.org Received: (qmail 3615 invoked by uid 500); 25 Sep 2002 18:27:52 -0000 Delivered-To: apmail-xml-axis-wsif-cvs@apache.org Date: 25 Sep 2002 14:23:46 -0000 Message-ID: <20020925142346.21789.qmail@icarus.apache.org> From: owenb@apache.org To: xml-axis-wsif-cvs@apache.org Subject: cvs commit: xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis WSIFPort_ApacheAxis.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N owenb 2002/09/25 07:23:46 Modified: java/src/org/apache/wsif/providers/soap/apacheaxis WSIFPort_ApacheAxis.java Log: Add ':' onto the operation name when attempting to find a matching operation in getDynamicWSIFOperation method using the operation name only. This prevents two operations with the same characters at the start of the name from being considered duplicates when the input and output names provided to the method are null. Revision Changes Path 1.10 +1 -1 xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFPort_ApacheAxis.java Index: WSIFPort_ApacheAxis.java =================================================================== RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFPort_ApacheAxis.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- WSIFPort_ApacheAxis.java 27 Aug 2002 10:24:08 -0000 1.9 +++ WSIFPort_ApacheAxis.java 25 Sep 2002 14:23:46 -0000 1.10 @@ -400,7 +400,7 @@ while (i.hasNext()) { String key = (String) i.next(); if ((outputName != null && key.endsWith(outputName)) || outputName == null) { - String start = (inputName == null) ? name : name + ":" + inputName; + String start = (inputName == null) ? name + ":" : name + ":" + inputName; if (key.startsWith(start)) { if (operation != null) { // Duplicate operation found based on names!