JBossWS SVN: r5405 - stack/cxf/trunk/src/main/resources.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-01-07 08:35:53 -0500 (Mon, 07 Jan 2008)
New Revision: 5405
Modified:
stack/cxf/trunk/src/main/resources/jbossws-cxf-config.xml
Log:
Enabling record management for CXF stack
Modified: stack/cxf/trunk/src/main/resources/jbossws-cxf-config.xml
===================================================================
--- stack/cxf/trunk/src/main/resources/jbossws-cxf-config.xml 2008-01-07 11:32:29 UTC (rev 5404)
+++ stack/cxf/trunk/src/main/resources/jbossws-cxf-config.xml 2008-01-07 13:35:53 UTC (rev 5405)
@@ -62,6 +62,12 @@
<property name="provides">StackEndpointHandler</property>
</bean>
+ <bean name="WSCXFEndpointRecordProcessorDeploymentAspect" class="org.jboss.wsf.framework.deployment.EndpointRecordProcessorDeploymentAspect">
+ <property name="mbeanServer"><inject bean="WSMBeanServerLocator" property="mbeanServer"/></property>
+ <property name="requires">RegisteredEndpoint</property>
+ <property name="provides">EndpointRecordProcessors</property>
+ </bean>
+
<!-- Deployment aspect installers -->
<!-- Phase 2 -->
@@ -84,6 +90,7 @@
<property name="aspects">
<set class="java.util.HashSet" elementClass="org.jboss.wsf.spi.deployment.DeploymentAspect">
<inject bean="WSCXFEndpointHandlerDeploymentAspect"/>
+ <inject bean="WSCXFEndpointRecordProcessorDeploymentAspect"/>
</set>
</property>
<depends>WSDeploymentAspectInstallerPostJSE</depends>
@@ -96,6 +103,7 @@
<set class="java.util.HashSet" elementClass="org.jboss.wsf.spi.deployment.DeploymentAspect">
<inject bean="WSCXFContextPropertiesDeploymentAspect"/>
<inject bean="WSCXFEndpointHandlerDeploymentAspect"/>
+ <inject bean="WSCXFEndpointRecordProcessorDeploymentAspect"/>
<inject bean="WSCXFDescriptorDeploymentAspect"/>
</set>
</property>
17 years
JBossWS SVN: r5404 - in container/jboss40/tags/jbossws-jboss-4.0.5.SP2: src/main/java/org/jboss/wsf/container/jboss40 and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-07 06:32:29 -0500 (Mon, 07 Jan 2008)
New Revision: 5404
Modified:
container/jboss40/tags/jbossws-jboss-4.0.5.SP2/src/main/java/org/jboss/wsf/container/jboss40/JSEArchiveMetaDataAdapter.java
container/jboss40/tags/jbossws-jboss-4.0.5.SP2/version.properties
Log:
Fix copy and paste error when SP1 was created
Modified: container/jboss40/tags/jbossws-jboss-4.0.5.SP2/src/main/java/org/jboss/wsf/container/jboss40/JSEArchiveMetaDataAdapter.java
===================================================================
--- container/jboss40/tags/jbossws-jboss-4.0.5.SP2/src/main/java/org/jboss/wsf/container/jboss40/JSEArchiveMetaDataAdapter.java 2008-01-07 11:18:34 UTC (rev 5403)
+++ container/jboss40/tags/jbossws-jboss-4.0.5.SP2/src/main/java/org/jboss/wsf/container/jboss40/JSEArchiveMetaDataAdapter.java 2008-01-07 11:32:29 UTC (rev 5404)
@@ -60,12 +60,15 @@
if (di.parent != null)
{
J2eeApplicationMetaData appmd = (J2eeApplicationMetaData)di.parent.metaData;
- Iterator it = appmd.getModules();
- while (it.hasNext())
+ if(appmd!=null) // An ESB case, They deploy a *.war inside *.esb
{
- J2eeModuleMetaData module = (J2eeModuleMetaData)it.next();
- if (module.getFileName().equals(dep.getSimpleName()))
- contextRoot = module.getWebContext();
+ Iterator it = appmd.getModules();
+ while (it.hasNext())
+ {
+ J2eeModuleMetaData module = (J2eeModuleMetaData)it.next();
+ if (module.getFileName().equals(dep.getSimpleName()))
+ contextRoot = module.getWebContext();
+ }
}
}
Modified: container/jboss40/tags/jbossws-jboss-4.0.5.SP2/version.properties
===================================================================
--- container/jboss40/tags/jbossws-jboss-4.0.5.SP2/version.properties 2008-01-07 11:18:34 UTC (rev 5403)
+++ container/jboss40/tags/jbossws-jboss-4.0.5.SP2/version.properties 2008-01-07 11:32:29 UTC (rev 5404)
@@ -5,8 +5,8 @@
specification.vendor=JBoss (http://www.jboss.org)
specification.version=jbossws-2.0
-version.id=4.0.5.SP1
-repository.id=4.0.5.SP1
+version.id=4.0.5.SP2
+repository.id=4.0.5.SP2
implementation.title=JBoss Web Services - Integration JBoss40
implementation.url=http://www.jboss.org/products/jbossws
17 years
JBossWS SVN: r5403 - container/jboss40/tags.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-07 06:18:34 -0500 (Mon, 07 Jan 2008)
New Revision: 5403
Added:
container/jboss40/tags/jbossws-jboss-4.0.5.SP2/
Log:
Fixing nested war deployments. Copy and paste error when creating SP1 from GA
Copied: container/jboss40/tags/jbossws-jboss-4.0.5.SP2 (from rev 5402, container/jboss40/tags/jbossws-jboss-4.0.5.SP1)
17 years
JBossWS SVN: r5402 - stack/native/trunk.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-01-07 03:29:36 -0500 (Mon, 07 Jan 2008)
New Revision: 5402
Modified:
stack/native/trunk/ant.properties.example
Log:
5.0.0.Beta4
Modified: stack/native/trunk/ant.properties.example
===================================================================
--- stack/native/trunk/ant.properties.example 2008-01-07 08:29:15 UTC (rev 5401)
+++ stack/native/trunk/ant.properties.example 2008-01-07 08:29:36 UTC (rev 5402)
@@ -9,7 +9,7 @@
#jboss421.home=/home/tdiesler/svn/jbossas/tags/JBoss_4_2_1_GA/build/output/jboss-4.2.1.GA
#jboss422.home=/home/tdiesler/svn/jbossas/tags/JBoss_4_2_2_GA/build/output/jboss-4.2.2.GA
#jboss423.home=/home/tdiesler/svn/jbossas/branches/Branch_4_2/build/output/jboss-4.2.3.GA
-#jboss500.home=/home/tdiesler/svn/jbossas/trunk/build/output/jboss-5.0.0.Beta3
+#jboss500.home=/home/tdiesler/svn/jbossas/trunk/build/output/jboss-5.0.0.Beta4
# The JBoss server under test. This can be [jboss405|jboss405.no.ejb3|jboss421|jboss422|jboss423|jboss500]
jbossws.integration.target=jboss500
17 years
JBossWS SVN: r5401 - stack/metro/trunk.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-01-07 03:29:15 -0500 (Mon, 07 Jan 2008)
New Revision: 5401
Modified:
stack/metro/trunk/ant.properties.example
Log:
Modified: stack/metro/trunk/ant.properties.example
===================================================================
--- stack/metro/trunk/ant.properties.example 2008-01-07 08:28:37 UTC (rev 5400)
+++ stack/metro/trunk/ant.properties.example 2008-01-07 08:29:15 UTC (rev 5401)
@@ -4,7 +4,7 @@
# $Id: ant.properties.example 3995 2007-07-26 08:52:45Z thomas.diesler(a)jboss.com $
# Optional JBoss Home
-#jboss500.home=/home/tdiesler/svn/jbossas/trunk/build/output/jboss-5.0.0.Beta3
+#jboss500.home=/home/tdiesler/svn/jbossas/trunk/build/output/jboss-5.0.0.Beta4
#jboss422.home=/home/tdiesler/svn/jbossas/tags/JBoss_4_2_2_GA/build/output/jboss-4.2.2.GA
#jboss423.home=/home/tdiesler/svn/jbossas/branches/Branch_4_2/build/output/jboss-4.2.3.GA
17 years
JBossWS SVN: r5400 - stack/cxf/trunk.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-01-07 03:28:37 -0500 (Mon, 07 Jan 2008)
New Revision: 5400
Modified:
stack/cxf/trunk/ant.properties.example
Log:
5.0.0.Beta4
Modified: stack/cxf/trunk/ant.properties.example
===================================================================
--- stack/cxf/trunk/ant.properties.example 2008-01-07 08:27:40 UTC (rev 5399)
+++ stack/cxf/trunk/ant.properties.example 2008-01-07 08:28:37 UTC (rev 5400)
@@ -4,7 +4,7 @@
# $Id: ant.properties.example 3995 2007-07-26 08:52:45Z thomas.diesler(a)jboss.com $
# Optional JBoss Home
-#jboss500.home=/home/tdiesler/svn/jbossas/trunk/build/output/jboss-5.0.0.Beta3
+#jboss500.home=/home/tdiesler/svn/jbossas/trunk/build/output/jboss-5.0.0.Beta4
#jboss422.home=/home/tdiesler/svn/jbossas/tags/JBoss_4_2_2_GA/build/output/jboss-4.2.2.GA
#jboss423.home=/home/tdiesler/svn/jbossas/branches/Branch_4_2/build/output/jboss-4.2.3.GA
17 years
JBossWS SVN: r5399 - framework/trunk.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-01-07 03:27:40 -0500 (Mon, 07 Jan 2008)
New Revision: 5399
Modified:
framework/trunk/ant.properties.example
Log:
5.0.0.Beta4
Modified: framework/trunk/ant.properties.example
===================================================================
--- framework/trunk/ant.properties.example 2008-01-04 10:35:14 UTC (rev 5398)
+++ framework/trunk/ant.properties.example 2008-01-07 08:27:40 UTC (rev 5399)
@@ -47,7 +47,7 @@
hudson.jboss423.rev=HEAD
hudson.jboss500.url=https://svn.jboss.org/repos/jbossas/trunk
-hudson.jboss500.build=jboss-5.0.0.Beta3
+hudson.jboss500.build=jboss-5.0.0.Beta4
hudson.jboss500.rev=HEAD
hudson.mail.recipients=
17 years
JBossWS SVN: r5398 - stack/metro/trunk/src/main/java/org/jboss/wsf/stack/sunri/metadata.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-01-04 05:35:14 -0500 (Fri, 04 Jan 2008)
New Revision: 5398
Modified:
stack/metro/trunk/src/main/java/org/jboss/wsf/stack/sunri/metadata/RuntimeModelDeploymentAspect.java
Log:
Using DeploymentDescriptorParserJBWS instead of DeploymentDescriptorParserExt
Modified: stack/metro/trunk/src/main/java/org/jboss/wsf/stack/sunri/metadata/RuntimeModelDeploymentAspect.java
===================================================================
--- stack/metro/trunk/src/main/java/org/jboss/wsf/stack/sunri/metadata/RuntimeModelDeploymentAspect.java 2008-01-04 10:20:49 UTC (rev 5397)
+++ stack/metro/trunk/src/main/java/org/jboss/wsf/stack/sunri/metadata/RuntimeModelDeploymentAspect.java 2008-01-04 10:35:14 UTC (rev 5398)
@@ -38,6 +38,7 @@
import org.jboss.wsf.spi.deployment.Endpoint;
import org.jboss.wsf.spi.deployment.UnifiedVirtualFile;
import org.jboss.wsf.stack.sunri.DeploymentDescriptorParserExt;
+import org.jboss.wsf.stack.sunri.DeploymentDescriptorParserJBWS;
import org.jboss.wsf.stack.sunri.log.MessageLogPipelineHook;
import javax.xml.ws.WebServiceException;
@@ -143,7 +144,7 @@
throws MalformedURLException
{
DeploymentDescriptorParserExt<ServletAdapter> parser =
- new DeploymentDescriptorParserExt<ServletAdapter>(classLoader, resourceLoader, container, adapterList);
+ new DeploymentDescriptorParserJBWS<ServletAdapter>(classLoader, resourceLoader, container, adapterList);
return parser;
}
17 years
JBossWS SVN: r5397 - stack/metro/trunk/src/main/resources.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-01-04 05:20:49 -0500 (Fri, 04 Jan 2008)
New Revision: 5397
Modified:
stack/metro/trunk/src/main/resources/jbossws-sunri-config.xml
Log:
Enabling record management for Metro stack
Modified: stack/metro/trunk/src/main/resources/jbossws-sunri-config.xml
===================================================================
--- stack/metro/trunk/src/main/resources/jbossws-sunri-config.xml 2008-01-03 20:49:15 UTC (rev 5396)
+++ stack/metro/trunk/src/main/resources/jbossws-sunri-config.xml 2008-01-04 10:20:49 UTC (rev 5397)
@@ -56,6 +56,12 @@
<property name="requires">ContainerEndpointHandler</property>
<property name="provides">StackEndpointHandler</property>
</bean>
+
+ <bean name="WSMetroEndpointRecordProcessorDeploymentAspect" class="org.jboss.wsf.framework.deployment.EndpointRecordProcessorDeploymentAspect">
+ <property name="mbeanServer"><inject bean="WSMBeanServerLocator" property="mbeanServer"/></property>
+ <property name="requires">RegisteredEndpoint</property>
+ <property name="provides">EndpointRecordProcessors</property>
+ </bean>
<bean name="WSMetroDescriptorDeploymentAspect" class="org.jboss.wsf.stack.sunri.SunJaxwsDeploymentAspect">
<property name="requires">URLPattern</property>
@@ -88,6 +94,7 @@
<property name="aspects">
<set class="java.util.HashSet" elementClass="org.jboss.wsf.spi.deployment.DeploymentAspect">
<inject bean="WSMetroEndpointHandlerDeploymentAspect"/>
+ <inject bean="WSMetroEndpointRecordProcessorDeploymentAspect"/>
<inject bean="WSRuntimeModelDeploymentAspect"/>
</set>
</property>
@@ -101,6 +108,7 @@
<set class="java.util.HashSet" elementClass="org.jboss.wsf.spi.deployment.DeploymentAspect">
<inject bean="WSMetroContextPropertiesDeploymentAspect"/>
<inject bean="WSMetroEndpointHandlerDeploymentAspect"/>
+ <inject bean="WSMetroEndpointRecordProcessorDeploymentAspect"/>
<inject bean="WSMetroDescriptorDeploymentAspect"/>
<inject bean="WSRuntimeModelDeploymentAspect"/>
</set>
17 years
JBossWS SVN: r5396 - stack/native/trunk/ant-import.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-01-03 15:49:15 -0500 (Thu, 03 Jan 2008)
New Revision: 5396
Modified:
stack/native/trunk/ant-import/macros-deploy-native.xml
Log:
Fixing incomplete undeploy with jboss421
Modified: stack/native/trunk/ant-import/macros-deploy-native.xml
===================================================================
--- stack/native/trunk/ant-import/macros-deploy-native.xml 2008-01-03 20:48:00 UTC (rev 5395)
+++ stack/native/trunk/ant-import/macros-deploy-native.xml 2008-01-03 20:49:15 UTC (rev 5396)
@@ -270,6 +270,7 @@
<include name="jboss-jaxrpc.jar"/>
<include name="jboss-jaxws.jar"/>
<include name="jboss-jaxws-ext.jar"/>
+ <include name="jbossws-jboss421.jar"/>
<include name="jboss-saaj.jar"/>
<include name="jbossws-client.jar"/>
<include name="policy.jar"/>
@@ -289,6 +290,7 @@
<include name="jbossws-integration.jar"/>
</fileset>
<fileset dir="${jboss421.home}/server/${jboss.server.instance}/lib">
+ <include name="jbossws-jboss421.jar"/>
<include name="jboss-jaxrpc.jar"/>
<include name="jboss-jaxws.jar"/>
<include name="jboss-jaxws-ext.jar"/>
17 years