Return-Path: Delivered-To: apmail-tuscany-commits-archive@www.apache.org Received: (qmail 95072 invoked from network); 10 Nov 2008 17:07:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Nov 2008 17:07:14 -0000 Received: (qmail 69997 invoked by uid 500); 10 Nov 2008 17:07:22 -0000 Delivered-To: apmail-tuscany-commits-archive@tuscany.apache.org Received: (qmail 69981 invoked by uid 500); 10 Nov 2008 17:07:21 -0000 Mailing-List: contact commits-help@tuscany.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tuscany.apache.org Delivered-To: mailing list commits@tuscany.apache.org Received: (qmail 69972 invoked by uid 99); 10 Nov 2008 17:07:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Nov 2008 09:07:21 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED 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; Mon, 10 Nov 2008 17:06:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 06A45238898F; Mon, 10 Nov 2008 09:06:54 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r712700 - /tuscany/java/sca/modules/binding-ws-axis2/src/main/java/org/apache/tuscany/sca/binding/ws/axis2/Axis2ServiceProvider.java Date: Mon, 10 Nov 2008 17:06:53 -0000 To: commits@tuscany.apache.org From: rfeng@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081110170654.06A45238898F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rfeng Date: Mon Nov 10 09:06:53 2008 New Revision: 712700 URL: http://svn.apache.org/viewvc?rev=712700&view=rev Log: Fix for TUSCANY-2669 Modified: tuscany/java/sca/modules/binding-ws-axis2/src/main/java/org/apache/tuscany/sca/binding/ws/axis2/Axis2ServiceProvider.java Modified: tuscany/java/sca/modules/binding-ws-axis2/src/main/java/org/apache/tuscany/sca/binding/ws/axis2/Axis2ServiceProvider.java URL: http://svn.apache.org/viewvc/tuscany/java/sca/modules/binding-ws-axis2/src/main/java/org/apache/tuscany/sca/binding/ws/axis2/Axis2ServiceProvider.java?rev=712700&r1=712699&r2=712700&view=diff ============================================================================== --- tuscany/java/sca/modules/binding-ws-axis2/src/main/java/org/apache/tuscany/sca/binding/ws/axis2/Axis2ServiceProvider.java (original) +++ tuscany/java/sca/modules/binding-ws-axis2/src/main/java/org/apache/tuscany/sca/binding/ws/axis2/Axis2ServiceProvider.java Mon Nov 10 09:06:53 2008 @@ -19,8 +19,6 @@ package org.apache.tuscany.sca.binding.ws.axis2; -import static org.apache.tuscany.sca.binding.ws.axis2.AxisPolicyHelper.isIntentRequired; - import java.lang.reflect.InvocationTargetException; import java.net.URI; import java.net.URISyntaxException; @@ -316,7 +314,7 @@ Axis2ServiceServlet servlet = null; for (String endpointURL : urlMap.keySet()) { - if (endpointURL.startsWith("http://") || endpointURL.startsWith("/")) { + if (endpointURL.startsWith("http://") || endpointURL.startsWith("https://") || endpointURL.startsWith("/")) { if (servlet == null) { servlet = new Axis2ServiceServlet(); servlet.init(configContext);