Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 10119 invoked from network); 5 Oct 2008 14:48:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Oct 2008 14:48:54 -0000 Received: (qmail 77180 invoked by uid 500); 5 Oct 2008 14:48:53 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 76953 invoked by uid 500); 5 Oct 2008 14:48:53 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 76944 invoked by uid 500); 5 Oct 2008 14:48:52 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 76941 invoked by uid 99); 5 Oct 2008 14:48:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Oct 2008 07:48:52 -0700 X-ASF-Spam-Status: No, hits=-1998.7 required=10.0 tests=ALL_TRUSTED,DNS_FROM_DOB,DNS_FROM_SECURITYSAGE,RCVD_IN_DOB X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Oct 2008 14:47:58 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CF77D23888CA; Sun, 5 Oct 2008 07:48:02 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r701804 - /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService.java Date: Sun, 05 Oct 2008 14:48:02 -0000 To: axis2-cvs@ws.apache.org From: amilas@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081005144802.CF77D23888CA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: amilas Date: Sun Oct 5 07:48:02 2008 New Revision: 701804 URL: http://svn.apache.org/viewvc?rev=701804&view=rev Log: fixed the absolute path displaying problem and remove the uncessary Axis2 fault Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService.java Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService.java?rev=701804&r1=701803&r2=701804&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService.java (original) +++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService.java Sun Oct 5 07:48:02 2008 @@ -918,7 +918,7 @@ this.eprs = eprs; } - public String[] getEPRs() throws AxisFault { + public String[] getEPRs() { if (eprs != null && eprs.length != 0) { return eprs; } @@ -1174,7 +1174,7 @@ } } - private String getServiceEPR() throws AxisFault { + private String getServiceEPR() { String serviceEPR = null; Parameter parameter = this.getParameter(Constants.Configuration.GENERATE_ABSOLUTE_LOCATION_URIS); if ((parameter != null) && JavaUtils.isTrueExplicitly(parameter.getValue())) { @@ -2604,7 +2604,7 @@ String newscheamlocation = customSchemaNamePrefix == null ? // use the default mode - (getName() + "?xsd=" + getScheamLocationWithDot( + (this.getServiceEPR() + "?xsd=" + getScheamLocationWithDot( sourceURIToNewLocationMap, s)) : // custom prefix is present - add the custom prefix