Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 98657 invoked from network); 6 Feb 2008 03:53:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Feb 2008 03:53:30 -0000 Received: (qmail 88726 invoked by uid 500); 6 Feb 2008 03:53:22 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 88656 invoked by uid 500); 6 Feb 2008 03:53:22 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 88647 invoked by uid 99); 6 Feb 2008 03:53:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Feb 2008 19:53:22 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Feb 2008 03:53:02 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6A9FB1A9832; Tue, 5 Feb 2008 19:53:08 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r618871 - in /incubator/cxf/branches/2.0.x-fixes: ./ rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsClientProxy.java rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/Messages.properties Date: Wed, 06 Feb 2008 03:53:07 -0000 To: cxf-commits@incubator.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080206035308.6A9FB1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Tue Feb 5 19:53:06 2008 New Revision: 618871 URL: http://svn.apache.org/viewvc?rev=618871&view=rev Log: Merged revisions 618124 via svnmerge from https://svn.apache.org/repos/asf/incubator/cxf/trunk ........ r618124 | gmazza | 2008-02-03 18:35:19 -0500 (Sun, 03 Feb 2008) | 1 line Clarified error message. ........ Modified: incubator/cxf/branches/2.0.x-fixes/ (props changed) incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsClientProxy.java incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/Messages.properties Propchange: incubator/cxf/branches/2.0.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsClientProxy.java URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsClientProxy.java?rev=618871&r1=618870&r2=618871&view=diff ============================================================================== --- incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsClientProxy.java (original) +++ incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsClientProxy.java Tue Feb 5 19:53:06 2008 @@ -98,7 +98,7 @@ return method.invoke(this); } - Message msg = new Message("NO_OPERATION_INFO", LOG, method.getName()); + Message msg = new Message("NO_BINDING_OPERATION_INFO", LOG, method.getName()); throw new WebServiceException(msg.toString()); } Modified: incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/Messages.properties URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/Messages.properties?rev=618871&r1=618870&r2=618871&view=diff ============================================================================== --- incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/Messages.properties (original) +++ incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/Messages.properties Tue Feb 5 19:53:06 2008 @@ -39,7 +39,7 @@ UNSUPPORTED_API_EXC = Method {0} is not supported yet. PORT_NAME_NULL_EXC = Port name must not be null. -NO_OPERATION_INFO = Could not find operation info for web method {0}. +NO_BINDING_OPERATION_INFO = Could not find wsdl:binding operation info for web method {0}. COULD_NOT_DETERMINE_PORT = Unable to determine port name. INVALID_PORT = Port {0} not found. FAILED_TO_PUBLISH_ENDPOINT_EXC = Failed to publish endpoint.