[jbossws-commits] JBossWS SVN: r1715 - branches/tdiesler/trunk/integration-jboss42/src/main/java/org/jboss/ws/integration/jboss42

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Thu Dec 21 19:07:31 EST 2006


Author: thomas.diesler at jboss.com
Date: 2006-12-21 19:07:29 -0500 (Thu, 21 Dec 2006)
New Revision: 1715

Modified:
   branches/tdiesler/trunk/integration-jboss42/src/main/java/org/jboss/ws/integration/jboss42/DeployerInterceptorEJB.java
   branches/tdiesler/trunk/integration-jboss42/src/main/java/org/jboss/ws/integration/jboss42/ServiceEndpointPublisher.java
Log:
partial commit

Modified: branches/tdiesler/trunk/integration-jboss42/src/main/java/org/jboss/ws/integration/jboss42/DeployerInterceptorEJB.java
===================================================================
--- branches/tdiesler/trunk/integration-jboss42/src/main/java/org/jboss/ws/integration/jboss42/DeployerInterceptorEJB.java	2006-12-22 00:07:25 UTC (rev 1714)
+++ branches/tdiesler/trunk/integration-jboss42/src/main/java/org/jboss/ws/integration/jboss42/DeployerInterceptorEJB.java	2006-12-22 00:07:29 UTC (rev 1715)
@@ -47,7 +47,7 @@
       if (udi != null)
       {
          UnifiedMetaData wsMetaData = getServiceEndpointDeployer().getUnifiedMetaData(udi);
-         udi.expandedWebApp = generateWebDeployment(di, wsMetaData);
+         udi.webappURL = generateWebDeployment(di, wsMetaData);
          udi.context.put(DeploymentInfo.class.getName(), di);
          getServiceEndpointPublisher().publishServiceEndpoint(udi);
       }

Modified: branches/tdiesler/trunk/integration-jboss42/src/main/java/org/jboss/ws/integration/jboss42/ServiceEndpointPublisher.java
===================================================================
--- branches/tdiesler/trunk/integration-jboss42/src/main/java/org/jboss/ws/integration/jboss42/ServiceEndpointPublisher.java	2006-12-22 00:07:25 UTC (rev 1714)
+++ branches/tdiesler/trunk/integration-jboss42/src/main/java/org/jboss/ws/integration/jboss42/ServiceEndpointPublisher.java	2006-12-22 00:07:29 UTC (rev 1715)
@@ -65,7 +65,7 @@
 
    public String destroyServiceEndpoint(UnifiedDeploymentInfo udi) throws Exception
    {
-      getMainDeployer().undeploy(udi.expandedWebApp);
+      getMainDeployer().undeploy(udi.webappURL);
       return "OK";
    }
    




More information about the jbossws-commits mailing list