Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 25473 invoked from network); 5 Oct 2005 07:19:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Oct 2005 07:19:53 -0000 Received: (qmail 53180 invoked by uid 500); 5 Oct 2005 07:19:52 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 53155 invoked by uid 500); 5 Oct 2005 07:19:52 -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 53144 invoked by uid 500); 5 Oct 2005 07:19:51 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 53141 invoked by uid 99); 5 Oct 2005 07:19:51 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 05 Oct 2005 00:19:51 -0700 Received: (qmail 25275 invoked by uid 65534); 5 Oct 2005 07:19:31 -0000 Message-ID: <20051005071931.25271.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r295009 - /webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentEngine.java Date: Wed, 05 Oct 2005 07:19:30 -0000 To: axis2-cvs@ws.apache.org From: deepal@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: deepal Date: Wed Oct 5 00:19:22 2005 New Revision: 295009 URL: http://svn.apache.org/viewcvs?rev=295009&view=rev Log: seeing classLoader at the correct location , when creating module using getResoureceAsStream Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentEngine.java Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentEngine.java URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentEngine.java?rev=295009&r1=295008&r2=295009&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentEngine.java (original) +++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DeploymentEngine.java Wed Oct 5 00:19:22 2005 @@ -793,8 +793,8 @@ currentArchiveFile = new ArchiveFileData(modulearchive, MODULE); axismodule = new ModuleDescription(); ArchiveReader archiveReader = new ArchiveReader(); - archiveReader.readModuleArchive(currentArchiveFile.getAbsolutePath(), this, axismodule,false); currentArchiveFile.setClassLoader(false); + archiveReader.readModuleArchive(currentArchiveFile.getAbsolutePath(), this, axismodule,false); Flow inflow = axismodule.getInFlow(); if (inflow != null) { addFlowHandlers(inflow);