Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 61478 invoked from network); 19 Apr 2005 05:47:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Apr 2005 05:47:39 -0000 Received: (qmail 45049 invoked by uid 500); 19 Apr 2005 05:47:37 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 44997 invoked by uid 500); 19 Apr 2005 05:47:36 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 44982 invoked by uid 99); 19 Apr 2005 05:47:36 -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 minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 18 Apr 2005 22:47:36 -0700 Received: (qmail 61448 invoked by uid 65534); 19 Apr 2005 05:47:35 -0000 Message-ID: <20050419054735.61447.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Tue, 19 Apr 2005 05:47:35 -0000 Subject: svn commit: r161847 - webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment/DeploymentEngine.java To: axis-cvs@ws.apache.org From: deepal@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: deepal Date: Mon Apr 18 22:47:34 2005 New Revision: 161847 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D161847 Log: (empty) Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment= /DeploymentEngine.java Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis/depl= oyment/DeploymentEngine.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core= /src/org/apache/axis/deployment/DeploymentEngine.java?view=3Ddiff&r1=3D1618= 46&r2=3D161847 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment= /DeploymentEngine.java (original) +++ webservices/axis/trunk/java/modules/core/src/org/apache/axis/deployment= /DeploymentEngine.java Mon Apr 18 22:47:34 2005 @@ -102,7 +102,7 @@ */ =20 public DeploymentEngine(String RepositaryName) throws DeploymentExcept= ion { - this(RepositaryName, "axisGlobal.xml"); + this(RepositaryName, "server.xml"); } =20 /** @@ -128,7 +128,7 @@ File serverConf =3D new File(repository, serverXMLFile); if (!serverConf.exists()) { ClassLoader cl =3D Thread.currentThread().getContextClassLoade= r(); - InputStream in =3D cl.getResourceAsStream("org/apache/axis/dep= loyment/axisGlobal.xml"); + InputStream in =3D cl.getResourceAsStream("org/apache/axis/dep= loyment/server.xml"); if (in !=3D null) { try { serverConf.createNewFile(); @@ -147,7 +147,7 @@ =20 =20 } else { - throw new DeploymentException("can not found org/apache/ax= is/deployment/axisGlobal.xml"); + throw new DeploymentException("can not found org/apache/ax= is/deployment/server.xml"); =20 } } @@ -221,7 +221,7 @@ } =20 /** - * This methode used to check the modules referd by axisGlobal.xml + * This methode used to check the modules referd by server.xml * are exist , or they have deployed */ private void validateServerModule() throws AxisFault{