JBossWS SVN: r10089 - framework/trunk.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:08:58 -0400 (Mon, 25 May 2009)
New Revision: 10089
Modified:
framework/trunk/pom.xml
Log:
Using jbossws-common 1.2.0-SNAPSHOT
Modified: framework/trunk/pom.xml
===================================================================
--- framework/trunk/pom.xml 2009-05-25 11:06:18 UTC (rev 10088)
+++ framework/trunk/pom.xml 2009-05-25 11:08:58 UTC (rev 10089)
@@ -24,7 +24,7 @@
<!-- Properties -->
<properties>
- <jbossws.common.version>1.1.1-SNAPSHOT</jbossws.common.version>
+ <jbossws.common.version>1.2.0-SNAPSHOT</jbossws.common.version>
<jbossws.spi.version>1.2.0-SNAPSHOT</jbossws.spi.version>
<jboss.common.version>1.2.1.GA</jboss.common.version>
<jbossxb.version>1.0.0.SP1</jbossxb.version>
15 years, 7 months
JBossWS SVN: r10088 - common/trunk.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:06:18 -0400 (Mon, 25 May 2009)
New Revision: 10088
Modified:
common/trunk/pom.xml
Log:
Build jbossws-common to 1.2.0-SNAPSHOT
Modified: common/trunk/pom.xml
===================================================================
--- common/trunk/pom.xml 2009-05-25 11:04:22 UTC (rev 10087)
+++ common/trunk/pom.xml 2009-05-25 11:06:18 UTC (rev 10088)
@@ -8,7 +8,7 @@
<artifactId>jbossws-common</artifactId>
<packaging>jar</packaging>
- <version>1.1.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<!-- Parent -->
<parent>
15 years, 7 months
JBossWS SVN: r10087 - framework/trunk/src/main/java/org/jboss/wsf/framework.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:04:22 -0400 (Mon, 25 May 2009)
New Revision: 10087
Modified:
framework/trunk/src/main/java/org/jboss/wsf/framework/DefaultSPIProvider.java
Log:
[JBWS-2652] Enabling StackConfigFactory retrieval
Modified: framework/trunk/src/main/java/org/jboss/wsf/framework/DefaultSPIProvider.java
===================================================================
--- framework/trunk/src/main/java/org/jboss/wsf/framework/DefaultSPIProvider.java 2009-05-25 11:02:42 UTC (rev 10086)
+++ framework/trunk/src/main/java/org/jboss/wsf/framework/DefaultSPIProvider.java 2009-05-25 11:04:22 UTC (rev 10087)
@@ -47,6 +47,7 @@
import org.jboss.wsf.spi.management.EndpointMetricsFactory;
import org.jboss.wsf.spi.management.EndpointRegistryFactory;
import org.jboss.wsf.spi.management.ServerConfigFactory;
+import org.jboss.wsf.spi.management.StackConfigFactory;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.ServiceRefMetaDataParserFactory;
import org.jboss.wsf.spi.serviceref.ServiceRefBinderFactory;
import org.jboss.wsf.spi.serviceref.ServiceRefHandlerFactory;
@@ -108,6 +109,10 @@
{
returnType = (T)loadService(spiType, DefaultServiceRefMetaDataParserFactory.class.getName());
}
+ else if (StackConfigFactory.class.equals(spiType))
+ {
+ returnType = (T)loadService(spiType, null);
+ }
else if (ServerConfigFactory.class.equals(spiType))
{
returnType = (T)loadService(spiType, ServerConfigFactoryImpl.class.getName());
15 years, 7 months
JBossWS SVN: r10086 - common/trunk/src/main/java/org/jboss/wsf/common/management.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:02:42 -0400 (Mon, 25 May 2009)
New Revision: 10086
Modified:
common/trunk/src/main/java/org/jboss/wsf/common/management/AbstractServerConfig.java
Log:
[JBWS-2652] Making AbstractServerConfig container independent
Modified: common/trunk/src/main/java/org/jboss/wsf/common/management/AbstractServerConfig.java
===================================================================
--- common/trunk/src/main/java/org/jboss/wsf/common/management/AbstractServerConfig.java 2009-05-25 11:01:14 UTC (rev 10085)
+++ common/trunk/src/main/java/org/jboss/wsf/common/management/AbstractServerConfig.java 2009-05-25 11:02:42 UTC (rev 10086)
@@ -21,10 +21,7 @@
*/
package org.jboss.wsf.common.management;
-import java.io.File;
import java.net.InetAddress;
-import java.net.URISyntaxException;
-import java.net.URL;
import java.net.UnknownHostException;
import java.util.Set;
@@ -35,13 +32,18 @@
import org.jboss.logging.Logger;
import org.jboss.wsf.common.ObjectNameFactory;
+import org.jboss.wsf.spi.SPIProvider;
+import org.jboss.wsf.spi.SPIProviderResolver;
import org.jboss.wsf.spi.management.ServerConfig;
+import org.jboss.wsf.spi.management.StackConfig;
+import org.jboss.wsf.spi.management.StackConfigFactory;
/**
* Basic implementation of a ServerConfig
*
* @author Thomas.Diesler(a)jboss.org
* @author darran.lofthouse(a)jboss.com
+ * @author alessio.soldano(a)jboss.com
* @since 08-May-2006
*/
public abstract class AbstractServerConfig implements AbstractServerConfigMBean, ServerConfig
@@ -62,8 +64,10 @@
private int webServicePort;
// The webservice port that will be used when updating the wsdl
private int webServiceSecurePort;
- // Whether we should always modify the soap address to the deployed endpoing location
+ // Whether we should always modify the soap address to the deployed endpoint location
private boolean modifySOAPAddress;
+ //The stack config
+ protected StackConfig stackConfig;
public MBeanServer getMbeanServer()
{
@@ -116,60 +120,6 @@
this.modifySOAPAddress = modify;
}
- public File getServerTempDir()
- {
- return this.getDirFromServerConfig("ServerTempLocation");
- }
-
- public File getHomeDir()
- {
- return this.getDirFromServerConfig("JBossHome");
- }
-
- public File getServerDataDir()
- {
- return this.getDirFromServerConfig("ServerDataLocation");
- }
-
- /**
- * Obtains the specified attribute from the server configuration,
- * represented as a {@link File}.
- *
- * @param attributeName
- * @return
- * @author ALR
- */
- protected File getDirFromServerConfig(final String attributeName)
- {
- // Define the ON to invoke upon
- final ObjectName on = OBJECT_NAME_SERVER_CONFIG;
-
- // Get the URL location
- URL location = null;
- try
- {
- location = (URL) getMbeanServer().getAttribute(on, attributeName);
- }
- catch (final JMException e)
- {
- throw new RuntimeException("Could not obtain attribute " + attributeName + " from " + on, e);
- }
-
- // Represent as a File
- File dir = null;
- try
- {
- dir = new File(location.toURI());
- }
- catch (final URISyntaxException urise)
- {
- throw new RuntimeException("Could not desired directory from URL: " + location, urise);
- }
-
- // Return
- return dir;
- }
-
public int getWebServicePort()
{
if (webServicePort <= 0)
@@ -204,6 +154,12 @@
public void create() throws Exception
{
+ //Retrieve the stackConfig using SPIProvider
+ SPIProvider spiProvider = SPIProviderResolver.getInstance().getProvider();
+ this.stackConfig = spiProvider.getSPI(StackConfigFactory.class).getStackConfig();
+
+ log.info(getImplementationTitle());
+ log.info(getImplementationVersion());
getMbeanServer().registerMBean(this, AbstractServerConfigMBean.OBJECT_NAME);
}
@@ -256,4 +212,14 @@
return -1;
}
}
+
+ public String getImplementationTitle()
+ {
+ return stackConfig.getImplementationTitle();
+ }
+
+ public String getImplementationVersion()
+ {
+ return stackConfig.getImplementationVersion();
+ }
}
15 years, 7 months
JBossWS SVN: r10085 - spi/trunk/src/main/java/org/jboss/wsf/spi/management.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:01:14 -0400 (Mon, 25 May 2009)
New Revision: 10085
Added:
spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfig.java
spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfigFactory.java
Log:
[JBWS-2652] Adding StackConfig
Added: spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfig.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfig.java (rev 0)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfig.java 2009-05-25 11:01:14 UTC (rev 10085)
@@ -0,0 +1,36 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.wsf.spi.management;
+
+
+/**
+ * Interface to stack configuration
+ *
+ * @author alessio.soldano(a)jboss.com
+ * @since 25-May-2009
+ */
+public interface StackConfig
+{
+ String getImplementationTitle();
+
+ String getImplementationVersion();
+}
Property changes on: spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfig.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfigFactory.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfigFactory.java (rev 0)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfigFactory.java 2009-05-25 11:01:14 UTC (rev 10085)
@@ -0,0 +1,35 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.wsf.spi.management;
+
+import org.jboss.wsf.spi.SPIView;
+
+/**
+ * Factory to stack configuration
+ *
+ * @author alessio.soldano(a)jboss.com
+ * @since 25-May-2009
+ */
+public abstract class StackConfigFactory implements SPIView
+{
+ public abstract StackConfig getStackConfig();
+}
Property changes on: spi/trunk/src/main/java/org/jboss/wsf/spi/management/StackConfigFactory.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
15 years, 7 months
JBossWS SVN: r10084 - stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2009-05-25 04:30:30 -0400 (Mon, 25 May 2009)
New Revision: 10084
Modified:
stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ServiceObjectFactory.java
Log:
[JBWS-2521] removing first hack (WIP)
Modified: stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ServiceObjectFactory.java
===================================================================
--- stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ServiceObjectFactory.java 2009-05-25 08:29:01 UTC (rev 10083)
+++ stack/cxf/trunk/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ServiceObjectFactory.java 2009-05-25 08:30:30 UTC (rev 10084)
@@ -23,11 +23,14 @@
import org.apache.cxf.Bus;
import org.apache.cxf.BusFactory;
-import org.apache.cxf.jaxws.ServiceImpl;
import org.jboss.wsf.spi.WSFException;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedServiceRefMetaData;
-import javax.naming.*;
+import javax.naming.Context;
+import javax.naming.Name;
+import javax.naming.NamingException;
+import javax.naming.RefAddr;
+import javax.naming.Reference;
import javax.naming.spi.ObjectFactory;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
@@ -45,8 +48,6 @@
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;
import java.util.Hashtable;
-import java.util.LinkedList;
-import java.util.List;
import org.jboss.logging.Logger;
@@ -57,7 +58,7 @@
* @see ServiceReferenceable
*
* @author Thomas.Diesler(a)jboss.com
- * @since 06-Dec-2007
+ * @author Richard.Opalka(a)jboss.com
*/
public class ServiceObjectFactory implements ObjectFactory
{
@@ -83,6 +84,7 @@
* @see javax.naming.spi.NamingManager#getObjectInstance
* @see javax.naming.spi.NamingManager#getURLContext
*/
+ @SuppressWarnings(value="unchecked")
public Object getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable environment) throws Exception
{
try
@@ -187,7 +189,7 @@
if ((serviceRef.getHandlerChain() != null) && (target instanceof Service))
{
- Bus bus = getBus((Service)target);
+ Bus bus = BusFactory.getThreadDefaultBus();
((Service)target).setHandlerResolver(new HandlerResolverImpl(bus, serviceRef.getHandlerChain(), target.getClass()));
}
@@ -244,43 +246,6 @@
}
}
- private Bus getBus(final Service service) throws Throwable
- {
- SecurityManager sm = System.getSecurityManager();
- if (sm != null)
- {
- try
- {
- return AccessController.doPrivileged(new PrivilegedExceptionAction<Bus>()
- {
- public Bus run() throws Exception
- {
- Field delegateField = findServiceDelegateField(service.getClass());
- if (delegateField != null)
- {
- delegateField.setAccessible(true);
- ServiceImpl serviceImpl = (ServiceImpl)delegateField.get(service);
- return serviceImpl.getBus();
- }
- throw new IllegalStateException("Bus not found");
- }
- });
- }
- catch (PrivilegedActionException e)
- {
- throw e.getCause();
- }
- }
- Field delegateField = findServiceDelegateField(service.getClass());
- if (delegateField != null)
- {
- delegateField.setAccessible(true);
- ServiceImpl serviceImpl = (ServiceImpl)delegateField.get(service);
- return serviceImpl.getBus();
- }
- throw new IllegalStateException("Bus not found");
- }
-
private static Field findServiceDelegateField(Class<?> clazz)
{
while (clazz != null)
15 years, 7 months
JBossWS SVN: r10083 - stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2009-05-25 04:29:01 -0400 (Mon, 25 May 2009)
New Revision: 10083
Modified:
stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ServiceObjectFactory.java
Log:
[JBWS-2521] removing first hack (WIP)
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ServiceObjectFactory.java
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ServiceObjectFactory.java 2009-05-23 18:16:27 UTC (rev 10082)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ServiceObjectFactory.java 2009-05-25 08:29:01 UTC (rev 10083)
@@ -23,11 +23,14 @@
import org.apache.cxf.Bus;
import org.apache.cxf.BusFactory;
-import org.apache.cxf.jaxws.ServiceImpl;
import org.jboss.wsf.spi.WSFException;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedServiceRefMetaData;
-import javax.naming.*;
+import javax.naming.Context;
+import javax.naming.Name;
+import javax.naming.NamingException;
+import javax.naming.RefAddr;
+import javax.naming.Reference;
import javax.naming.spi.ObjectFactory;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
@@ -45,8 +48,6 @@
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;
import java.util.Hashtable;
-import java.util.LinkedList;
-import java.util.List;
import org.jboss.logging.Logger;
@@ -57,7 +58,7 @@
* @see ServiceReferenceable
*
* @author Thomas.Diesler(a)jboss.com
- * @since 06-Dec-2007
+ * @author Richard.Opalka(a)jboss.com
*/
public class ServiceObjectFactory implements ObjectFactory
{
@@ -83,6 +84,7 @@
* @see javax.naming.spi.NamingManager#getObjectInstance
* @see javax.naming.spi.NamingManager#getURLContext
*/
+ @SuppressWarnings(value="unchecked")
public Object getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable environment) throws Exception
{
try
@@ -187,7 +189,7 @@
if ((serviceRef.getHandlerChain() != null) && (target instanceof Service))
{
- Bus bus = getBus((Service)target);
+ Bus bus = BusFactory.getThreadDefaultBus();
((Service)target).setHandlerResolver(new HandlerResolverImpl(bus, serviceRef.getHandlerChain(), target.getClass()));
}
@@ -244,43 +246,6 @@
}
}
- private Bus getBus(final Service service) throws Throwable
- {
- SecurityManager sm = System.getSecurityManager();
- if (sm != null)
- {
- try
- {
- return AccessController.doPrivileged(new PrivilegedExceptionAction<Bus>()
- {
- public Bus run() throws Exception
- {
- Field delegateField = findServiceDelegateField(service.getClass());
- if (delegateField != null)
- {
- delegateField.setAccessible(true);
- ServiceImpl serviceImpl = (ServiceImpl)delegateField.get(service);
- return serviceImpl.getBus();
- }
- throw new IllegalStateException("Bus not found");
- }
- });
- }
- catch (PrivilegedActionException e)
- {
- throw e.getCause();
- }
- }
- Field delegateField = findServiceDelegateField(service.getClass());
- if (delegateField != null)
- {
- delegateField.setAccessible(true);
- ServiceImpl serviceImpl = (ServiceImpl)delegateField.get(service);
- return serviceImpl.getBus();
- }
- throw new IllegalStateException("Bus not found");
- }
-
private static Field findServiceDelegateField(Class<?> clazz)
{
while (clazz != null)
15 years, 7 months
JBossWS SVN: r10082 - stack/metro/trunk.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-23 14:16:27 -0400 (Sat, 23 May 2009)
New Revision: 10082
Modified:
stack/metro/trunk/pom.xml
Log:
Modified: stack/metro/trunk/pom.xml
===================================================================
--- stack/metro/trunk/pom.xml 2009-05-23 17:54:05 UTC (rev 10081)
+++ stack/metro/trunk/pom.xml 2009-05-23 18:16:27 UTC (rev 10082)
@@ -47,8 +47,8 @@
<jbossws.common.version>1.1.1-SNAPSHOT</jbossws.common.version>
<jbossws.framework.version>3.2.0-SNAPSHOT</jbossws.framework.version>
<jbossws.spi.version>1.2.0-SNAPSHOT</jbossws.spi.version>
- <jbossws.jboss500.version>3.1.2.GA</jbossws.jboss500.version>
- <jbossws.jboss501.version>3.1.2.GA</jbossws.jboss501.version>
+ <jbossws.jboss500.version>3.2.0-SNAPSHOT</jbossws.jboss500.version>
+ <jbossws.jboss501.version>3.2.0-SNAPSHOT</jbossws.jboss501.version>
<!-- JBWS-2505 -->
<!-- START -->
<!--
15 years, 7 months
JBossWS SVN: r10081 - stack/cxf/trunk.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-23 13:54:05 -0400 (Sat, 23 May 2009)
New Revision: 10081
Modified:
stack/cxf/trunk/pom.xml
Log:
Modified: stack/cxf/trunk/pom.xml
===================================================================
--- stack/cxf/trunk/pom.xml 2009-05-23 17:39:15 UTC (rev 10080)
+++ stack/cxf/trunk/pom.xml 2009-05-23 17:54:05 UTC (rev 10081)
@@ -46,8 +46,8 @@
<jbossws.common.version>1.1.1-SNAPSHOT</jbossws.common.version>
<jbossws.framework.version>3.2.0-SNAPSHOT</jbossws.framework.version>
<jbossws.spi.version>1.2.0-SNAPSHOT</jbossws.spi.version>
- <jbossws.jboss500.version>3.1.2.GA</jbossws.jboss500.version>
- <jbossws.jboss501.version>3.1.2.GA</jbossws.jboss501.version>
+ <jbossws.jboss500.version>3.2.0-SNAPSHOT</jbossws.jboss500.version>
+ <jbossws.jboss501.version>3.2.0-SNAPSHOT</jbossws.jboss501.version>
<!-- JBWS-2505 -->
<!-- START -->
<!--
15 years, 7 months
JBossWS SVN: r10080 - stack/native/trunk.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-23 13:39:15 -0400 (Sat, 23 May 2009)
New Revision: 10080
Modified:
stack/native/trunk/pom.xml
Log:
Using new container integration for AS 5.0.0.GA and 5.0.1.GA
Modified: stack/native/trunk/pom.xml
===================================================================
--- stack/native/trunk/pom.xml 2009-05-23 17:37:48 UTC (rev 10079)
+++ stack/native/trunk/pom.xml 2009-05-23 17:39:15 UTC (rev 10080)
@@ -50,8 +50,8 @@
<jbossws.common.version>1.1.1-SNAPSHOT</jbossws.common.version>
<jbossws.framework.version>3.2.0-SNAPSHOT</jbossws.framework.version>
<jbossws.spi.version>1.2.0-SNAPSHOT</jbossws.spi.version>
- <jbossws.jboss500.version>3.1.2.GA</jbossws.jboss500.version>
- <jbossws.jboss501.version>3.1.2.GA</jbossws.jboss501.version>
+ <jbossws.jboss500.version>3.2.0-SNAPSHOT</jbossws.jboss500.version>
+ <jbossws.jboss501.version>3.2.0-SNAPSHOT</jbossws.jboss501.version>
<!-- [JBWS-2505] -->
<!-- START -->
<!--
15 years, 7 months