Return-Path: Delivered-To: apmail-ws-axis-cvs-archive@www.apache.org Received: (qmail 6962 invoked from network); 22 Feb 2005 07:09:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 22 Feb 2005 07:09:29 -0000 Received: (qmail 74720 invoked by uid 500); 22 Feb 2005 07:09:28 -0000 Delivered-To: apmail-ws-axis-cvs-archive@ws.apache.org Received: (qmail 74388 invoked by uid 500); 22 Feb 2005 07:09:26 -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 74361 invoked by uid 99); 22 Feb 2005 07:09:26 -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, 21 Feb 2005 23:09:26 -0800 Received: (qmail 6882 invoked by uid 65534); 22 Feb 2005 07:09:25 -0000 Message-ID: <20050222070925.6881.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, 22 Feb 2005 07:09:25 -0000 Subject: svn commit: r154810 - in webservices/axis/trunk/java/modules/deployment/src/java/org/apache/axis/deployment: DeploymentEngine.java EngineRegistryFactoryImpl.java repository/utill/UnZipJAR.java To: axis-cvs@ws.apache.org From: deepal@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: deepal Date: Mon Feb 21 23:09:23 2005 New Revision: 154810 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D154810 Log: (empty) Modified: webservices/axis/trunk/java/modules/deployment/src/java/org/apache/axis= /deployment/DeploymentEngine.java webservices/axis/trunk/java/modules/deployment/src/java/org/apache/axis= /deployment/EngineRegistryFactoryImpl.java webservices/axis/trunk/java/modules/deployment/src/java/org/apache/axis= /deployment/repository/utill/UnZipJAR.java Modified: webservices/axis/trunk/java/modules/deployment/src/java/org/apach= e/axis/deployment/DeploymentEngine.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/depl= oyment/src/java/org/apache/axis/deployment/DeploymentEngine.java?view=3Ddif= f&r1=3D154809&r2=3D154810 =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/deployment/src/java/org/apache/axis= /deployment/DeploymentEngine.java (original) +++ webservices/axis/trunk/java/modules/deployment/src/java/org/apache/axis= /deployment/DeploymentEngine.java Mon Feb 21 23:09:23 2005 @@ -171,7 +171,6 @@ * * @return * @throws AxisFault - * @throws PhaseException */ public EngineRegistry start() throws AxisFault, DeploymentException, X= MLStreamException { //String fileName; @@ -422,17 +421,15 @@ AxisService service =3D new AxisService(); unZipJAR.unzipService(currentFileItem.getAbsol= utePath(), this, service); addnewService(service); - log.info("Invalid service" + currentFileItem.g= etName() ); log.info("Deployement WS Name " + currentFile= Item.getName()); } catch (DeploymentException de) { - log.info("Invalid module" + currentFileItem.ge= tName() ); + log.info("Invalid service" + currentFileItem.g= etName() ); log.info("DeploymentException " + de); } catch (AxisFault axisFault) { - log.info("Invalid module" + currentFileItem.ge= tName() ); + log.info("Invalid service" + currentFileItem.g= etName() ); log.info("AxisFault " + axisFault); - throw new RuntimeException(axisFault); } catch (Exception e) { - log.info("Invalid module" + currentFileItem.ge= tName() ); + log.info("Invalid service" + currentFileItem.g= etName() ); log.info("Exception " + e); } finally { currentFileItem =3D null; @@ -443,7 +440,6 @@ AxisModule metaData =3D new AxisModule(); unZipJAR.unzipModule(currentFileItem.getAbsolu= tePath(), this, metaData); addNewModule(metaData); - log.info("Invalid module" + currentFileItem.ge= tName() ); log.info("Moduel WS Name " + currentFileItem.= getName() + " modulename :" + metaData.getName()); } catch (DeploymentException e) { log.info("Invalid module" + currentFileItem.ge= tName() ); @@ -472,7 +468,6 @@ if(wsInfo.getType()=3D=3DSERVICE) { serviceName =3D getAxisServiceName(wsInfo.getFilen= ame()); engineRegistry.removeService(new QName(serviceName= )); - log.info("Invalid service" + currentFileItem.getNa= me() ); log.info("UnDeployement WS Name " + wsInfo.getFil= ename()); } } Modified: webservices/axis/trunk/java/modules/deployment/src/java/org/apach= e/axis/deployment/EngineRegistryFactoryImpl.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/depl= oyment/src/java/org/apache/axis/deployment/EngineRegistryFactoryImpl.java?v= iew=3Ddiff&r1=3D154809&r2=3D154810 =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/deployment/src/java/org/apache/axis= /deployment/EngineRegistryFactoryImpl.java (original) +++ webservices/axis/trunk/java/modules/deployment/src/java/org/apache/axis= /deployment/EngineRegistryFactoryImpl.java Mon Feb 21 23:09:23 2005 @@ -1,19 +1,19 @@ -/* - * Copyright 2004,2005 The Apache Software Foundation. - *=20 - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - *=20 - * http://www.apache.org/licenses/LICENSE-2.0 - *=20 - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied= . - * See the License for the specific language governing permissions and - * limitations under the License. - */ -=20 +/* + * Copyright 2004,2005 The Apache Software Foundation. + *=20 + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + *=20 + * http://www.apache.org/licenses/LICENSE-2.0 + *=20 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +=20 package org.apache.axis.deployment; =20 import org.apache.axis.engine.AxisFault; @@ -29,9 +29,7 @@ try { DeploymentEngine deploymentEngine =3D new DeploymentEngine(fil= e); return deploymentEngine.start(); - } catch (PhaseException e) { - throw AxisFault.makeFault(e); - } catch (DeploymentException e) { + }catch (DeploymentException e) { throw AxisFault.makeFault(e); } catch (XMLStreamException e) { throw AxisFault.makeFault(e); Modified: webservices/axis/trunk/java/modules/deployment/src/java/org/apach= e/axis/deployment/repository/utill/UnZipJAR.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/depl= oyment/src/java/org/apache/axis/deployment/repository/utill/UnZipJAR.java?v= iew=3Ddiff&r1=3D154809&r2=3D154810 =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/deployment/src/java/org/apache/axis= /deployment/repository/utill/UnZipJAR.java (original) +++ webservices/axis/trunk/java/modules/deployment/src/java/org/apache/axis= /deployment/repository/utill/UnZipJAR.java Mon Feb 21 23:09:23 2005 @@ -58,7 +58,6 @@ throw new DeploymentException("service.xml not found"); } } catch (Exception e) { - e.printStackTrace(); throw new DeploymentException(e.getMessage()); } }