Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 8474 invoked by uid 500); 16 Oct 2001 16:40:43 -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 8462 invoked by uid 500); 16 Oct 2001 16:40:43 -0000 Delivered-To: apmail-xml-axis-cvs@apache.org Date: 16 Oct 2001 16:34:49 -0000 Message-ID: <20011016163449.11001.qmail@icarus.apache.org> From: gdaniels@apache.org To: xml-axis-cvs@apache.org Subject: cvs commit: xml-axis/java/src/org/apache/axis/transport/http SimpleAxisServer.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N gdaniels 01/10/16 09:34:49 Modified: java/src/org/apache/axis/transport/http SimpleAxisServer.java Log: Enable URL mapping for "services/*" for SimpleAxisServer Revision Changes Path 1.31 +5 -0 xml-axis/java/src/org/apache/axis/transport/http/SimpleAxisServer.java Index: SimpleAxisServer.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/transport/http/SimpleAxisServer.java,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- SimpleAxisServer.java 2001/10/16 13:25:52 1.30 +++ SimpleAxisServer.java 2001/10/16 16:34:48 1.31 @@ -261,6 +261,11 @@ fileName.toString(); msgContext.setProperty(MessageContext.TRANS_URL, url); + String filePart = fileName.toString(); + if (filePart.startsWith("services/")) { + msgContext.setTargetService(filePart.substring(9)); + } + if (authInfo.length() > 0) { // Process authentication info //authInfo = new StringBuffer("dXNlcjE6cGFzczE=");