JBossWS SVN: r11549 - stack/native/branches/dlofthouse.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2010-02-09 07:51:26 -0500 (Tue, 09 Feb 2010)
New Revision: 11549
Removed:
stack/native/branches/dlofthouse/JBWS-2706/
Log:
Remove obsolete working branch.
14 years, 10 months
JBossWS SVN: r11548 - stack/native/branches/dlofthouse.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2010-02-09 07:50:24 -0500 (Tue, 09 Feb 2010)
New Revision: 11548
Removed:
stack/native/branches/dlofthouse/JBWS-2681/
Log:
Remove obsolete working branch.
14 years, 10 months
JBossWS SVN: r11547 - stack/native/branches/dlofthouse.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2010-02-09 07:49:12 -0500 (Tue, 09 Feb 2010)
New Revision: 11547
Removed:
stack/native/branches/dlofthouse/JBPAPP-3389/
Log:
Remove obsolete working branch.
14 years, 10 months
JBossWS SVN: r11546 - in stack/native/trunk/modules: testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-02-08 22:42:46 -0500 (Mon, 08 Feb 2010)
New Revision: 11546
Added:
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2926/
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2926/JBWS2926TestCase.java
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingClientHandler.java
Log:
JBWS-2926:Set the soap action value to wsa action
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingClientHandler.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingClientHandler.java 2010-02-09 03:12:41 UTC (rev 11545)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingClientHandler.java 2010-02-09 03:42:46 UTC (rev 11546)
@@ -32,6 +32,7 @@
import javax.xml.namespace.QName;
import javax.xml.soap.SOAPException;
import javax.xml.soap.SOAPMessage;
+import javax.xml.ws.BindingProvider;
import javax.xml.ws.addressing.AddressingBuilder;
import javax.xml.ws.addressing.AddressingException;
import javax.xml.ws.addressing.JAXWSAConstants;
@@ -104,7 +105,14 @@
try
{
OperationMetaData opMetaData = ((CommonMessageContext)msgContext).getOperationMetaData();
- addrProps.setAction(ADDR_BUILDER.newURI(opMetaData.getJavaName()));
+ if (msgContext.get(BindingProvider.SOAPACTION_URI_PROPERTY) != null)
+ {
+ addrProps.setAction(ADDR_BUILDER.newURI(msgContext.get(BindingProvider.SOAPACTION_URI_PROPERTY).toString()));
+ }
+ else
+ {
+ addrProps.setAction(ADDR_BUILDER.newURI(opMetaData.getJavaName()));
+ }
}
catch (URISyntaxException ex)
{
Added: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2926/JBWS2926TestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2926/JBWS2926TestCase.java (rev 0)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2926/JBWS2926TestCase.java 2010-02-09 03:42:46 UTC (rev 11546)
@@ -0,0 +1,60 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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.test.ws.jaxws.jbws2926;
+
+import javax.xml.soap.MessageFactory;
+import javax.xml.soap.SOAPMessage;
+import javax.xml.ws.BindingProvider;
+import javax.xml.ws.addressing.JAXWSAConstants;
+import javax.xml.ws.addressing.soap.SOAPAddressingProperties;
+import javax.xml.ws.handler.MessageContext;
+
+import junit.framework.TestCase;
+
+import org.jboss.ws.core.jaxws.handler.SOAPMessageContextJAXWS;
+import org.jboss.ws.extensions.addressing.jaxws.WSAddressingClientHandler;
+import org.jboss.ws.extensions.addressing.soap.SOAPAddressingPropertiesImpl;
+
+/**
+ * JBWS2926TestCase.
+ *
+ * @author <a href="ema(a)redhat.com">Jim Ma</a>
+ */
+public class JBWS2926TestCase extends TestCase
+{
+ public void testWsaAction() throws Exception
+ {
+ WSAddressingClientHandler wsHandler = new WSAddressingClientHandler();
+ SOAPMessageContextJAXWS context = new SOAPMessageContextJAXWS();
+ context.put(MessageContext.MESSAGE_OUTBOUND_PROPERTY, new Boolean(true));
+ context.put(BindingProvider.SOAPACTION_URI_PROPERTY, "inputAction");
+ context.put(JAXWSAConstants.CLIENT_ADDRESSING_PROPERTIES, new SOAPAddressingPropertiesImpl());
+ context.put(JAXWSAConstants.CLIENT_ADDRESSING_PROPERTIES_OUTBOUND, new SOAPAddressingPropertiesImpl());
+ MessageFactory factory = MessageFactory.newInstance();
+ SOAPMessage soapMsg = factory.createMessage();
+ context.setMessage(soapMsg);
+ wsHandler.handleMessage(context);
+ SOAPAddressingProperties addrProps = (SOAPAddressingProperties)context.get(JAXWSAConstants.CLIENT_ADDRESSING_PROPERTIES_OUTBOUND);
+ assertEquals(addrProps.getAction().getURI().toString(), "inputAction");
+
+ }
+}
\ No newline at end of file
14 years, 10 months
JBossWS SVN: r11545 - in stack/native/branches/jbossws-native-3.1.2/modules: testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-02-08 22:12:41 -0500 (Mon, 08 Feb 2010)
New Revision: 11545
Added:
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2926/
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2926/JBWS2926TestCase.java
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingClientHandler.java
Log:
JBWS-2926:set soap action value to wsa action
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingClientHandler.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingClientHandler.java 2010-02-08 00:25:11 UTC (rev 11544)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingClientHandler.java 2010-02-09 03:12:41 UTC (rev 11545)
@@ -32,6 +32,7 @@
import javax.xml.namespace.QName;
import javax.xml.soap.SOAPException;
import javax.xml.soap.SOAPMessage;
+import javax.xml.ws.BindingProvider;
import javax.xml.ws.addressing.AddressingBuilder;
import javax.xml.ws.addressing.AddressingException;
import javax.xml.ws.addressing.JAXWSAConstants;
@@ -104,7 +105,14 @@
try
{
OperationMetaData opMetaData = ((CommonMessageContext)msgContext).getOperationMetaData();
- addrProps.setAction(ADDR_BUILDER.newURI(opMetaData.getJavaName()));
+ if (msgContext.get(BindingProvider.SOAPACTION_URI_PROPERTY) != null)
+ {
+ addrProps.setAction(ADDR_BUILDER.newURI(msgContext.get(BindingProvider.SOAPACTION_URI_PROPERTY).toString()));
+ }
+ else
+ {
+ addrProps.setAction(ADDR_BUILDER.newURI(opMetaData.getJavaName()));
+ }
}
catch (URISyntaxException ex)
{
Added: stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2926/JBWS2926TestCase.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2926/JBWS2926TestCase.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2926/JBWS2926TestCase.java 2010-02-09 03:12:41 UTC (rev 11545)
@@ -0,0 +1,62 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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.test.ws.jaxws.jbws2926;
+
+import javax.xml.soap.MessageFactory;
+import javax.xml.soap.SOAPMessage;
+import javax.xml.ws.BindingProvider;
+import javax.xml.ws.addressing.JAXWSAConstants;
+import javax.xml.ws.addressing.soap.SOAPAddressingProperties;
+import javax.xml.ws.handler.MessageContext;
+
+import junit.framework.TestCase;
+
+import org.jboss.ws.core.jaxws.handler.SOAPMessageContextJAXWS;
+import org.jboss.ws.extensions.addressing.jaxws.WSAddressingClientHandler;
+import org.jboss.ws.extensions.addressing.soap.SOAPAddressingPropertiesImpl;
+
+/**
+ * JBWS2926TestCase.
+ *
+ * @author <a href="ema(a)redhat.com">Jim Ma</a>
+ */
+public class JBWS2926TestCase extends TestCase
+{
+
+
+ public void testWsaAction() throws Exception
+ {
+ WSAddressingClientHandler wsHandler = new WSAddressingClientHandler();
+ SOAPMessageContextJAXWS context = new SOAPMessageContextJAXWS();
+ context.put(MessageContext.MESSAGE_OUTBOUND_PROPERTY, new Boolean(true));
+ context.put(BindingProvider.SOAPACTION_URI_PROPERTY, "inputAction");
+ context.put(JAXWSAConstants.CLIENT_ADDRESSING_PROPERTIES, new SOAPAddressingPropertiesImpl());
+ context.put(JAXWSAConstants.CLIENT_ADDRESSING_PROPERTIES_OUTBOUND, new SOAPAddressingPropertiesImpl());
+ MessageFactory factory = MessageFactory.newInstance();
+ SOAPMessage soapMsg = factory.createMessage();
+ context.setMessage(soapMsg);
+ wsHandler.handleMessage(context);
+ SOAPAddressingProperties addrProps = (SOAPAddressingProperties)context.get(JAXWSAConstants.CLIENT_ADDRESSING_PROPERTIES_OUTBOUND);
+ assertEquals(addrProps.getAction().getURI().toString(), "inputAction");
+
+ }
+}
\ No newline at end of file
14 years, 10 months
JBossWS SVN: r11544 - stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-02-07 19:25:11 -0500 (Sun, 07 Feb 2010)
New Revision: 11544
Modified:
stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/all-deploy.conf
stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/default-deploy.conf
stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/standard-deploy.conf
Log:
[JBWS-2921] Updating default uninstall file list
Modified: stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/all-deploy.conf
===================================================================
--- stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/all-deploy.conf 2010-02-08 00:14:14 UTC (rev 11543)
+++ stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/all-deploy.conf 2010-02-08 00:25:11 UTC (rev 11544)
@@ -1 +1 @@
-bin/wsconsume.bat bin/wsconsume.sh bin/wsprovide.bat bin/wsprovide.sh bin/wsrunclient.bat bin/wsrunclient.sh bin/wstools.bat bin/wstools.sh client/jettison.jar client/jaxb-api.jar client/FastInfoset.jar client/commons-beanutils.jar client/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jbossws-native-jaxrpc.jar client/jaxrpc-api.jar client/jbossws-native-jaxws.jar client/jbossws-native-factories.jar client/jaxws-api.jar client/jsr181-api.jar client/jbossws-native-saaj.jar client/saaj-api.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/netty.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jaxrpc-api.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-factories.jar common/lib/jaxws-api.jar common/lib/jsr181-!
api.jar common/lib/jbossws-native-saaj.jar common/lib/saaj-api.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar common/lib/commons-beanutils.jar lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar server/all/deploy/jbossws.sar server/all/deploy/jbossws-console.war server/all/deploy/juddi-service.sar server/all/deployers/jbossws.deployer/FastInfoset.jar server/all/deployers/jbossws.deployer/jboss-jaxb-intros.jar server/all/deployers/jbossws.deployer/jbossws-native-core.jar server/all/deployers/jbossws.deployer/jettison.jar server/all/deployers/jbossws.deployer/netty.jar server/all/deployers/jbossws.deployer/policy.jar server/all/deployers/jbossws.deployer/wsdl4j.jar server/all/deployers/jbossws.deployer/xmlsec.jar server/all/deployers/jbossws.deployer/META-INF/jboss-beans.xml server/all/deployers/jbossws.deployer/META-INF/jbossws-deployer-jboss-beans.xml server/all/deployers/jbossws.deployer/META-INF/jbossws-container-jboss-be!
ans.xml server/all/deployers/jbossws.deployer/META-INF/standar!
d-*-conf
ig.xml
+bin/wsconsume.bat bin/wsconsume.sh bin/wsprovide.bat bin/wsprovide.sh bin/wsrunclient.bat bin/wsrunclient.sh bin/wstools.bat bin/wstools.sh client/jettison.jar client/jaxb-api.jar client/FastInfoset.jar client/commons-beanutils.jar client/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jbossws-native-jaxrpc.jar client/jaxrpc-api.jar client/jbossws-native-jaxws.jar client/jbossws-native-factories.jar client/jaxws-api.jar client/jsr181-api.jar client/jbossws-native-saaj.jar client/saaj-api.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-native-services.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/netty.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jaxrpc-api.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-factories.jar common/l!
ib/jaxws-api.jar common/lib/jsr181-api.jar common/lib/jbossws-native-saaj.jar common/lib/saaj-api.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar common/lib/commons-beanutils.jar lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar server/all/deploy/jbossws.sar server/all/deploy/jbossws-console.war server/all/deploy/juddi-service.sar server/all/deployers/jbossws.deployer/FastInfoset.jar server/all/deployers/jbossws.deployer/jboss-jaxb-intros.jar server/all/deployers/jbossws.deployer/jbossws-native-core.jar server/all/deployers/jbossws.deployer/jbossws-native-services.jar server/all/deployers/jbossws.deployer/jettison.jar server/all/deployers/jbossws.deployer/netty.jar server/all/deployers/jbossws.deployer/policy.jar server/all/deployers/jbossws.deployer/wsdl4j.jar server/all/deployers/jbossws.deployer/xmlsec.jar server/all/deployers/jbossws.deployer/META-INF/jboss-beans.xml server/all/deployers/jbossws.deployer/META-INF/jboss!
ws-deployer-jboss-beans.xml server/all/deployers/jbossws.deplo!
yer/META
-INF/jbossws-container-jboss-beans.xml server/all/deployers/jbossws.deployer/META-INF/standard-*-config.xml
Modified: stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/default-deploy.conf
===================================================================
--- stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/default-deploy.conf 2010-02-08 00:14:14 UTC (rev 11543)
+++ stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/default-deploy.conf 2010-02-08 00:25:11 UTC (rev 11544)
@@ -1 +1 @@
-bin/wsconsume.bat bin/wsconsume.sh bin/wsprovide.bat bin/wsprovide.sh bin/wsrunclient.bat bin/wsrunclient.sh bin/wstools.bat bin/wstools.sh client/jettison.jar client/jaxb-api.jar client/FastInfoset.jar client/commons-beanutils.jar client/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jbossws-native-jaxrpc.jar client/jaxrpc-api.jar client/jbossws-native-jaxws.jar client/jbossws-native-factories.jar client/jaxws-api.jar client/jsr181-api.jar client/jbossws-native-saaj.jar client/saaj-api.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/netty.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jaxrpc-api.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-factories.jar common/lib/jaxws-api.jar common/lib/jsr181-!
api.jar common/lib/jbossws-native-saaj.jar common/lib/saaj-api.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar common/lib/commons-beanutils.jar lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar server/default/deploy/jbossws.sar server/default/deploy/jbossws-console.war server/default/deploy/juddi-service.sar server/default/deployers/jbossws.deployer/FastInfoset.jar server/default/deployers/jbossws.deployer/jboss-jaxb-intros.jar server/default/deployers/jbossws.deployer/jbossws-native-core.jar server/default/deployers/jbossws.deployer/jettison.jar server/default/deployers/jbossws.deployer/netty.jar server/default/deployers/jbossws.deployer/policy.jar server/default/deployers/jbossws.deployer/wsdl4j.jar server/default/deployers/jbossws.deployer/xmlsec.jar server/default/deployers/jbossws.deployer/META-INF/jboss-beans.xml server/default/deployers/jbossws.deployer/META-INF/jbossws-deployer-jboss-beans.xml server/default/deploy!
ers/jbossws.deployer/META-INF/jbossws-container-jboss-beans.xm!
l server
/default/deployers/jbossws.deployer/META-INF/standard-*-config.xml
+bin/wsconsume.bat bin/wsconsume.sh bin/wsprovide.bat bin/wsprovide.sh bin/wsrunclient.bat bin/wsrunclient.sh bin/wstools.bat bin/wstools.sh client/jettison.jar client/jaxb-api.jar client/FastInfoset.jar client/commons-beanutils.jar client/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jbossws-native-jaxrpc.jar client/jaxrpc-api.jar client/jbossws-native-jaxws.jar client/jbossws-native-factories.jar client/jaxws-api.jar client/jsr181-api.jar client/jbossws-native-saaj.jar client/saaj-api.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-native-services.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/netty.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jaxrpc-api.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-factories.jar common/l!
ib/jaxws-api.jar common/lib/jsr181-api.jar common/lib/jbossws-native-saaj.jar common/lib/saaj-api.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar common/lib/commons-beanutils.jar lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar server/default/deploy/jbossws.sar server/default/deploy/jbossws-console.war server/default/deploy/juddi-service.sar server/default/deployers/jbossws.deployer/FastInfoset.jar server/default/deployers/jbossws.deployer/jboss-jaxb-intros.jar server/default/deployers/jbossws.deployer/jbossws-native-core.jar server/default/deployers/jbossws.deployer/jbossws-native-services.jar server/default/deployers/jbossws.deployer/jettison.jar server/default/deployers/jbossws.deployer/netty.jar server/default/deployers/jbossws.deployer/policy.jar server/default/deployers/jbossws.deployer/wsdl4j.jar server/default/deployers/jbossws.deployer/xmlsec.jar server/default/deployers/jbossws.deployer/META-INF/jboss-beans.xml !
server/default/deployers/jbossws.deployer/META-INF/jbossws-dep!
loyer-jb
oss-beans.xml server/default/deployers/jbossws.deployer/META-INF/jbossws-container-jboss-beans.xml server/default/deployers/jbossws.deployer/META-INF/standard-*-config.xml
Modified: stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/standard-deploy.conf
===================================================================
--- stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/standard-deploy.conf 2010-02-08 00:14:14 UTC (rev 11543)
+++ stack/cxf/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/standard-deploy.conf 2010-02-08 00:25:11 UTC (rev 11544)
@@ -1 +1 @@
-bin/wsconsume.bat bin/wsconsume.sh bin/wsprovide.bat bin/wsprovide.sh bin/wsrunclient.bat bin/wsrunclient.sh bin/wstools.bat bin/wstools.sh client/jettison.jar client/jaxb-api.jar client/FastInfoset.jar client/commons-beanutils.jar client/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jbossws-native-jaxrpc.jar client/jaxrpc-api.jar client/jbossws-native-jaxws.jar client/jbossws-native-factories.jar client/jaxws-api.jar client/jsr181-api.jar client/jbossws-native-saaj.jar client/saaj-api.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/netty.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jaxrpc-api.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-factories.jar common/lib/jaxws-api.jar common/lib/jsr181-!
api.jar common/lib/jbossws-native-saaj.jar common/lib/saaj-api.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar common/lib/commons-beanutils.jar lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar server/standard/deploy/jbossws.sar server/standard/deploy/jbossws-console.war server/standard/deploy/juddi-service.sar server/standard/deployers/jbossws.deployer/FastInfoset.jar server/standard/deployers/jbossws.deployer/jboss-jaxb-intros.jar server/standard/deployers/jbossws.deployer/jbossws-native-core.jar server/standard/deployers/jbossws.deployer/jettison.jar server/standard/deployers/jbossws.deployer/netty.jar server/standard/deployers/jbossws.deployer/policy.jar server/standard/deployers/jbossws.deployer/wsdl4j.jar server/standard/deployers/jbossws.deployer/xmlsec.jar server/standard/deployers/jbossws.deployer/META-INF/jboss-beans.xml server/standard/deployers/jbossws.deployer/META-INF/jbossws-deployer-jboss-beans.xml server/s!
tandard/deployers/jbossws.deployer/META-INF/jbossws-container-!
jboss-be
ans.xml server/standard/deployers/jbossws.deployer/META-INF/standard-*-config.xml
+bin/wsconsume.bat bin/wsconsume.sh bin/wsprovide.bat bin/wsprovide.sh bin/wsrunclient.bat bin/wsrunclient.sh bin/wstools.bat bin/wstools.sh client/jettison.jar client/jaxb-api.jar client/FastInfoset.jar client/commons-beanutils.jar client/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jbossws-native-jaxrpc.jar client/jaxrpc-api.jar client/jbossws-native-jaxws.jar client/jbossws-native-factories.jar client/jaxws-api.jar client/jsr181-api.jar client/jbossws-native-saaj.jar client/saaj-api.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-native-services.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/netty.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jaxrpc-api.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-factories.jar common/l!
ib/jaxws-api.jar common/lib/jsr181-api.jar common/lib/jbossws-native-saaj.jar common/lib/saaj-api.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar common/lib/commons-beanutils.jar lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar server/standard/deploy/jbossws.sar server/standard/deploy/jbossws-console.war server/standard/deploy/juddi-service.sar server/standard/deployers/jbossws.deployer/FastInfoset.jar server/standard/deployers/jbossws.deployer/jboss-jaxb-intros.jar server/standard/deployers/jbossws.deployer/jbossws-native-core.jar server/standard/deployers/jbossws.deployer/jbossws-native-services.jar server/standard/deployers/jbossws.deployer/jettison.jar server/standard/deployers/jbossws.deployer/netty.jar server/standard/deployers/jbossws.deployer/policy.jar server/standard/deployers/jbossws.deployer/wsdl4j.jar server/standard/deployers/jbossws.deployer/xmlsec.jar server/standard/deployers/jbossws.deployer/META-INF/jbo!
ss-beans.xml server/standard/deployers/jbossws.deployer/META-I!
NF/jboss
ws-deployer-jboss-beans.xml server/standard/deployers/jbossws.deployer/META-INF/jbossws-container-jboss-beans.xml server/standard/deployers/jbossws.deployer/META-INF/standard-*-config.xml
14 years, 10 months
JBossWS SVN: r11543 - in stack/native/branches/jaxrpc-cxf: modules and 13 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-02-07 19:14:14 -0500 (Sun, 07 Feb 2010)
New Revision: 11543
Added:
stack/native/branches/jaxrpc-cxf/modules/services/
stack/native/branches/jaxrpc-cxf/modules/services/pom.xml
stack/native/branches/jaxrpc-cxf/modules/services/src/
stack/native/branches/jaxrpc-cxf/modules/services/src/main/
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.common.addressing.MAPBuilderFactory
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.DeploymentAspectManagerLocator
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.RequestHandlerFactory
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.WebServiceContextFactory
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.EndpointRegistryFactory
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.ServerConfigFactory
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.StackConfigFactory
stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.serviceref.ServiceRefBinderFactory
Removed:
stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory
stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.EndpointRegistryFactory
stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.ServerConfigFactory
stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.common.addressing.MAPBuilderFactory
stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.DeploymentAspectManagerLocator
stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.RequestHandlerFactory
stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.WebServiceContextFactory
stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.StackConfigFactory
stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.serviceref.ServiceRefBinderFactory
Modified:
stack/native/branches/jaxrpc-cxf/modules/client/pom.xml
stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsconsume.bat
stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsconsume.sh
stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsprovide.bat
stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsprovide.sh
stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsrunclient.bat
stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsrunclient.sh
stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/all-deploy.conf
stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/default-deploy.conf
stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/standard-deploy.conf
stack/native/branches/jaxrpc-cxf/pom.xml
stack/native/branches/jaxrpc-cxf/src/main/distro/build-project-gen.xml
stack/native/branches/jaxrpc-cxf/src/main/scripts/assembly-deploy-artifacts.xml
Log:
[JBWS-2921] create jbossws-native-services.jar
Modified: stack/native/branches/jaxrpc-cxf/modules/client/pom.xml
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/client/pom.xml 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/client/pom.xml 2010-02-08 00:14:14 UTC (rev 11543)
@@ -21,6 +21,16 @@
<version>${version}</version>
</dependency>
<dependency>
+ <groupId>org.jboss.ws.native</groupId>
+ <artifactId>jbossws-native-factories</artifactId>
+ <version>${version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws.native</groupId>
+ <artifactId>jbossws-native-services</artifactId>
+ <version>${version}</version>
+ </dependency>
+ <dependency>
<groupId>javax.xml</groupId>
<artifactId>jaxrpc-api</artifactId>
</dependency>
@@ -41,7 +51,7 @@
<configuration>
<archive>
<manifestEntries>
- <Class-Path>jbossws-spi.jar jbossws-common.jar jbossws-framework.jar jbossws-native-core.jar jbossws-native-factories.jar jaxrpc-api.jar jaxws-api.jar jsr181-api.jar saaj-api.jar activation.jar commons-logging.jar concurrent.jar javassist.jar jaxb-api.jar jaxb-impl.jar mail.jar jboss-logging-spi.jar jboss-logging-log4j.jar jcl-over-slf4j.jar slf4j-api.jar slf4j-jboss-logging.jar jbosssx-client.jar jboss-javaee.jar jboss-xml-binding.jar jbossxb.jar netty.jar policy.jar stax-api.jar wsdl4j.jar</Class-Path>
+ <Class-Path>jbossws-spi.jar jbossws-common.jar jbossws-framework.jar jbossws-native-core.jar jbossws-native-factories.jar jbossws-native-services.jar jaxrpc-api.jar jaxws-api.jar jsr181-api.jar saaj-api.jar activation.jar commons-logging.jar concurrent.jar javassist.jar jaxb-api.jar jaxb-impl.jar mail.jar jboss-logging-spi.jar jboss-logging-log4j.jar jcl-over-slf4j.jar slf4j-api.jar slf4j-jboss-logging.jar jbosssx-client.jar jboss-javaee.jar jboss-xml-binding.jar jbossxb.jar netty.jar policy.jar stax-api.jar wsdl4j.jar</Class-Path>
</manifestEntries>
</archive>
</configuration>
Deleted: stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +0,0 @@
-org.jboss.wsf.framework.deployment.ArchiveDeploymentModelFactory
\ No newline at end of file
Deleted: stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +0,0 @@
-org.jboss.ws.core.jaxws.spi.http.NettyHttpServerFactory
\ No newline at end of file
Deleted: stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +0,0 @@
-org.jboss.ws.core.jaxws.spi.http.NettyInvocationHandlerFactory
\ No newline at end of file
Deleted: stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.EndpointRegistryFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.EndpointRegistryFactory 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.EndpointRegistryFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +0,0 @@
-org.jboss.ws.core.jaxws.spi.http.NettyEndpointRegistryFactory
\ No newline at end of file
Deleted: stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.ServerConfigFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.ServerConfigFactory 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/client/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.ServerConfigFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +0,0 @@
-org.jboss.ws.core.jaxws.spi.http.NettyHttpServerConfigFactory
\ No newline at end of file
Deleted: stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.common.addressing.MAPBuilderFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.common.addressing.MAPBuilderFactory 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.common.addressing.MAPBuilderFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +0,0 @@
-org.jboss.ws.extensions.addressing.map.NativeMAPBuilderFactory
\ No newline at end of file
Deleted: stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.DeploymentAspectManagerLocator
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.DeploymentAspectManagerLocator 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.DeploymentAspectManagerLocator 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +0,0 @@
-org.jboss.wsf.framework.DeploymentAspectManagerLocatorImpl
\ No newline at end of file
Deleted: stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.RequestHandlerFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.RequestHandlerFactory 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.RequestHandlerFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +0,0 @@
-org.jboss.wsf.stack.jbws.RequestHandlerFactoryImpl
\ No newline at end of file
Deleted: stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.WebServiceContextFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.WebServiceContextFactory 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.WebServiceContextFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +0,0 @@
-org.jboss.wsf.stack.jbws.WebServiceContextFactoryImpl
\ No newline at end of file
Deleted: stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.StackConfigFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.StackConfigFactory 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.StackConfigFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +0,0 @@
-org.jboss.wsf.stack.jbws.NativeStackConfigFactory
\ No newline at end of file
Deleted: stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.serviceref.ServiceRefBinderFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.serviceref.ServiceRefBinderFactory 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/core/src/main/resources/META-INF/services/org.jboss.wsf.spi.serviceref.ServiceRefBinderFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +0,0 @@
-org.jboss.ws.core.client.ServiceRefBinderFactoryImpl
\ No newline at end of file
Modified: stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsconsume.bat
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsconsume.bat 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsconsume.bat 2010-02-08 00:14:14 UTC (rev 11543)
@@ -55,6 +55,7 @@
set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jbossxb.jar
set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-client.jar
set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-core.jar
+set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-services.jar
set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jaxrpc-api.jar
set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/saaj-api.jar
Modified: stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsconsume.sh
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsconsume.sh 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsconsume.sh 2010-02-08 00:14:14 UTC (rev 11543)
@@ -79,6 +79,7 @@
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$JBOSS_HOME/client/jbossxb.jar"
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$JBOSS_HOME/client/jbossws-native-client.jar"
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$JBOSS_HOME/client/jbossws-native-core.jar"
+WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$JBOSS_HOME/client/jbossws-native-services.jar"
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$JBOSS_HOME/client/jaxrpc-api.jar"
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$JBOSS_HOME/client/saaj-api.jar"
Modified: stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsprovide.bat
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsprovide.bat 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsprovide.bat 2010-02-08 00:14:14 UTC (rev 11543)
@@ -53,6 +53,7 @@
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/jbossall-client.jar
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-client.jar
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-core.jar
+set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-services.jar
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/jaxrpc-api.jar
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/saaj-api.jar
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/policy.jar
Modified: stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsprovide.sh
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsprovide.sh 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsprovide.sh 2010-02-08 00:14:14 UTC (rev 11543)
@@ -77,6 +77,7 @@
WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$JBOSS_HOME/client/jbossall-client.jar"
WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$JBOSS_HOME/client/jbossws-native-client.jar"
WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$JBOSS_HOME/client/jbossws-native-core.jar"
+WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$JBOSS_HOME/client/jbossws-native-services.jar"
WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$JBOSS_HOME/client/jaxrpc-api.jar"
WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$JBOSS_HOME/client/saaj-api.jar"
WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$JBOSS_HOME/client/policy.jar"
Modified: stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsrunclient.bat
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsrunclient.bat 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsrunclient.bat 2010-02-08 00:14:14 UTC (rev 11543)
@@ -55,6 +55,7 @@
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/jbossws-common.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-client.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-core.jar
+set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-services.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/jaxrpc-api.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/saaj-api.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/jbossws-spi.jar
Modified: stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsrunclient.sh
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsrunclient.sh 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/bin/wsrunclient.sh 2010-02-08 00:14:14 UTC (rev 11543)
@@ -75,6 +75,7 @@
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/jbossws-common.jar"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/jbossws-native-client.jar"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/jbossws-native-core.jar"
+WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/jbossws-native-services.jar"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/jaxrpc-api.jar"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/saaj-api.jar"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/jbossws-spi.jar"
Modified: stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/all-deploy.conf
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/all-deploy.conf 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/all-deploy.conf 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +1 @@
-bin/wsconsume.bat bin/wsconsume.sh bin/wsprovide.bat bin/wsprovide.sh bin/wsrunclient.bat bin/wsrunclient.sh bin/wstools.bat bin/wstools.sh client/jettison.jar client/jaxb-api.jar client/FastInfoset.jar client/commons-beanutils.jar client/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jbossws-native-jaxrpc.jar client/jaxrpc-api.jar client/jbossws-native-jaxws.jar client/jbossws-native-factories.jar client/jaxws-api.jar client/jsr181-api.jar client/jbossws-native-saaj.jar client/saaj-api.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/netty.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jaxrpc-api.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-factories.jar common/lib/jaxws-api.jar common/lib/jsr181-!
api.jar common/lib/jbossws-native-saaj.jar common/lib/saaj-api.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar common/lib/commons-beanutils.jar lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar server/all/deploy/jbossws.sar server/all/deploy/jbossws-console.war server/all/deploy/juddi-service.sar server/all/deployers/jbossws.deployer/FastInfoset.jar server/all/deployers/jbossws.deployer/jboss-jaxb-intros.jar server/all/deployers/jbossws.deployer/jbossws-native-core.jar server/all/deployers/jbossws.deployer/jettison.jar server/all/deployers/jbossws.deployer/netty.jar server/all/deployers/jbossws.deployer/policy.jar server/all/deployers/jbossws.deployer/wsdl4j.jar server/all/deployers/jbossws.deployer/xmlsec.jar server/all/deployers/jbossws.deployer/META-INF/jboss-beans.xml server/all/deployers/jbossws.deployer/META-INF/jbossws-deployer-jboss-beans.xml server/all/deployers/jbossws.deployer/META-INF/jbossws-container-jboss-be!
ans.xml server/all/deployers/jbossws.deployer/META-INF/standar!
d-*-conf
ig.xml
+bin/wsconsume.bat bin/wsconsume.sh bin/wsprovide.bat bin/wsprovide.sh bin/wsrunclient.bat bin/wsrunclient.sh bin/wstools.bat bin/wstools.sh client/jettison.jar client/jaxb-api.jar client/FastInfoset.jar client/commons-beanutils.jar client/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jbossws-native-jaxrpc.jar client/jaxrpc-api.jar client/jbossws-native-jaxws.jar client/jbossws-native-factories.jar client/jaxws-api.jar client/jsr181-api.jar client/jbossws-native-saaj.jar client/saaj-api.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-native-services.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/netty.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jaxrpc-api.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-factories.jar common/l!
ib/jaxws-api.jar common/lib/jsr181-api.jar common/lib/jbossws-native-saaj.jar common/lib/saaj-api.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar common/lib/commons-beanutils.jar lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar server/all/deploy/jbossws.sar server/all/deploy/jbossws-console.war server/all/deploy/juddi-service.sar server/all/deployers/jbossws.deployer/FastInfoset.jar server/all/deployers/jbossws.deployer/jboss-jaxb-intros.jar server/all/deployers/jbossws.deployer/jbossws-native-core.jar server/all/deployers/jbossws.deployer/jbossws-native-services.jar server/all/deployers/jbossws.deployer/jettison.jar server/all/deployers/jbossws.deployer/netty.jar server/all/deployers/jbossws.deployer/policy.jar server/all/deployers/jbossws.deployer/wsdl4j.jar server/all/deployers/jbossws.deployer/xmlsec.jar server/all/deployers/jbossws.deployer/META-INF/jboss-beans.xml server/all/deployers/jbossws.deployer/META-INF/jboss!
ws-deployer-jboss-beans.xml server/all/deployers/jbossws.deplo!
yer/META
-INF/jbossws-container-jboss-beans.xml server/all/deployers/jbossws.deployer/META-INF/standard-*-config.xml
Modified: stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/default-deploy.conf
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/default-deploy.conf 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/default-deploy.conf 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +1 @@
-bin/wsconsume.bat bin/wsconsume.sh bin/wsprovide.bat bin/wsprovide.sh bin/wsrunclient.bat bin/wsrunclient.sh bin/wstools.bat bin/wstools.sh client/jettison.jar client/jaxb-api.jar client/FastInfoset.jar client/commons-beanutils.jar client/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jbossws-native-jaxrpc.jar client/jaxrpc-api.jar client/jbossws-native-jaxws.jar client/jbossws-native-factories.jar client/jaxws-api.jar client/jsr181-api.jar client/jbossws-native-saaj.jar client/saaj-api.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/netty.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jaxrpc-api.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-factories.jar common/lib/jaxws-api.jar common/lib/jsr181-!
api.jar common/lib/jbossws-native-saaj.jar common/lib/saaj-api.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar common/lib/commons-beanutils.jar lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar server/default/deploy/jbossws.sar server/default/deploy/jbossws-console.war server/default/deploy/juddi-service.sar server/default/deployers/jbossws.deployer/FastInfoset.jar server/default/deployers/jbossws.deployer/jboss-jaxb-intros.jar server/default/deployers/jbossws.deployer/jbossws-native-core.jar server/default/deployers/jbossws.deployer/jettison.jar server/default/deployers/jbossws.deployer/netty.jar server/default/deployers/jbossws.deployer/policy.jar server/default/deployers/jbossws.deployer/wsdl4j.jar server/default/deployers/jbossws.deployer/xmlsec.jar server/default/deployers/jbossws.deployer/META-INF/jboss-beans.xml server/default/deployers/jbossws.deployer/META-INF/jbossws-deployer-jboss-beans.xml server/default/deploy!
ers/jbossws.deployer/META-INF/jbossws-container-jboss-beans.xm!
l server
/default/deployers/jbossws.deployer/META-INF/standard-*-config.xml
+bin/wsconsume.bat bin/wsconsume.sh bin/wsprovide.bat bin/wsprovide.sh bin/wsrunclient.bat bin/wsrunclient.sh bin/wstools.bat bin/wstools.sh client/jettison.jar client/jaxb-api.jar client/FastInfoset.jar client/commons-beanutils.jar client/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jbossws-native-jaxrpc.jar client/jaxrpc-api.jar client/jbossws-native-jaxws.jar client/jbossws-native-factories.jar client/jaxws-api.jar client/jsr181-api.jar client/jbossws-native-saaj.jar client/saaj-api.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-native-services.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/netty.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jaxrpc-api.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-factories.jar common/l!
ib/jaxws-api.jar common/lib/jsr181-api.jar common/lib/jbossws-native-saaj.jar common/lib/saaj-api.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar common/lib/commons-beanutils.jar lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar server/default/deploy/jbossws.sar server/default/deploy/jbossws-console.war server/default/deploy/juddi-service.sar server/default/deployers/jbossws.deployer/FastInfoset.jar server/default/deployers/jbossws.deployer/jboss-jaxb-intros.jar server/default/deployers/jbossws.deployer/jbossws-native-core.jar server/default/deployers/jbossws.deployer/jbossws-native-services.jar server/default/deployers/jbossws.deployer/jettison.jar server/default/deployers/jbossws.deployer/netty.jar server/default/deployers/jbossws.deployer/policy.jar server/default/deployers/jbossws.deployer/wsdl4j.jar server/default/deployers/jbossws.deployer/xmlsec.jar server/default/deployers/jbossws.deployer/META-INF/jboss-beans.xml !
server/default/deployers/jbossws.deployer/META-INF/jbossws-dep!
loyer-jb
oss-beans.xml server/default/deployers/jbossws.deployer/META-INF/jbossws-container-jboss-beans.xml server/default/deployers/jbossws.deployer/META-INF/standard-*-config.xml
Modified: stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2010-02-08 00:14:14 UTC (rev 11543)
@@ -40,6 +40,7 @@
<include name="**/jbossws-native-client.jar"/>
<include name="**/jbossws-native-core.jar"/>
<include name="**/jbossws-native-factories.jar"/>
+ <include name="**/jbossws-native-services.jar"/>
<include name="**/jbossws-spi.jar"/>
<include name="**/jaxrpc-api.jar"/>
<include name="**/saaj-api.jar"/>
@@ -79,6 +80,7 @@
<include name="**/FastInfoset.jar"/>
<include name="**/jboss-jaxb-intros.jar"/>
<include name="**/jbossws-native-core.jar"/>
+ <include name="**/jbossws-native-services.jar"/>
<include name="**/jettison.jar"/>
<include name="**/netty.jar"/>
<include name="**/policy.jar"/>
Modified: stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/standard-deploy.conf
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/standard-deploy.conf 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/modules/resources/src/main/resources/resources/standard-deploy.conf 2010-02-08 00:14:14 UTC (rev 11543)
@@ -1 +1 @@
-bin/wsconsume.bat bin/wsconsume.sh bin/wsprovide.bat bin/wsprovide.sh bin/wsrunclient.bat bin/wsrunclient.sh bin/wstools.bat bin/wstools.sh client/jettison.jar client/jaxb-api.jar client/FastInfoset.jar client/commons-beanutils.jar client/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jbossws-native-jaxrpc.jar client/jaxrpc-api.jar client/jbossws-native-jaxws.jar client/jbossws-native-factories.jar client/jaxws-api.jar client/jsr181-api.jar client/jbossws-native-saaj.jar client/saaj-api.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/netty.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jaxrpc-api.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-factories.jar common/lib/jaxws-api.jar common/lib/jsr181-!
api.jar common/lib/jbossws-native-saaj.jar common/lib/saaj-api.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar common/lib/commons-beanutils.jar lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar server/standard/deploy/jbossws.sar server/standard/deploy/jbossws-console.war server/standard/deploy/juddi-service.sar server/standard/deployers/jbossws.deployer/FastInfoset.jar server/standard/deployers/jbossws.deployer/jboss-jaxb-intros.jar server/standard/deployers/jbossws.deployer/jbossws-native-core.jar server/standard/deployers/jbossws.deployer/jettison.jar server/standard/deployers/jbossws.deployer/netty.jar server/standard/deployers/jbossws.deployer/policy.jar server/standard/deployers/jbossws.deployer/wsdl4j.jar server/standard/deployers/jbossws.deployer/xmlsec.jar server/standard/deployers/jbossws.deployer/META-INF/jboss-beans.xml server/standard/deployers/jbossws.deployer/META-INF/jbossws-deployer-jboss-beans.xml server/s!
tandard/deployers/jbossws.deployer/META-INF/jbossws-container-!
jboss-be
ans.xml server/standard/deployers/jbossws.deployer/META-INF/standard-*-config.xml
+bin/wsconsume.bat bin/wsconsume.sh bin/wsprovide.bat bin/wsprovide.sh bin/wsrunclient.bat bin/wsrunclient.sh bin/wstools.bat bin/wstools.sh client/jettison.jar client/jaxb-api.jar client/FastInfoset.jar client/commons-beanutils.jar client/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jbossws-native-jaxrpc.jar client/jaxrpc-api.jar client/jbossws-native-jaxws.jar client/jbossws-native-factories.jar client/jaxws-api.jar client/jsr181-api.jar client/jbossws-native-saaj.jar client/saaj-api.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-native-services.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/netty.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jaxrpc-api.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-factories.jar common/l!
ib/jaxws-api.jar common/lib/jsr181-api.jar common/lib/jbossws-native-saaj.jar common/lib/saaj-api.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar common/lib/commons-beanutils.jar lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar server/standard/deploy/jbossws.sar server/standard/deploy/jbossws-console.war server/standard/deploy/juddi-service.sar server/standard/deployers/jbossws.deployer/FastInfoset.jar server/standard/deployers/jbossws.deployer/jboss-jaxb-intros.jar server/standard/deployers/jbossws.deployer/jbossws-native-core.jar server/standard/deployers/jbossws.deployer/jbossws-native-services.jar server/standard/deployers/jbossws.deployer/jettison.jar server/standard/deployers/jbossws.deployer/netty.jar server/standard/deployers/jbossws.deployer/policy.jar server/standard/deployers/jbossws.deployer/wsdl4j.jar server/standard/deployers/jbossws.deployer/xmlsec.jar server/standard/deployers/jbossws.deployer/META-INF/jbo!
ss-beans.xml server/standard/deployers/jbossws.deployer/META-I!
NF/jboss
ws-deployer-jboss-beans.xml server/standard/deployers/jbossws.deployer/META-INF/jbossws-container-jboss-beans.xml server/standard/deployers/jbossws.deployer/META-INF/standard-*-config.xml
Added: stack/native/branches/jaxrpc-cxf/modules/services/pom.xml
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/services/pom.xml (rev 0)
+++ stack/native/branches/jaxrpc-cxf/modules/services/pom.xml 2010-02-08 00:14:14 UTC (rev 11543)
@@ -0,0 +1,16 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <name>JBoss Web Services - Framework services configuration</name>
+ <artifactId>jbossws-native-services</artifactId>
+ <packaging>jar</packaging>
+
+ <!-- Parent -->
+ <parent>
+ <groupId>org.jboss.ws.native</groupId>
+ <artifactId>jbossws-native</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+
+</project>
Property changes on: stack/native/branches/jaxrpc-cxf/modules/services/pom.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.common.addressing.MAPBuilderFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.common.addressing.MAPBuilderFactory (rev 0)
+++ stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.common.addressing.MAPBuilderFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -0,0 +1 @@
+org.jboss.ws.extensions.addressing.map.NativeMAPBuilderFactory
\ No newline at end of file
Added: stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.DeploymentAspectManagerLocator
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.DeploymentAspectManagerLocator (rev 0)
+++ stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.DeploymentAspectManagerLocator 2010-02-08 00:14:14 UTC (rev 11543)
@@ -0,0 +1 @@
+org.jboss.wsf.framework.DeploymentAspectManagerLocatorImpl
\ No newline at end of file
Added: stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory (rev 0)
+++ stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.deployment.DeploymentModelFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -0,0 +1 @@
+org.jboss.wsf.framework.deployment.ArchiveDeploymentModelFactory
\ No newline at end of file
Added: stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory (rev 0)
+++ stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.http.HttpServerFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -0,0 +1 @@
+org.jboss.ws.core.jaxws.spi.http.NettyHttpServerFactory
\ No newline at end of file
Added: stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory (rev 0)
+++ stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.InvocationHandlerFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -0,0 +1 @@
+org.jboss.ws.core.jaxws.spi.http.NettyInvocationHandlerFactory
\ No newline at end of file
Added: stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.RequestHandlerFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.RequestHandlerFactory (rev 0)
+++ stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.RequestHandlerFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -0,0 +1 @@
+org.jboss.wsf.stack.jbws.RequestHandlerFactoryImpl
\ No newline at end of file
Added: stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.WebServiceContextFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.WebServiceContextFactory (rev 0)
+++ stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.invocation.WebServiceContextFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -0,0 +1 @@
+org.jboss.wsf.stack.jbws.WebServiceContextFactoryImpl
\ No newline at end of file
Added: stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.EndpointRegistryFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.EndpointRegistryFactory (rev 0)
+++ stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.EndpointRegistryFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -0,0 +1 @@
+org.jboss.ws.core.jaxws.spi.http.NettyEndpointRegistryFactory
\ No newline at end of file
Added: stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.ServerConfigFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.ServerConfigFactory (rev 0)
+++ stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.ServerConfigFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -0,0 +1 @@
+org.jboss.ws.core.jaxws.spi.http.NettyHttpServerConfigFactory
\ No newline at end of file
Added: stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.StackConfigFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.StackConfigFactory (rev 0)
+++ stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.management.StackConfigFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -0,0 +1 @@
+org.jboss.wsf.stack.jbws.NativeStackConfigFactory
\ No newline at end of file
Added: stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.serviceref.ServiceRefBinderFactory
===================================================================
--- stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.serviceref.ServiceRefBinderFactory (rev 0)
+++ stack/native/branches/jaxrpc-cxf/modules/services/src/main/resources/META-INF/services/org.jboss.wsf.spi.serviceref.ServiceRefBinderFactory 2010-02-08 00:14:14 UTC (rev 11543)
@@ -0,0 +1 @@
+org.jboss.ws.core.client.ServiceRefBinderFactoryImpl
\ No newline at end of file
Modified: stack/native/branches/jaxrpc-cxf/pom.xml
===================================================================
--- stack/native/branches/jaxrpc-cxf/pom.xml 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/pom.xml 2010-02-08 00:14:14 UTC (rev 11543)
@@ -40,6 +40,7 @@
<module>modules/client</module>
<module>modules/management</module>
<module>modules/resources</module>
+ <module>modules/services</module>
</modules>
<!-- Properties -->
Modified: stack/native/branches/jaxrpc-cxf/src/main/distro/build-project-gen.xml
===================================================================
--- stack/native/branches/jaxrpc-cxf/src/main/distro/build-project-gen.xml 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/src/main/distro/build-project-gen.xml 2010-02-08 00:14:14 UTC (rev 11543)
@@ -115,6 +115,7 @@
<pathelement location="${jboss.client}/saaj-api.jar"/>
<pathelement location="${jboss.client}/jbossws-native-factories.jar"/>
<pathelement location="${jboss.client}/jbossws-native-core.jar"/>
+ <pathelement location="${jboss.client}/jbossws-native-services.jar"/>
<pathelement location="${jboss.client}/jbossws-native-client.jar"/>
<path refid="integration.target.javac.classpath" />
</path>
Modified: stack/native/branches/jaxrpc-cxf/src/main/scripts/assembly-deploy-artifacts.xml
===================================================================
--- stack/native/branches/jaxrpc-cxf/src/main/scripts/assembly-deploy-artifacts.xml 2010-02-05 18:06:49 UTC (rev 11542)
+++ stack/native/branches/jaxrpc-cxf/src/main/scripts/assembly-deploy-artifacts.xml 2010-02-08 00:14:14 UTC (rev 11543)
@@ -17,6 +17,16 @@
<outputDirectory>lib</outputDirectory>
<outputFileNameMapping>${module.artifactId}.${module.extension}</outputFileNameMapping>
<unpack>false</unpack>
+ <dependencySets>
+ <dependencySet>
+ <outputFileNameMapping>${module.artifactId}.${module.extension}</outputFileNameMapping>
+ <useStrictFiltering>true</useStrictFiltering>
+ <includes>
+ <include>org.jboss.ws.native:jbossws-native-factories:jar</include>
+ <include>org.jboss.ws.native:jbossws-native-services:jar</include>
+ </includes>
+ </dependencySet>
+ </dependencySets>
</binaries>
</moduleSet>
<moduleSet>
@@ -44,7 +54,6 @@
<include>org.jboss.ws:jbossws-common:jar</include>
<include>org.jboss.ws:jbossws-spi:jar</include>
<include>javax.xml:jaxrpc-api:jar</include>
- <include>org.jboss.ws.native:jbossws-native-factories:jar</include>
<include>javax.xml.soap:saaj-api:jar</include>
<include>org.codehaus.jettison:jettison:jar</include>
<include>wscommons-policy:policy:jar</include>
14 years, 10 months
JBossWS SVN: r11542 - common/branches/jaxrpc-cxf/src/main/java/org/jboss/ws/core/utils.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-02-05 13:06:49 -0500 (Fri, 05 Feb 2010)
New Revision: 11542
Modified:
common/branches/jaxrpc-cxf/src/main/java/org/jboss/ws/core/utils/JBossWSEntityResolver.java
Log:
[JBWS-2895] Use TCCL instead when looking for the jbossws entity prop file
Modified: common/branches/jaxrpc-cxf/src/main/java/org/jboss/ws/core/utils/JBossWSEntityResolver.java
===================================================================
--- common/branches/jaxrpc-cxf/src/main/java/org/jboss/ws/core/utils/JBossWSEntityResolver.java 2010-02-05 12:43:27 UTC (rev 11541)
+++ common/branches/jaxrpc-cxf/src/main/java/org/jboss/ws/core/utils/JBossWSEntityResolver.java 2010-02-05 18:06:49 UTC (rev 11542)
@@ -66,7 +66,7 @@
super();
Properties props = null;
- ClassLoader loader = this.getClass().getClassLoader();
+ ClassLoader loader = Thread.currentThread().getContextClassLoader(); //TODO Use SecurityAction!!
Map<String, Properties> map = propertiesMap.get(loader);
if (map != null && map.containsKey(entitiesResource))
{
@@ -80,7 +80,7 @@
propertiesMap.put(loader, map);
}
// load entities
- props = loadEntitiesMappingFromClasspath(entitiesResource);
+ props = loadEntitiesMappingFromClasspath(entitiesResource, loader);
if (props.size() == 0)
throw new IllegalArgumentException("No entities mapping defined in resource file: " + entitiesResource);
map.put(entitiesResource, props);
@@ -97,13 +97,13 @@
}
}
- private Properties loadEntitiesMappingFromClasspath(final String entitiesResource)
+ private Properties loadEntitiesMappingFromClasspath(final String entitiesResource, final ClassLoader classLoader)
{
return AccessController.doPrivileged(new PrivilegedAction<Properties>()
{
public Properties run()
{
- InputStream is = this.getClass().getClassLoader().getResourceAsStream(entitiesResource);
+ InputStream is = classLoader.getResourceAsStream(entitiesResource);
// get stream
if (is == null)
throw new IllegalArgumentException("Resource " + entitiesResource + " not found");
14 years, 10 months
JBossWS SVN: r11541 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/eventing/mgmt.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-02-05 07:43:27 -0500 (Fri, 05 Feb 2010)
New Revision: 11541
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/eventing/mgmt/Subscription.java
Log:
[JBWS-2919] removing dependency on xalan impl classes - using transform API
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/eventing/mgmt/Subscription.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/eventing/mgmt/Subscription.java 2010-02-05 11:18:52 UTC (rev 11540)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/extensions/eventing/mgmt/Subscription.java 2010-02-05 12:43:27 UTC (rev 11541)
@@ -30,10 +30,11 @@
import javax.xml.bind.JAXBElement;
import javax.xml.soap.MessageFactory;
import javax.xml.soap.SOAPMessage;
-import javax.xml.transform.TransformerException;
+import javax.xml.xpath.XPath;
+import javax.xml.xpath.XPathConstants;
+import javax.xml.xpath.XPathExpressionException;
+import javax.xml.xpath.XPathFactory;
-import org.apache.xpath.XPathAPI;
-import org.apache.xpath.objects.XObject;
import org.jboss.logging.Logger;
import org.jboss.ws.core.soap.SOAPConnectionImpl;
import org.jboss.ws.extensions.eventing.EventingConstants;
@@ -112,17 +113,16 @@
public boolean accepts(Element event)
{
-
boolean b = true;
if (filter != null)
{
try
{
- XObject o = XPathAPI.eval(event, filter.getExpression());
- b = o.bool();
+ XPath xpath = XPathFactory.newInstance().newXPath();
+ b = (Boolean)xpath.evaluate(filter.getExpression(), event, XPathConstants.BOOLEAN);
}
- catch (TransformerException e)
+ catch (XPathExpressionException e)
{
log.error("Failed to evalute xpath expression", e);
}
14 years, 10 months
JBossWS SVN: r11540 - in stack/native/trunk/modules/testsuite/native-tests: src/test/java/org/jboss/test/ws/jaxws/samples/dar and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-02-05 06:18:52 -0500 (Fri, 05 Feb 2010)
New Revision: 11540
Added:
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/dar/XMLGregorianCalendarHelper.java
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/XMLGregorianCalendarHelper.java
Modified:
stack/native/trunk/modules/testsuite/native-tests/scripts/build-samples-jaxws.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/dar/ClientHelper.java
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/dar/ReplyConverter.java
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/Agency.java
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/Printer.java
Log:
[JBWS-2918] providing XMLGregorianCalendarHelper class to don't use Sun JDK implementation classes (using proper API)
Modified: stack/native/trunk/modules/testsuite/native-tests/scripts/build-samples-jaxws.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/scripts/build-samples-jaxws.xml 2010-02-05 10:11:16 UTC (rev 11539)
+++ stack/native/trunk/modules/testsuite/native-tests/scripts/build-samples-jaxws.xml 2010-02-05 11:18:52 UTC (rev 11540)
@@ -36,6 +36,7 @@
<fileset dir="${tests.output.dir}/test-classes">
<include name="org/jboss/test/ws/jaxws/samples/dar/generated/*.class"/>
<include name="org/jboss/test/ws/jaxws/samples/dar/ClientHelper.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/dar/XMLGregorianCalendarHelper.class"/>
<include name="org/jboss/test/ws/jaxws/samples/dar/Client.class"/>
</fileset>
</jar>
@@ -49,6 +50,7 @@
<include name="org/jboss/test/ws/jaxws/samples/dar/DarRequest.class"/>
<include name="org/jboss/test/ws/jaxws/samples/dar/DarResponse.class"/>
<include name="org/jboss/test/ws/jaxws/samples/dar/ReplyConverter.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/dar/XMLGregorianCalendarHelper.class"/>
<include name="org/jboss/test/ws/jaxws/samples/dar/Route.class"/>
<include name="org/jboss/test/ws/jaxws/samples/dar/ServiceRequest.class"/>
<include name="org/jboss/test/ws/jaxws/samples/dar/Stop.class"/>
@@ -62,6 +64,7 @@
<fileset dir="${tests.output.dir}/test-classes">
<include name="org/jboss/test/ws/jaxws/samples/dar/generated/*.class"/>
<include name="org/jboss/test/ws/jaxws/samples/dar/ClientHelper.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/dar/XMLGregorianCalendarHelper.class"/>
<include name="org/jboss/test/ws/jaxws/samples/dar/AddressingClient.class"/>
</fileset>
</jar>
@@ -92,6 +95,7 @@
<classes dir="${tests.output.dir}/test-classes">
<include name="org/jboss/test/ws/jaxws/samples/dar/generated/*.class"/>
<include name="org/jboss/test/ws/jaxws/samples/dar/ClientHelper.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/dar/XMLGregorianCalendarHelper.class"/>
<include name="org/jboss/test/ws/jaxws/samples/dar/JMSClient.class"/>
</classes>
<webinf dir="${tests.output.dir}/test-resources/jaxws/samples/dar/WEB-INF-jms">
@@ -161,12 +165,14 @@
<fileset dir="${tests.output.dir}/test-classes">
<include name="org/jboss/test/ws/jaxws/samples/news/generated/agency/*.class"/>
<include name="org/jboss/test/ws/jaxws/samples/news/Agency.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/news/XMLGregorianCalendarHelper.class"/>
</fileset>
</jar>
<jar jarfile="${tests.output.dir}/test-libs/jaxws-samples-news-step1-printer.jar">
<fileset dir="${tests.output.dir}/test-classes">
<include name="org/jboss/test/ws/jaxws/samples/news/generated/printer/**/*.class"/>
<include name="org/jboss/test/ws/jaxws/samples/news/Printer.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/news/XMLGregorianCalendarHelper.class"/>
</fileset>
</jar>
<jar jarfile="${tests.output.dir}/test-libs/jaxws-samples-news-step2-newspaper.jar">
@@ -194,6 +200,7 @@
<fileset dir="${tests.output.dir}/test-classes">
<include name="org/jboss/test/ws/jaxws/samples/news/generated/agency/*.class"/>
<include name="org/jboss/test/ws/jaxws/samples/news/Agency.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/news/XMLGregorianCalendarHelper.class"/>
<include name="org/jboss/test/ws/jaxws/samples/news/SecureAgency.class"/>
</fileset>
<metainf dir="${tests.output.dir}/test-resources/jaxws/samples/news/META-INF">
@@ -206,6 +213,7 @@
<fileset dir="${tests.output.dir}/test-classes">
<include name="org/jboss/test/ws/jaxws/samples/news/generated/printer/**/*.class"/>
<include name="org/jboss/test/ws/jaxws/samples/news/Printer.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/news/XMLGregorianCalendarHelper.class"/>
<include name="org/jboss/test/ws/jaxws/samples/news/SecurePrinter.class"/>
</fileset>
</jar>
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/dar/ClientHelper.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/dar/ClientHelper.java 2010-02-05 10:11:16 UTC (rev 11539)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/dar/ClientHelper.java 2010-02-05 11:18:52 UTC (rev 11540)
@@ -34,8 +34,6 @@
import org.jboss.test.ws.jaxws.samples.dar.generated.ServiceRequest;
import org.jboss.test.ws.jaxws.samples.dar.generated.Stop;
-import com.sun.org.apache.xerces.internal.jaxp.datatype.XMLGregorianCalendarImpl;
-
public class ClientHelper
{
public static void setUsernamePassword(BindingProvider bp, String username, String password)
@@ -53,10 +51,10 @@
ServiceRequest serviceRequest = new ServiceRequest();
Stop up = new Stop();
up.setNode(new Double(Math.random()*1000).intValue());
- up.setTime(new XMLGregorianCalendarImpl(new GregorianCalendar()));
+ up.setTime(XMLGregorianCalendarHelper.convert(new GregorianCalendar()));
Stop down = new Stop();
down.setNode(new Double(Math.random()*1000).intValue());
- down.setTime(new XMLGregorianCalendarImpl(new GregorianCalendar()));
+ down.setTime(XMLGregorianCalendarHelper.convert(new GregorianCalendar()));
serviceRequest.setFrom(up);
serviceRequest.setTo(down);
serviceRequest.setPeople(new Double(Math.random()*3).intValue()+1);
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/dar/ReplyConverter.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/dar/ReplyConverter.java 2010-02-05 10:11:16 UTC (rev 11539)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/dar/ReplyConverter.java 2010-02-05 11:18:52 UTC (rev 11540)
@@ -23,7 +23,8 @@
import java.util.GregorianCalendar;
-import com.sun.org.apache.xerces.internal.jaxp.datatype.XMLGregorianCalendarImpl;
+import javax.xml.datatype.DatatypeConfigurationException;
+import javax.xml.datatype.DatatypeFactory;
public class ReplyConverter
{
@@ -76,7 +77,7 @@
s.setNode(stop.getNode());
GregorianCalendar cal = new GregorianCalendar();
cal.setTime(stop.getTime());
- s.setTime(new XMLGregorianCalendarImpl(cal));
+ s.setTime(XMLGregorianCalendarHelper.convert(cal));
return s;
}
}
Added: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/dar/XMLGregorianCalendarHelper.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/dar/XMLGregorianCalendarHelper.java (rev 0)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/dar/XMLGregorianCalendarHelper.java 2010-02-05 11:18:52 UTC (rev 11540)
@@ -0,0 +1,52 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.test.ws.jaxws.samples.dar;
+
+import java.util.GregorianCalendar;
+
+import javax.xml.datatype.DatatypeFactory;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+/**
+ * Helper class translating GregorianCalendar instances to XMLGregorianCalendar instances.
+ *
+ * @author <a href="mailto:ropalka@redhat.com">Richard Opalka</a>
+ */
+public final class XMLGregorianCalendarHelper
+{
+ private XMLGregorianCalendarHelper()
+ {
+ // forbidden inheritance
+ }
+
+ public static XMLGregorianCalendar convert(final GregorianCalendar cal)
+ {
+ try
+ {
+ return DatatypeFactory.newInstance().newXMLGregorianCalendar(cal);
+ }
+ catch (Exception e)
+ {
+ throw new RuntimeException(e);
+ }
+ }
+}
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/Agency.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/Agency.java 2010-02-05 10:11:16 UTC (rev 11539)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/Agency.java 2010-02-05 11:18:52 UTC (rev 11540)
@@ -26,12 +26,11 @@
import javax.xml.namespace.QName;
+import org.jboss.test.ws.jaxws.samples.dar.XMLGregorianCalendarHelper;
import org.jboss.test.ws.jaxws.samples.news.generated.agency.PressRelease;
import org.jboss.test.ws.jaxws.samples.news.generated.agency.PressReleaseEndpoint;
import org.jboss.test.ws.jaxws.samples.news.generated.agency.PressReleaseService;
-import com.sun.org.apache.xerces.internal.jaxp.datatype.XMLGregorianCalendarImpl;
-
/**
* The press agency client
*
@@ -55,7 +54,7 @@
pressRelease.setAgencyId("agency01");
pressRelease.setTitle(title);
pressRelease.setBody(body);
- pressRelease.setDate(new XMLGregorianCalendarImpl(new GregorianCalendar()));
+ pressRelease.setDate(XMLGregorianCalendarHelper.convert(new GregorianCalendar()));
endpoint.submitPressRelease(pressRelease);
}
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/Printer.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/Printer.java 2010-02-05 10:11:16 UTC (rev 11539)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/Printer.java 2010-02-05 11:18:52 UTC (rev 11540)
@@ -32,6 +32,7 @@
import javax.xml.ws.BindingProvider;
import javax.xml.ws.soap.SOAPBinding;
+import org.jboss.test.ws.jaxws.samples.dar.XMLGregorianCalendarHelper;
import org.jboss.test.ws.jaxws.samples.news.generated.printer.mtom.EditionMTOM;
import org.jboss.test.ws.jaxws.samples.news.generated.printer.mtom.NewspaperMTOMService;
import org.jboss.test.ws.jaxws.samples.news.generated.printer.mtom.NewspaperMTOMEndpoint;
@@ -39,8 +40,6 @@
import org.jboss.test.ws.jaxws.samples.news.generated.printer.swa.NewspaperSWAService;
import org.jboss.test.ws.jaxws.samples.news.generated.printer.swa.NewspaperSWAEndpoint;
-import com.sun.org.apache.xerces.internal.jaxp.datatype.XMLGregorianCalendarImpl;
-
/**
* The printer client
*
@@ -70,8 +69,8 @@
public void run() throws IOException
{
- XMLGregorianCalendar from = new XMLGregorianCalendarImpl(new GregorianCalendar(2008,1,10));
- XMLGregorianCalendar to = new XMLGregorianCalendarImpl(new GregorianCalendar(2008,1,14));
+ XMLGregorianCalendar from = XMLGregorianCalendarHelper.convert(new GregorianCalendar(2008,1,10));
+ XMLGregorianCalendar to = XMLGregorianCalendarHelper.convert(new GregorianCalendar(2008,1,14));
if (mtom)
{
((SOAPBinding)(((BindingProvider)mtomEndpoint).getBinding())).setMTOMEnabled(true);
Added: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/XMLGregorianCalendarHelper.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/XMLGregorianCalendarHelper.java (rev 0)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/XMLGregorianCalendarHelper.java 2010-02-05 11:18:52 UTC (rev 11540)
@@ -0,0 +1,52 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.test.ws.jaxws.samples.news;
+
+import java.util.GregorianCalendar;
+
+import javax.xml.datatype.DatatypeFactory;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+/**
+ * Helper class translating GregorianCalendar instances to XMLGregorianCalendar instances.
+ *
+ * @author <a href="mailto:ropalka@redhat.com">Richard Opalka</a>
+ */
+public final class XMLGregorianCalendarHelper
+{
+ private XMLGregorianCalendarHelper()
+ {
+ // forbidden inheritance
+ }
+
+ public static XMLGregorianCalendar convert(final GregorianCalendar cal)
+ {
+ try
+ {
+ return DatatypeFactory.newInstance().newXMLGregorianCalendar(cal);
+ }
+ catch (Exception e)
+ {
+ throw new RuntimeException(e);
+ }
+ }
+}
14 years, 10 months