[jboss-cvs] JBossAS SVN: r84937 - in trunk/webservices: src/main/org/jboss/wsf/container/jboss60/transport and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Mar 2 05:20:29 EST 2009


Author: richard.opalka at jboss.com
Date: 2009-03-02 05:20:29 -0500 (Mon, 02 Mar 2009)
New Revision: 84937

Modified:
   trunk/webservices/build.xml
   trunk/webservices/src/main/org/jboss/wsf/container/jboss60/transport/DynamicEndpointDeploymentAspect.java
Log:
[JBAS-6497] porting fix from Branch_5_0

Modified: trunk/webservices/build.xml
===================================================================
--- trunk/webservices/build.xml	2009-03-02 10:18:55 UTC (rev 84936)
+++ trunk/webservices/build.xml	2009-03-02 10:20:29 UTC (rev 84937)
@@ -70,10 +70,12 @@
       <path refid="jboss.aop.classpath"/>
       <path refid="jboss.common.core.classpath"/>
       <path refid="jboss.common.logging.spi.classpath"/>
+      <path refid="jboss.jboss.cl.classpath"/>
       <path refid="jboss.jboss.ejb3.core.classpath" />   
       <path refid="jboss.jboss.ejb3.ext.api.classpath" />   
       <path refid="jboss.jboss.ejb3.interceptors.classpath" />   
       <path refid="jboss.jboss.javaee.classpath"/>
+      <path refid="jboss.jboss.man.classpath"/>
       <path refid="jboss.jboss.security.spi.classpath"/>
       <path refid="jboss.jboss.vfs.classpath"/>
       <path refid="jboss.jbosssx.classpath"/>

Modified: trunk/webservices/src/main/org/jboss/wsf/container/jboss60/transport/DynamicEndpointDeploymentAspect.java
===================================================================
--- trunk/webservices/src/main/org/jboss/wsf/container/jboss60/transport/DynamicEndpointDeploymentAspect.java	2009-03-02 10:18:55 UTC (rev 84936)
+++ trunk/webservices/src/main/org/jboss/wsf/container/jboss60/transport/DynamicEndpointDeploymentAspect.java	2009-03-02 10:20:29 UTC (rev 84937)
@@ -26,6 +26,8 @@
 
 import javax.xml.ws.WebServiceException;
 
+import org.jboss.classloading.spi.dependency.ClassLoading;
+import org.jboss.classloading.spi.dependency.Module;
 import org.jboss.deployers.client.plugins.deployment.AbstractDeployment;
 import org.jboss.deployers.client.spi.DeployerClient;
 import org.jboss.deployers.client.spi.DeploymentFactory;
@@ -85,6 +87,7 @@
          mutableAttachments.addAttachment("org.jboss.web.explicitDocBase", "/", String.class);
          mutableAttachments.addAttachment(ClassLoaderFactory.class, new ContextClassLoaderFactory(epLoader));
          mutableAttachments.addAttachment(JBossWebMetaData.class, jbwmd);
+         mutableAttachments.addAttachment(Module.class, ClassLoading.getModuleForClassLoader(epLoader));
          mainDeployer.deploy(deployment);
          
          deployments.put(contextRoot, deployment);




More information about the jboss-cvs-commits mailing list