JBossWS SVN: r12910 - framework/trunk/testsuite/test/java/org/jboss/test/ws/projectGenerator.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-09-06 11:04:44 -0400 (Mon, 06 Sep 2010)
New Revision: 12910
Modified:
framework/trunk/testsuite/test/java/org/jboss/test/ws/projectGenerator/ProjectGeneratorTestCase.java
Log:
[JBWS-2957] Fixing endpoint url address for ProjectGeneratorTestCase too
Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/projectGenerator/ProjectGeneratorTestCase.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/projectGenerator/ProjectGeneratorTestCase.java 2010-09-06 15:03:38 UTC (rev 12909)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/projectGenerator/ProjectGeneratorTestCase.java 2010-09-06 15:04:44 UTC (rev 12910)
@@ -51,7 +51,7 @@
private File binDistroDir;
private String projectName = "GeneratorTestProject";
- private String endpointURL = "http://" + getServerHost() + ":8080/" + projectName + "/EndpointImpl";
+ private String endpointURL = "http://" + getServerHost() + ":8080/" + projectName + "/EndpointService/EndpointImpl";
private String targetNS = "http://projectGenerator.ws.test.jboss.org/";
protected void setUp() throws Exception
14 years, 3 months
JBossWS SVN: r12909 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: sergeyb
Date: 2010-09-06 11:03:38 -0400 (Mon, 06 Sep 2010)
New Revision: 12909
Modified:
stack/cxf/trunk/modules/testsuite/test-excludes-jboss601.txt
Log:
[JBWS-2945] : Enabling EndpointReferenceBuilderTestCase for the AS trunk too
Modified: stack/cxf/trunk/modules/testsuite/test-excludes-jboss601.txt
===================================================================
--- stack/cxf/trunk/modules/testsuite/test-excludes-jboss601.txt 2010-09-06 14:50:54 UTC (rev 12908)
+++ stack/cxf/trunk/modules/testsuite/test-excludes-jboss601.txt 2010-09-06 15:03:38 UTC (rev 12909)
@@ -33,7 +33,6 @@
org/jboss/test/ws/jaxws/jbws2942/**
org/jboss/test/ws/jaxws/jbws3022/**
org/jboss/test/ws/jaxws/jbws3031/**
-org/jboss/test/ws/jaxws/endpointReference/EndpointReferenceBuilderTestCase.*
org/jboss/test/ws/jaxws/samples/addressing/AddressingStatefulTestCase.*
# [JBWS-2987] Review JMS integration
14 years, 3 months
JBossWS SVN: r12908 - framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2957.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-09-06 10:50:54 -0400 (Mon, 06 Sep 2010)
New Revision: 12908
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2957/JBWS2957TestCase.java
Removed:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2957/EjbInWarWebInfLib/
Log:
[JBWS-2957] Fixing testcase packaging
Added: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2957/JBWS2957TestCase.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2957/JBWS2957TestCase.java (rev 0)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws2957/JBWS2957TestCase.java 2010-09-06 14:50:54 UTC (rev 12908)
@@ -0,0 +1,57 @@
+/*
+ * 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.jbws2957;
+
+import java.net.URL;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+
+import junit.framework.Test;
+
+import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.wsf.test.JBossWSTestSetup;
+
+import org.jboss.test.ws.jaxws.jbws2957.common.HelloIface;
+
+/**
+ * [JBWS-2957] Tests EJB3 service in web inf lib directory.
+ *
+ * @author <a href="mailto:ropalka@redhat.com">Richard Opalka</a>
+ */
+public class JBWS2957TestCase extends JBossWSTest
+{
+ public static Test suite()
+ {
+ return new JBossWSTestSetup(JBWS2957TestCase.class, "jaxws-jbws2957-ejbinwarwebinflib.ear");
+ }
+
+ public void testEJB() throws Exception
+ {
+ URL wsdlURL = new URL("http://" + getServerHost() + ":8080/jaxws-jbws2957-ejbinwarwebinflib_web/Service/HelloImpl?wsdl");
+ QName serviceName = new QName("http://www.jboss.org/test/ws/jaxws/jbws2957", "Service");
+ Service.create(wsdlURL, serviceName);
+ Service service = Service.create(wsdlURL, serviceName);
+ HelloIface port = (HelloIface)service.getPort(HelloIface.class);
+ assertEquals("Hello", port.sayHello());
+ }
+}
14 years, 3 months
JBossWS SVN: r12907 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/wsaddressing.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-09-06 09:42:16 -0400 (Mon, 06 Sep 2010)
New Revision: 12907
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/wsaddressing/NativeEndpointReference.java
Log:
[JBWS-3119] fixing EndpointName WSA EPR serialization
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/wsaddressing/NativeEndpointReference.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/wsaddressing/NativeEndpointReference.java 2010-09-06 12:38:44 UTC (rev 12906)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/jaxws/wsaddressing/NativeEndpointReference.java 2010-09-06 13:42:16 UTC (rev 12907)
@@ -152,7 +152,11 @@
String endpointName = e.getAttribute(ENDPOINT_ATTRIBUTE);
if (endpointName != null)
{
- this.endpointName = this.getQName(e, endpointName);
+ this.endpointName = new QName(
+ this.serviceName.getNamespaceURI(),
+ endpointName,
+ this.serviceName.getPrefix()
+ );
}
}
if (e.getLocalName().equals(INTERFACE_QNAME.getLocalPart()))
@@ -341,7 +345,7 @@
{
if (this.endpointName != null && this.serviceNameElement != null)
{
- this.serviceNameElement.setAttribute(ENDPOINT_ATTRIBUTE, this.toString(this.endpointName));
+ this.serviceNameElement.setAttribute(ENDPOINT_ATTRIBUTE, this.endpointName.getLocalPart());
if (this.wsdlLocation != null)
{
14 years, 3 months
JBossWS SVN: r12906 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: sergeyb
Date: 2010-09-06 08:38:44 -0400 (Mon, 06 Sep 2010)
New Revision: 12906
Modified:
stack/cxf/trunk/modules/testsuite/test-excludes-jboss501.txt
stack/cxf/trunk/modules/testsuite/test-excludes-jboss510.txt
stack/cxf/trunk/modules/testsuite/test-excludes-jboss600.txt
Log:
[JBWS-2945] : Enabling EndpointReferenceBuilderTestCase and JBWS2937TestCase
Modified: stack/cxf/trunk/modules/testsuite/test-excludes-jboss501.txt
===================================================================
--- stack/cxf/trunk/modules/testsuite/test-excludes-jboss501.txt 2010-09-06 12:35:19 UTC (rev 12905)
+++ stack/cxf/trunk/modules/testsuite/test-excludes-jboss501.txt 2010-09-06 12:38:44 UTC (rev 12906)
@@ -31,9 +31,7 @@
# [JBWS-2917] We're using buggy xalan version causing namespaces issues
org/jboss/test/ws/jaxws/jbws2917/**
-org/jboss/test/ws/jaxws/jbws2937/**
org/jboss/test/ws/jaxws/jbws2942/**
-org/jboss/test/ws/jaxws/endpointReference/EndpointReferenceBuilderTestCase.*
# [JBWS-2895] JAX-RPC available from AS 6.0.0.M3
org/jboss/test/ws/jaxrpc/**
Modified: stack/cxf/trunk/modules/testsuite/test-excludes-jboss510.txt
===================================================================
--- stack/cxf/trunk/modules/testsuite/test-excludes-jboss510.txt 2010-09-06 12:35:19 UTC (rev 12905)
+++ stack/cxf/trunk/modules/testsuite/test-excludes-jboss510.txt 2010-09-06 12:38:44 UTC (rev 12906)
@@ -31,9 +31,7 @@
# [JBWS-2917] We're using buggy xalan version causing namespaces issues
org/jboss/test/ws/jaxws/jbws2917/**
-org/jboss/test/ws/jaxws/jbws2937/**
org/jboss/test/ws/jaxws/jbws2942/**
-org/jboss/test/ws/jaxws/endpointReference/EndpointReferenceBuilderTestCase.*
# [JBWS-2895] JAX-RPC available from AS 6.0.0.M3
org/jboss/test/ws/jaxrpc/**
Modified: stack/cxf/trunk/modules/testsuite/test-excludes-jboss600.txt
===================================================================
--- stack/cxf/trunk/modules/testsuite/test-excludes-jboss600.txt 2010-09-06 12:35:19 UTC (rev 12905)
+++ stack/cxf/trunk/modules/testsuite/test-excludes-jboss600.txt 2010-09-06 12:38:44 UTC (rev 12906)
@@ -30,11 +30,9 @@
org/jboss/test/ws/jaxws/jbws1797/**
# [JBWS-2945] JAX-WS 2.2 implementation not yet available for CXF stack
-org/jboss/test/ws/jaxws/jbws2937/**
org/jboss/test/ws/jaxws/jbws2942/**
org/jboss/test/ws/jaxws/jbws3022/**
org/jboss/test/ws/jaxws/jbws3031/**
-org/jboss/test/ws/jaxws/endpointReference/EndpointReferenceBuilderTestCase.*
org/jboss/test/ws/jaxws/samples/addressing/AddressingStatefulTestCase.*
# [JBWS-2987] Review JMS integration
14 years, 3 months
JBossWS SVN: r12905 - framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference.
by jbossws-commits@lists.jboss.org
Author: sergeyb
Date: 2010-09-06 08:35:19 -0400 (Mon, 06 Sep 2010)
New Revision: 12905
Modified:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference/EndpointReferenceBuilderTestCase.java
Log:
[JBWS-3119] Updating EndpointReferenceBuilderTestCase to assert that EndpointName attribute is unqualified
Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference/EndpointReferenceBuilderTestCase.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference/EndpointReferenceBuilderTestCase.java 2010-09-06 11:36:53 UTC (rev 12904)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpointReference/EndpointReferenceBuilderTestCase.java 2010-09-06 12:35:19 UTC (rev 12905)
@@ -126,7 +126,7 @@
assertEquals("wrong text content in ServiceName element", "myns:HelloService", DOMUtils.getTextContent(serviceNameElement));
String endpointNameValue = DOMUtils.getAttributeValue(serviceNameElement, "EndpointName");
assertNotNull("cannot find endpointName attribute value", endpointNameValue);
- assertEquals("wrong endpointName attribute value", endpointNameValue, "myns:HelloPort");
+ assertEquals("wrong endpointName attribute value", endpointNameValue, "HelloPort");
Element interfaceNameElement = (Element)DOMUtils.getFirstChildElement(metadataElement, WSAM_INTERFACE_QNAME);
assertNamespaces(interfaceNameElement);
assertEquals("wrong text content in InterfaceName element", "myns:Hello", DOMUtils.getTextContent(interfaceNameElement));
14 years, 3 months
JBossWS SVN: r12904 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: sergeyb
Date: 2010-09-06 07:36:53 -0400 (Mon, 06 Sep 2010)
New Revision: 12904
Modified:
stack/cxf/trunk/modules/testsuite/test-excludes-jboss601.txt
Log:
[JBWS-2945] : Enabling JBWS2937TestCase
Modified: stack/cxf/trunk/modules/testsuite/test-excludes-jboss601.txt
===================================================================
--- stack/cxf/trunk/modules/testsuite/test-excludes-jboss601.txt 2010-09-03 19:15:51 UTC (rev 12903)
+++ stack/cxf/trunk/modules/testsuite/test-excludes-jboss601.txt 2010-09-06 11:36:53 UTC (rev 12904)
@@ -30,7 +30,6 @@
org/jboss/test/ws/jaxws/jbws1797/**
# [JBWS-2945] JAX-WS 2.2 implementation not yet available for CXF stack
-org/jboss/test/ws/jaxws/jbws2937/**
org/jboss/test/ws/jaxws/jbws2942/**
org/jboss/test/ws/jaxws/jbws3022/**
org/jboss/test/ws/jaxws/jbws3031/**
14 years, 3 months
JBossWS SVN: r12903 - in stack/cxf/branches/jbossws-cxf-3.1.2: modules/resources/src/main/resources/resources and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-09-03 15:15:51 -0400 (Fri, 03 Sep 2010)
New Revision: 12903
Modified:
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/resources/jbossws-installer-macros.xml
stack/cxf/branches/jbossws-cxf-3.1.2/src/main/scripts/assembly-deploy-artifacts.xml
Log:
[JBPAPP-5020] Avoid installing saaj-api.jar
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat 2010-09-03 15:25:58 UTC (rev 12902)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat 2010-09-03 19:15:51 UTC (rev 12903)
@@ -78,7 +78,6 @@
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/spring-beans.jar
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/spring-context.jar
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/spring-core.jar
-set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/saaj-api.jar
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/stax-api.jar
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/velocity.jar
set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/XmlSchema.jar
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh 2010-09-03 15:25:58 UTC (rev 12902)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh 2010-09-03 19:15:51 UTC (rev 12903)
@@ -120,7 +120,6 @@
WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$LIBDIR/spring-beans.jar"
WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$LIBDIR/spring-context.jar"
WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$LIBDIR/spring-core.jar"
-WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$LIBDIR/saaj-api.jar"
WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$LIBDIR/stax-api.jar"
WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$LIBDIR/velocity.jar"
WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$LIBDIR/XmlSchema.jar"
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat 2010-09-03 15:25:58 UTC (rev 12902)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat 2010-09-03 19:15:51 UTC (rev 12903)
@@ -100,7 +100,6 @@
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/spring-beans.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/spring-context.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/spring-core.jar
-set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/saaj-api.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/stax-api.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/velocity.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/XmlSchema.jar
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh 2010-09-03 15:25:58 UTC (rev 12902)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh 2010-09-03 19:15:51 UTC (rev 12903)
@@ -118,7 +118,6 @@
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/spring-beans.jar"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/spring-context.jar"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/spring-core.jar"
-WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/saaj-api.jar"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/jaxp-ri.jar"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/stax-api.jar"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/velocity.jar"
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2010-09-03 15:25:58 UTC (rev 12902)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2010-09-03 19:15:51 UTC (rev 12903)
@@ -43,7 +43,6 @@
<include name="**/jbossws-spi.jar"/>
<include name="**/jdom.jar"/>
<include name="**/neethi.jar"/>
- <include name="**/saaj-api.jar"/>
<include name="**/spring-beans.jar"/>
<include name="**/spring-context.jar"/>
<include name="**/spring-core.jar"/>
@@ -70,7 +69,6 @@
<include name="**/jbossws-common.jar"/>
<include name="**/jbossws-framework.jar"/>
<include name="**/jbossws-spi.jar"/>
- <include name="**/saaj-api.jar"/>
</patternset>
<patternset id="jbossws.service.lib.patternset">
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/resources/jbossws-installer-macros.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/resources/jbossws-installer-macros.xml 2010-09-03 15:25:58 UTC (rev 12902)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/src/main/resources/resources/jbossws-installer-macros.xml 2010-09-03 19:15:51 UTC (rev 12903)
@@ -77,7 +77,6 @@
<include name="**/jbossws-cxf-server*.jar"/>
<!-- <include name="**/jdom.jar"/> -->
<include name="**/neethi.jar"/>
- <include name="**/saaj-api.jar"/>
<include name="**/spring-beans.jar"/>
<include name="**/spring-context.jar"/>
<include name="**/spring-core.jar"/>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/src/main/scripts/assembly-deploy-artifacts.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/src/main/scripts/assembly-deploy-artifacts.xml 2010-09-03 15:25:58 UTC (rev 12902)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/src/main/scripts/assembly-deploy-artifacts.xml 2010-09-03 19:15:51 UTC (rev 12903)
@@ -33,7 +33,6 @@
<include>org.jboss.ws:jbossws-common:jar</include>
<include>junit:junit:jar</include>
<include>org.apache.neethi:neethi:jar</include>
- <include>javax.xml.soap:saaj-api:jar</include>
<include>org.springframework:spring-beans:jar</include>
<include>org.springframework:spring-context:jar</include>
<include>org.springframework:spring-core:jar</include>
14 years, 3 months
JBossWS SVN: r12902 - in stack/native/branches/jbossws-native-3.1.2: modules and 23 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-09-03 11:25:58 -0400 (Fri, 03 Sep 2010)
New Revision: 12902
Added:
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Action.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingBuilder.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingConstants.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingException.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingProperties.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingType.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributeExtensible.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedQName.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedURI.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ElementExtensible.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointReference.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/JAXWSAConstants.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Metadata.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ReferenceParameters.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Relationship.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingBuilder.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingProperties.java
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/pom.xml
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.rpc.ServiceFactory
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.ws.spi.Provider
Removed:
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Action.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingBuilder.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingConstants.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingException.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingProperties.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingType.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributeExtensible.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedQName.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedURI.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ElementExtensible.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointReference.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/JAXWSAConstants.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Metadata.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ReferenceParameters.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Relationship.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingBuilder.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingProperties.java
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/pom.xml
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.rpc.ServiceFactory
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory
stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.ws.spi.Provider
stack/native/branches/jbossws-native-3.1.2/modules/jaxrpc/
stack/native/branches/jbossws-native-3.1.2/modules/jaxws-ext/
stack/native/branches/jbossws-native-3.1.2/modules/jaxws/
stack/native/branches/jbossws-native-3.1.2/modules/saaj/
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/client/pom.xml
stack/native/branches/jbossws-native-3.1.2/modules/core/pom.xml
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/jaxrpc/client/HandlerRegistryImpl.java
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPMessageImpl.java
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.bat
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.sh
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.bat
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.sh
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/resources/default-deploy.conf
stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/framework-tests/scripts/antrun-wsconsume.xml
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/scripts/antrun-wsconsume.xml
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/jbws167/HelloJavaBean.java
stack/native/branches/jbossws-native-3.1.2/pom.xml
stack/native/branches/jbossws-native-3.1.2/src/main/distro/build-project-gen.xml
stack/native/branches/jbossws-native-3.1.2/src/main/distro/build.xml
stack/native/branches/jbossws-native-3.1.2/src/main/scripts/assembly-deploy-artifacts.xml
Log:
[JBPAPP-4953] Removing javaee api from jbossws modules - still need to reference jboss-javaee artifacts
Modified: stack/native/branches/jbossws-native-3.1.2/modules/client/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/client/pom.xml 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/client/pom.xml 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,10 +1,10 @@
<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 - Stack Native Client</name>
<artifactId>jbossws-native-client</artifactId>
<packaging>jar</packaging>
-
+
<!-- Parent -->
<parent>
<groupId>org.jboss.ws.native</groupId>
@@ -12,31 +12,19 @@
<version>3.1.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
-
+
<!-- Dependencies -->
<dependencies>
- <!-- This shortens the path to the JAX-WS impl. Otherwise jaxws-rt.jar might be seen first -->
<dependency>
<groupId>org.jboss.ws.native</groupId>
- <artifactId>jbossws-native-jaxws-ext</artifactId>
+ <artifactId>jbossws-native-core</artifactId>
<version>${version}</version>
</dependency>
<dependency>
- <groupId>org.jboss.ws.native</groupId>
- <artifactId>jbossws-native-jaxws</artifactId>
- <version>${version}</version>
+ <groupId>javax.xml</groupId>
+ <artifactId>jaxrpc-api</artifactId>
</dependency>
<dependency>
- <groupId>org.jboss.ws.native</groupId>
- <artifactId>jbossws-native-jaxrpc</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws.native</groupId>
- <artifactId>jbossws-native-core</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-log4j</artifactId>
</dependency>
@@ -49,12 +37,12 @@
<configuration>
<archive>
<manifestEntries>
- <Class-Path>jbossws-spi.jar jbossws-common.jar jbossws-framework.jar jbossws-native-core.jar jbossws-native-jaxrpc.jar jbossws-native-jaxws.jar jaxws-api.jar jsr181-api.jar jbossws-native-jaxws-ext.jar jbossws-native-saaj.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 slf4j-api.jar slf4j-jboss-logging.jar jbosssx-client.jar jboss-javaee.jar jboss-xml-binding.jar jboss-remoting.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 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>
</plugin>
</plugins>
</build>
-
+
</project>
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/pom.xml 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/pom.xml 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,10 +1,10 @@
<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 - Stack Native Core</name>
<artifactId>jbossws-native-core</artifactId>
<packaging>jar</packaging>
-
+
<!-- Parent -->
<parent>
<groupId>org.jboss.ws.native</groupId>
@@ -17,7 +17,7 @@
<jboss.jbosssx.version>2.0.2.SP3</jboss.jbosssx.version>
<jboss.microcontainer.version>2.0.2.GA</jboss.microcontainer.version>
</properties>
-
+
<!-- Dependencies -->
<dependencies>
<!-- jbossws dependencies -->
@@ -30,16 +30,19 @@
<artifactId>jbossws-spi</artifactId>
</dependency>
<dependency>
- <groupId>org.jboss.ws.native</groupId>
- <artifactId>jbossws-native-jaxws-ext</artifactId>
- <version>${version}</version>
+ <groupId>javax.xml</groupId>
+ <artifactId>jaxrpc-api</artifactId>
</dependency>
<dependency>
+ <groupId>javax.xml.soap</groupId>
+ <artifactId>saaj-api</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.jboss.ws.native</groupId>
- <artifactId>jbossws-native-jaxrpc</artifactId>
+ <artifactId>jbossws-native-factories</artifactId>
<version>${version}</version>
</dependency>
-
+
<!-- provided apis -->
<dependency>
<groupId>javax.annotation</groupId>
@@ -63,7 +66,7 @@
<artifactId>servlet-api</artifactId>
<scope>provided</scope>
</dependency>
-
+
<!-- jboss provided -->
<dependency>
<groupId>jboss.common</groupId>
@@ -104,9 +107,17 @@
<artifactId>xercesImpl</artifactId>
<scope>provided</scope>
</dependency>
-
+
<!-- transitve dependencies -->
<dependency>
+ <groupId>javax.xml.ws</groupId>
+ <artifactId>jaxws-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.jws</groupId>
+ <artifactId>jsr181-api</artifactId>
+ </dependency>
+ <dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
@@ -167,7 +178,7 @@
<artifactId>javassist</artifactId>
</dependency>
</dependencies>
-
+
<!-- Build -->
<build>
<plugins>
@@ -225,5 +236,5 @@
</plugin>
</plugins>
</build>
-
+
</project>
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax)
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml)
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws)
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing)
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Action.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/Action.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Action.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,41 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-@Documented
-(a)Retention(RetentionPolicy.RUNTIME)
-(a)Target(ElementType.METHOD)
-public @interface Action
-{
-
- String input() default "##default";
-
- String output() default "##default";
-
- String[] fault() default "##default";
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Action.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/Action.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Action.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Action.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,41 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+@Documented
+(a)Retention(RetentionPolicy.RUNTIME)
+(a)Target(ElementType.METHOD)
+public @interface Action
+{
+
+ String input() default "##default";
+
+ String output() default "##default";
+
+ String[] fault() default "##default";
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,57 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-
-public class ActionNotSupportedException extends AddressingException
-{
- private static final long serialVersionUID = -2281268200778671820L;
-
- static
- {
- fMessage = ac.getActionNotSupportedText();
- }
-
- private String action;
-
- protected ActionNotSupportedException()
- {
- super();
- }
-
- public ActionNotSupportedException(String action)
- {
- super(fMessage + ": " + action);
- this.action = action;
- }
-
- public String getAction()
- {
- return action;
- }
-
- public QName getSubcode()
- {
- return ac.getActioNotSupportedQName();
- }
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ActionNotSupportedException.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,57 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import javax.xml.namespace.QName;
+
+public class ActionNotSupportedException extends AddressingException
+{
+ private static final long serialVersionUID = -2281268200778671820L;
+
+ static
+ {
+ fMessage = ac.getActionNotSupportedText();
+ }
+
+ private String action;
+
+ protected ActionNotSupportedException()
+ {
+ super();
+ }
+
+ public ActionNotSupportedException(String action)
+ {
+ super(fMessage + ": " + action);
+ this.action = action;
+ }
+
+ public String getAction()
+ {
+ return action;
+ }
+
+ public QName getSubcode()
+ {
+ return ac.getActioNotSupportedQName();
+ }
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingBuilder.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AddressingBuilder.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingBuilder.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,190 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import static javax.xml.ws.addressing.JAXWSAConstants.ADDRESSING_BUILDER_PROPERTY;
-import static javax.xml.ws.addressing.JAXWSAConstants.DEFAULT_ADDRESSING_BUILDER;
-
-import java.net.URI;
-import java.net.URISyntaxException;
-import java.security.AccessController;
-import java.security.PrivilegedAction;
-import java.security.PrivilegedActionException;
-import java.security.PrivilegedExceptionAction;
-import java.util.logging.Logger;
-
-import javax.xml.namespace.QName;
-
-public abstract class AddressingBuilder implements AddressingType
-{
- // provide logging
- private static Logger log = Logger.getLogger(AddressingBuilder.class.getName());
-
- protected AddressingBuilder()
- {
- }
-
- public static AddressingBuilder getAddressingBuilder()
- {
- ClassLoader classLoader;
- try
- {
- classLoader = getContextClassLoader();
- }
- catch (Exception x)
- {
- throw new AddressingException(x.toString(), x);
- }
-
- String name = null;
-
- // Use the system property first
- try
- {
- name = getSystemProperty(ADDRESSING_BUILDER_PROPERTY);
- if (name != null)
- {
- return newInstance(name, classLoader);
- }
- }
- catch (Exception e)
- {
- log.warning("Could not create and instance of " + name + " trying " + DEFAULT_ADDRESSING_BUILDER);
- }
-
- // default builder
- return newInstance(DEFAULT_ADDRESSING_BUILDER, classLoader);
- }
-
- private static AddressingBuilder newInstance(String className, ClassLoader classLoader)
- {
- try
- {
- Class cls;
- if (classLoader == null)
- {
- cls = Class.forName(className);
- }
- else
- {
- cls = loadClass(classLoader, className);
- }
- return (AddressingBuilder)cls.newInstance();
- }
- catch (ClassNotFoundException x)
- {
- throw new AddressingException("Provider " + className + " not found", x);
- }
- catch (Exception x)
- {
- throw new AddressingException("Provider " + className + " could not be instantiated: " + x, x);
- }
- }
-
- public abstract AttributedURI newURI(URI uri);
-
- public abstract AttributedURI newURI(String uri) throws URISyntaxException;
-
- public abstract AttributedQName newQName(QName name);
-
- public abstract Relationship newRelationship(URI uri);
-
- public abstract EndpointReference newEndpointReference(URI uri);
-
- public abstract AddressingProperties newAddressingProperties();
-
- public abstract AddressingConstants newAddressingConstants();
-
- /**
- * Get a system property
- *
- * @param name
- * @param defaultValue
- * @return
- */
- private static String getSystemProperty(final String name)
- {
- SecurityManager sm = System.getSecurityManager();
- if (sm == null)
- {
- return System.getProperty(name);
- }
- else
- {
- PrivilegedAction<String> action = new PrivilegedAction<String>() {
- public String run()
- {
- return System.getProperty(name);
- }
- };
- return AccessController.doPrivileged(action);
- }
- }
-
- private static Class<?> loadClass(final ClassLoader cl, final String name) throws PrivilegedActionException, ClassNotFoundException
- {
- SecurityManager sm = System.getSecurityManager();
- if (sm == null)
- {
- return cl.loadClass(name);
- }
- else
- {
- return AccessController.doPrivileged(new PrivilegedExceptionAction<Class<?>>() {
- public Class<?> run() throws PrivilegedActionException
- {
- try
- {
- return cl.loadClass(name);
- }
- catch (Exception e)
- {
- throw new PrivilegedActionException(e);
- }
- }
- });
- }
- }
-
- /**
- * Get context classloader.
- *
- * @return the current context classloader
- */
- private static ClassLoader getContextClassLoader()
- {
- SecurityManager sm = System.getSecurityManager();
- if (sm == null)
- {
- return Thread.currentThread().getContextClassLoader();
- }
- else
- {
- return AccessController.doPrivileged(new PrivilegedAction<ClassLoader>() {
- public ClassLoader run()
- {
- return Thread.currentThread().getContextClassLoader();
- }
- });
- }
- }
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingBuilder.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AddressingBuilder.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingBuilder.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingBuilder.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,190 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import static javax.xml.ws.addressing.JAXWSAConstants.ADDRESSING_BUILDER_PROPERTY;
+import static javax.xml.ws.addressing.JAXWSAConstants.DEFAULT_ADDRESSING_BUILDER;
+
+import java.net.URI;
+import java.net.URISyntaxException;
+import java.security.AccessController;
+import java.security.PrivilegedAction;
+import java.security.PrivilegedActionException;
+import java.security.PrivilegedExceptionAction;
+import java.util.logging.Logger;
+
+import javax.xml.namespace.QName;
+
+public abstract class AddressingBuilder implements AddressingType
+{
+ // provide logging
+ private static Logger log = Logger.getLogger(AddressingBuilder.class.getName());
+
+ protected AddressingBuilder()
+ {
+ }
+
+ public static AddressingBuilder getAddressingBuilder()
+ {
+ ClassLoader classLoader;
+ try
+ {
+ classLoader = getContextClassLoader();
+ }
+ catch (Exception x)
+ {
+ throw new AddressingException(x.toString(), x);
+ }
+
+ String name = null;
+
+ // Use the system property first
+ try
+ {
+ name = getSystemProperty(ADDRESSING_BUILDER_PROPERTY);
+ if (name != null)
+ {
+ return newInstance(name, classLoader);
+ }
+ }
+ catch (Exception e)
+ {
+ log.warning("Could not create and instance of " + name + " trying " + DEFAULT_ADDRESSING_BUILDER);
+ }
+
+ // default builder
+ return newInstance(DEFAULT_ADDRESSING_BUILDER, classLoader);
+ }
+
+ private static AddressingBuilder newInstance(String className, ClassLoader classLoader)
+ {
+ try
+ {
+ Class cls;
+ if (classLoader == null)
+ {
+ cls = Class.forName(className);
+ }
+ else
+ {
+ cls = loadClass(classLoader, className);
+ }
+ return (AddressingBuilder)cls.newInstance();
+ }
+ catch (ClassNotFoundException x)
+ {
+ throw new AddressingException("Provider " + className + " not found", x);
+ }
+ catch (Exception x)
+ {
+ throw new AddressingException("Provider " + className + " could not be instantiated: " + x, x);
+ }
+ }
+
+ public abstract AttributedURI newURI(URI uri);
+
+ public abstract AttributedURI newURI(String uri) throws URISyntaxException;
+
+ public abstract AttributedQName newQName(QName name);
+
+ public abstract Relationship newRelationship(URI uri);
+
+ public abstract EndpointReference newEndpointReference(URI uri);
+
+ public abstract AddressingProperties newAddressingProperties();
+
+ public abstract AddressingConstants newAddressingConstants();
+
+ /**
+ * Get a system property
+ *
+ * @param name
+ * @param defaultValue
+ * @return
+ */
+ private static String getSystemProperty(final String name)
+ {
+ SecurityManager sm = System.getSecurityManager();
+ if (sm == null)
+ {
+ return System.getProperty(name);
+ }
+ else
+ {
+ PrivilegedAction<String> action = new PrivilegedAction<String>() {
+ public String run()
+ {
+ return System.getProperty(name);
+ }
+ };
+ return AccessController.doPrivileged(action);
+ }
+ }
+
+ private static Class<?> loadClass(final ClassLoader cl, final String name) throws PrivilegedActionException, ClassNotFoundException
+ {
+ SecurityManager sm = System.getSecurityManager();
+ if (sm == null)
+ {
+ return cl.loadClass(name);
+ }
+ else
+ {
+ return AccessController.doPrivileged(new PrivilegedExceptionAction<Class<?>>() {
+ public Class<?> run() throws PrivilegedActionException
+ {
+ try
+ {
+ return cl.loadClass(name);
+ }
+ catch (Exception e)
+ {
+ throw new PrivilegedActionException(e);
+ }
+ }
+ });
+ }
+ }
+
+ /**
+ * Get context classloader.
+ *
+ * @return the current context classloader
+ */
+ private static ClassLoader getContextClassLoader()
+ {
+ SecurityManager sm = System.getSecurityManager();
+ if (sm == null)
+ {
+ return Thread.currentThread().getContextClassLoader();
+ }
+ else
+ {
+ return AccessController.doPrivileged(new PrivilegedAction<ClassLoader>() {
+ public ClassLoader run()
+ {
+ return Thread.currentThread().getContextClassLoader();
+ }
+ });
+ }
+ }
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingConstants.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AddressingConstants.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingConstants.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,94 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-
-public interface AddressingConstants
-{
- String getNamespaceURI();
-
- String getNamespacePrefix();
-
- String getWSDLNamespaceURI();
-
- String getWSDLNamespacePrefix();
-
- QName getWSDLExtensibilityQName();
-
- QName getWSDLActionQName();
-
- String getAnonymousURI();
-
- String getNoneURI();
-
- QName getFromQName();
-
- QName getToQName();
-
- QName getReplyToQName();
-
- QName getFaultToQName();
-
- QName getActionQName();
-
- QName getMessageIDQName();
-
- QName getRelationshipReplyQName();
-
- QName getRelatesToQName();
-
- String getRelationshipTypeName();
-
- // [TODO] Add this method
- QName getReferenceParametersQName();
-
- QName getMetadataQName();
-
- QName getAddressQName();
-
- String getPackageName();
-
- String getIsReferenceParameterName();
-
- QName getInvalidMapQName();
-
- QName getMapRequiredQName();
-
- QName getDestinationUnreachableQName();
-
- QName getActioNotSupportedQName();
-
- QName getEndpointUnavailableQName();
-
- String getDefaultFaultAction();
-
- String getActionNotSupportedText();
-
- String getDestinationUnreachableText();
-
- String getEndpointUnavailableText();
-
- String getInvalidMapText();
-
- String getMapRequiredText();
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingConstants.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AddressingConstants.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingConstants.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingConstants.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,94 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import javax.xml.namespace.QName;
+
+public interface AddressingConstants
+{
+ String getNamespaceURI();
+
+ String getNamespacePrefix();
+
+ String getWSDLNamespaceURI();
+
+ String getWSDLNamespacePrefix();
+
+ QName getWSDLExtensibilityQName();
+
+ QName getWSDLActionQName();
+
+ String getAnonymousURI();
+
+ String getNoneURI();
+
+ QName getFromQName();
+
+ QName getToQName();
+
+ QName getReplyToQName();
+
+ QName getFaultToQName();
+
+ QName getActionQName();
+
+ QName getMessageIDQName();
+
+ QName getRelationshipReplyQName();
+
+ QName getRelatesToQName();
+
+ String getRelationshipTypeName();
+
+ // [TODO] Add this method
+ QName getReferenceParametersQName();
+
+ QName getMetadataQName();
+
+ QName getAddressQName();
+
+ String getPackageName();
+
+ String getIsReferenceParameterName();
+
+ QName getInvalidMapQName();
+
+ QName getMapRequiredQName();
+
+ QName getDestinationUnreachableQName();
+
+ QName getActioNotSupportedQName();
+
+ QName getEndpointUnavailableQName();
+
+ String getDefaultFaultAction();
+
+ String getActionNotSupportedText();
+
+ String getDestinationUnreachableText();
+
+ String getEndpointUnavailableText();
+
+ String getInvalidMapText();
+
+ String getMapRequiredText();
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingException.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AddressingException.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingException.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,88 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-import javax.xml.ws.WebServiceException;
-
-public class AddressingException extends WebServiceException
-{
- private static final long serialVersionUID = -4470655951999027171L;
-
- protected QName code;
-
- protected String reason;
-
- protected Object detail;
-
- protected static AddressingConstants ac = null;
- protected static String fMessage = null;
- static
- {
- ac = AddressingBuilder.getAddressingBuilder().newAddressingConstants();
- }
-
- public AddressingException()
- {
- }
-
- public AddressingException(String message)
- {
- super(message);
- }
-
- public AddressingException(Throwable cause)
- {
- super(cause);
- }
-
- public AddressingException(String message, Throwable cause)
- {
- super(message, cause);
- }
-
- /**
- * Returns the fault code.
- *
- * @return the fault code
- */
- public QName getCode()
- {
- return code;
- }
-
- public QName getSubcode()
- {
- return null;
- }
-
- public String getReason()
- {
- return reason;
- }
-
- public Object getDetail()
- {
- return detail;
- }
-
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingException.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AddressingException.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingException.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingException.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,88 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.WebServiceException;
+
+public class AddressingException extends WebServiceException
+{
+ private static final long serialVersionUID = -4470655951999027171L;
+
+ protected QName code;
+
+ protected String reason;
+
+ protected Object detail;
+
+ protected static AddressingConstants ac = null;
+ protected static String fMessage = null;
+ static
+ {
+ ac = AddressingBuilder.getAddressingBuilder().newAddressingConstants();
+ }
+
+ public AddressingException()
+ {
+ }
+
+ public AddressingException(String message)
+ {
+ super(message);
+ }
+
+ public AddressingException(Throwable cause)
+ {
+ super(cause);
+ }
+
+ public AddressingException(String message, Throwable cause)
+ {
+ super(message, cause);
+ }
+
+ /**
+ * Returns the fault code.
+ *
+ * @return the fault code
+ */
+ public QName getCode()
+ {
+ return code;
+ }
+
+ public QName getSubcode()
+ {
+ return null;
+ }
+
+ public String getReason()
+ {
+ return reason;
+ }
+
+ public Object getDetail()
+ {
+ return detail;
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingProperties.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AddressingProperties.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingProperties.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,64 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import java.util.Map;
-
-import javax.xml.namespace.QName;
-
-public interface AddressingProperties extends AddressingType, Map<QName, AddressingType>
-{
-
- public AttributedURI getTo();
-
- public void setTo(AttributedURI iri);
-
- public AttributedURI getAction();
-
- public void setAction(AttributedURI iri);
-
- public AttributedURI getMessageID();
-
- public void setMessageID(AttributedURI iri);
-
- public Relationship[] getRelatesTo();
-
- public void setRelatesTo(Relationship[] relationship);
-
- public EndpointReference getReplyTo();
-
- public void setReplyTo(EndpointReference ref);
-
- public EndpointReference getFaultTo();
-
- public void setFaultTo(EndpointReference ref);
-
- public EndpointReference getFrom();
-
- public void setFrom(EndpointReference ref);
-
- public ReferenceParameters getReferenceParameters();
-
- public void initializeAsDestination(EndpointReference ref);
-
- public void initializeAsReply(AddressingProperties props, boolean isFault);
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingProperties.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AddressingProperties.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingProperties.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingProperties.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,64 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import java.util.Map;
+
+import javax.xml.namespace.QName;
+
+public interface AddressingProperties extends AddressingType, Map<QName, AddressingType>
+{
+
+ public AttributedURI getTo();
+
+ public void setTo(AttributedURI iri);
+
+ public AttributedURI getAction();
+
+ public void setAction(AttributedURI iri);
+
+ public AttributedURI getMessageID();
+
+ public void setMessageID(AttributedURI iri);
+
+ public Relationship[] getRelatesTo();
+
+ public void setRelatesTo(Relationship[] relationship);
+
+ public EndpointReference getReplyTo();
+
+ public void setReplyTo(EndpointReference ref);
+
+ public EndpointReference getFaultTo();
+
+ public void setFaultTo(EndpointReference ref);
+
+ public EndpointReference getFrom();
+
+ public void setFrom(EndpointReference ref);
+
+ public ReferenceParameters getReferenceParameters();
+
+ public void initializeAsDestination(EndpointReference ref);
+
+ public void initializeAsReply(AddressingProperties props, boolean isFault);
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingType.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AddressingType.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingType.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,27 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-public interface AddressingType
-{
- public String getNamespaceURI();
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingType.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AddressingType.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingType.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AddressingType.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,27 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+public interface AddressingType
+{
+ public String getNamespaceURI();
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributeExtensible.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AttributeExtensible.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributeExtensible.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,34 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import java.util.Map;
-
-import javax.xml.namespace.QName;
-
-public interface AttributeExtensible extends AddressingType
-{
- public Map<QName, String> getAttributes();
-
- public void addAttribute(QName name, String value) throws AddressingException;
-
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributeExtensible.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AttributeExtensible.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributeExtensible.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributeExtensible.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,34 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import java.util.Map;
+
+import javax.xml.namespace.QName;
+
+public interface AttributeExtensible extends AddressingType
+{
+ public Map<QName, String> getAttributes();
+
+ public void addAttribute(QName name, String value) throws AddressingException;
+
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedQName.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AttributedQName.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedQName.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,33 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-
-public interface AttributedQName extends AddressingType, AttributeExtensible
-{
-
- public QName getQName();
-
- public void addAttribute(QName name, String value);
-
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedQName.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AttributedQName.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedQName.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedQName.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,33 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import javax.xml.namespace.QName;
+
+public interface AttributedQName extends AddressingType, AttributeExtensible
+{
+
+ public QName getQName();
+
+ public void addAttribute(QName name, String value);
+
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedURI.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AttributedURI.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedURI.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,33 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import java.net.URI;
-
-import javax.xml.namespace.QName;
-
-public interface AttributedURI extends AddressingType, AttributeExtensible
-{
- public URI getURI();
-
- public void addAttribute(QName name, String value);
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedURI.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/AttributedURI.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedURI.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/AttributedURI.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,33 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import java.net.URI;
+
+import javax.xml.namespace.QName;
+
+public interface AttributedURI extends AddressingType, AttributeExtensible
+{
+ public URI getURI();
+
+ public void addAttribute(QName name, String value);
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,48 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-
-public class DestinationUnreachableException extends AddressingException
-{
- private static final long serialVersionUID = 7420697131368408456L;
-
- static
- {
- fMessage = ac.getDestinationUnreachableText();
- }
-
- public DestinationUnreachableException()
- {
- }
-
- public DestinationUnreachableException(String problemIRI)
- {
- super(fMessage + ": " + problemIRI);
- }
-
- public QName getSubcode()
- {
- return ac.getDestinationUnreachableQName();
- }
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/DestinationUnreachableException.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,48 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import javax.xml.namespace.QName;
+
+public class DestinationUnreachableException extends AddressingException
+{
+ private static final long serialVersionUID = 7420697131368408456L;
+
+ static
+ {
+ fMessage = ac.getDestinationUnreachableText();
+ }
+
+ public DestinationUnreachableException()
+ {
+ }
+
+ public DestinationUnreachableException(String problemIRI)
+ {
+ super(fMessage + ": " + problemIRI);
+ }
+
+ public QName getSubcode()
+ {
+ return ac.getDestinationUnreachableQName();
+ }
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ElementExtensible.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/ElementExtensible.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ElementExtensible.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,34 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import java.util.List;
-
-public interface ElementExtensible extends AddressingType
-{
- public List<Object> getElements();
-
- public void addElement(Object element);
-
- public boolean removeElement(Object element);
-
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ElementExtensible.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/ElementExtensible.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ElementExtensible.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ElementExtensible.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,34 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import java.util.List;
+
+public interface ElementExtensible extends AddressingType
+{
+ public List<Object> getElements();
+
+ public void addElement(Object element);
+
+ public boolean removeElement(Object element);
+
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointReference.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/EndpointReference.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointReference.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,32 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-public interface EndpointReference extends AddressingType, AttributeExtensible, ElementExtensible
-{
- public AttributedURI getAddress();
-
- public ReferenceParameters getReferenceParameters();
-
- public Metadata getMetadata();
-
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointReference.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/EndpointReference.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointReference.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointReference.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,32 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+public interface EndpointReference extends AddressingType, AttributeExtensible, ElementExtensible
+{
+ public AttributedURI getAddress();
+
+ public ReferenceParameters getReferenceParameters();
+
+ public Metadata getMetadata();
+
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,48 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-
-public class EndpointUnavailableException extends AddressingException
-{
- private static final long serialVersionUID = 4098776568071868541L;
-
- static
- {
- fMessage = ac.getEndpointUnavailableText();
- }
-
- public EndpointUnavailableException()
- {
- }
-
- public EndpointUnavailableException(int retryAfter, String problemIRI)
- {
- super(fMessage + ": [retry=" + retryAfter + ",iri=" + problemIRI + "]");
- }
-
- public QName getSubcode()
- {
- return ac.getEndpointUnavailableQName();
- }
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/EndpointUnavailableException.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,48 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import javax.xml.namespace.QName;
+
+public class EndpointUnavailableException extends AddressingException
+{
+ private static final long serialVersionUID = 4098776568071868541L;
+
+ static
+ {
+ fMessage = ac.getEndpointUnavailableText();
+ }
+
+ public EndpointUnavailableException()
+ {
+ }
+
+ public EndpointUnavailableException(int retryAfter, String problemIRI)
+ {
+ super(fMessage + ": [retry=" + retryAfter + ",iri=" + problemIRI + "]");
+ }
+
+ public QName getSubcode()
+ {
+ return ac.getEndpointUnavailableQName();
+ }
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,39 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-@Documented
-(a)Retention(RetentionPolicy.RUNTIME)
-(a)Target(ElementType.METHOD)
-public @interface FaultAction
-{
-
- Class className();
-
- String value() default "##default";
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/FaultAction.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,39 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+@Documented
+(a)Retention(RetentionPolicy.RUNTIME)
+(a)Target(ElementType.METHOD)
+public @interface FaultAction
+{
+
+ Class className();
+
+ String value() default "##default";
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,48 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-
-public class InvalidMapException extends AddressingException
-{
- private static final long serialVersionUID = 1760077070006214469L;
-
- static
- {
- fMessage = ac.getInvalidMapText();
- }
-
- protected InvalidMapException()
- {
- }
-
- public InvalidMapException(QName name)
- {
- super(fMessage + ": " + name);
- }
-
- public QName getSubcode()
- {
- return ac.getInvalidMapQName();
- }
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/InvalidMapException.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,48 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import javax.xml.namespace.QName;
+
+public class InvalidMapException extends AddressingException
+{
+ private static final long serialVersionUID = 1760077070006214469L;
+
+ static
+ {
+ fMessage = ac.getInvalidMapText();
+ }
+
+ protected InvalidMapException()
+ {
+ }
+
+ public InvalidMapException(QName name)
+ {
+ super(fMessage + ": " + name);
+ }
+
+ public QName getSubcode()
+ {
+ return ac.getInvalidMapQName();
+ }
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/JAXWSAConstants.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/JAXWSAConstants.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/JAXWSAConstants.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,78 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-import javax.xml.soap.SOAPException;
-import javax.xml.soap.SOAPFactory;
-
-public class JAXWSAConstants
-{
-
- private JAXWSAConstants()
- {
- }
-
- public static final String ADDRESSING_BUILDER_PROPERTY = "javax.xml.ws.addressing.AddressingBuilder";
-
- public static final String DEFAULT_ADDRESSING_BUILDER = "org.jboss.ws.extensions.addressing.soap.SOAPAddressingBuilderImpl";
-
- public static final String SOAP11_NAMESPACE_NAME = "http://schemas.xmlsoap.org/soap/envelope/";
-
- public static final String SOAP12_NAMESPACE_NAME = "http://www.w3.org/2003/05/soap-envelope";
-
- public static final QName SOAP11_SENDER_QNAME = new QName(SOAP11_NAMESPACE_NAME, "Client");
-
- public static final QName SOAP11_RECEIVER_QNAME = new QName(SOAP11_NAMESPACE_NAME, "Server");
-
- public static final QName SOAP12_SENDER_QNAME = new QName(SOAP12_NAMESPACE_NAME, "Sender");
-
- public static final QName SOAP12_RECEIVER_QNAME = new QName(SOAP12_NAMESPACE_NAME, "Receiver");
-
- public static final String SOAP11HTTP_ADDRESSING_BINDING = "http://schemas.xmlsoap.org/wsdl/soap/http?addressing=1.0";
-
- public static final String SOAP12HTTP_ADDRESSING_BINDING = "http://www.w3.org/2003/05/soap/bindings/HTTP/?addressing=1.0";
-
- public static final String CLIENT_ADDRESSING_PROPERTIES = "javax.xml.ws.addressing.context";
-
- public static final String CLIENT_ADDRESSING_PROPERTIES_INBOUND = "javax.xml.ws.addressing.context.inbound";
-
- public static final String CLIENT_ADDRESSING_PROPERTIES_OUTBOUND = "javax.xml.ws.addressing.context.outbound";
-
- public static final String SERVER_ADDRESSING_PROPERTIES_INBOUND = "javax.xml.ws.addressing.context.inbound";
-
- public static final String SERVER_ADDRESSING_PROPERTIES_OUTBOUND = "javax.xml.ws.addressing.context.outbound";
-
- public static SOAPFactory SOAP_FACTORY = null;
-
- static
- {
- try
- {
- SOAP_FACTORY = SOAPFactory.newInstance();
- }
- catch (SOAPException e)
- {
- }
- }
-
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/JAXWSAConstants.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/JAXWSAConstants.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/JAXWSAConstants.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/JAXWSAConstants.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,78 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import javax.xml.namespace.QName;
+import javax.xml.soap.SOAPException;
+import javax.xml.soap.SOAPFactory;
+
+public class JAXWSAConstants
+{
+
+ private JAXWSAConstants()
+ {
+ }
+
+ public static final String ADDRESSING_BUILDER_PROPERTY = "javax.xml.ws.addressing.AddressingBuilder";
+
+ public static final String DEFAULT_ADDRESSING_BUILDER = "org.jboss.ws.extensions.addressing.soap.SOAPAddressingBuilderImpl";
+
+ public static final String SOAP11_NAMESPACE_NAME = "http://schemas.xmlsoap.org/soap/envelope/";
+
+ public static final String SOAP12_NAMESPACE_NAME = "http://www.w3.org/2003/05/soap-envelope";
+
+ public static final QName SOAP11_SENDER_QNAME = new QName(SOAP11_NAMESPACE_NAME, "Client");
+
+ public static final QName SOAP11_RECEIVER_QNAME = new QName(SOAP11_NAMESPACE_NAME, "Server");
+
+ public static final QName SOAP12_SENDER_QNAME = new QName(SOAP12_NAMESPACE_NAME, "Sender");
+
+ public static final QName SOAP12_RECEIVER_QNAME = new QName(SOAP12_NAMESPACE_NAME, "Receiver");
+
+ public static final String SOAP11HTTP_ADDRESSING_BINDING = "http://schemas.xmlsoap.org/wsdl/soap/http?addressing=1.0";
+
+ public static final String SOAP12HTTP_ADDRESSING_BINDING = "http://www.w3.org/2003/05/soap/bindings/HTTP/?addressing=1.0";
+
+ public static final String CLIENT_ADDRESSING_PROPERTIES = "javax.xml.ws.addressing.context";
+
+ public static final String CLIENT_ADDRESSING_PROPERTIES_INBOUND = "javax.xml.ws.addressing.context.inbound";
+
+ public static final String CLIENT_ADDRESSING_PROPERTIES_OUTBOUND = "javax.xml.ws.addressing.context.outbound";
+
+ public static final String SERVER_ADDRESSING_PROPERTIES_INBOUND = "javax.xml.ws.addressing.context.inbound";
+
+ public static final String SERVER_ADDRESSING_PROPERTIES_OUTBOUND = "javax.xml.ws.addressing.context.outbound";
+
+ public static SOAPFactory SOAP_FACTORY = null;
+
+ static
+ {
+ try
+ {
+ SOAP_FACTORY = SOAPFactory.newInstance();
+ }
+ catch (SOAPException e)
+ {
+ }
+ }
+
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,48 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import javax.xml.namespace.QName;
-
-public class MapRequiredException extends AddressingException
-{
- private static final long serialVersionUID = 7593796661805754938L;
-
- static
- {
- fMessage = ac.getMapRequiredText();
- }
-
- public MapRequiredException()
- {
- }
-
- public MapRequiredException(QName name)
- {
- super(fMessage + ": " + name);
- }
-
- public QName getSubcode()
- {
- return ac.getMapRequiredQName();
- }
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/MapRequiredException.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,48 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import javax.xml.namespace.QName;
+
+public class MapRequiredException extends AddressingException
+{
+ private static final long serialVersionUID = 7593796661805754938L;
+
+ static
+ {
+ fMessage = ac.getMapRequiredText();
+ }
+
+ public MapRequiredException()
+ {
+ }
+
+ public MapRequiredException(QName name)
+ {
+ super(fMessage + ": " + name);
+ }
+
+ public QName getSubcode()
+ {
+ return ac.getMapRequiredQName();
+ }
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Metadata.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/Metadata.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Metadata.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,27 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-public interface Metadata extends AttributeExtensible, ElementExtensible
-{
-
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Metadata.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/Metadata.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Metadata.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Metadata.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,27 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+public interface Metadata extends AttributeExtensible, ElementExtensible
+{
+
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ReferenceParameters.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/ReferenceParameters.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ReferenceParameters.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,26 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-public interface ReferenceParameters extends AttributeExtensible, ElementExtensible
-{
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ReferenceParameters.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/ReferenceParameters.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ReferenceParameters.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/ReferenceParameters.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,26 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+public interface ReferenceParameters extends AttributeExtensible, ElementExtensible
+{
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Relationship.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/Relationship.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Relationship.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,37 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing;
-
-import java.net.URI;
-
-import javax.xml.namespace.QName;
-
-public interface Relationship extends AttributeExtensible
-{
-
- public URI getID();
-
- public QName getType();
-
- public void setType(QName type);
-
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Relationship.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/Relationship.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Relationship.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/Relationship.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,37 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing;
+
+import java.net.URI;
+
+import javax.xml.namespace.QName;
+
+public interface Relationship extends AttributeExtensible
+{
+
+ public URI getID();
+
+ public QName getType();
+
+ public void setType(QName type);
+
+}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/soap)
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingBuilder.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingBuilder.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingBuilder.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,28 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing.soap;
-
-import javax.xml.ws.addressing.AddressingBuilder;
-
-public abstract class SOAPAddressingBuilder extends AddressingBuilder
-{
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingBuilder.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingBuilder.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingBuilder.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingBuilder.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,28 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing.soap;
+
+import javax.xml.ws.addressing.AddressingBuilder;
+
+public abstract class SOAPAddressingBuilder extends AddressingBuilder
+{
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,36 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing.soap;
-
-import javax.xml.namespace.QName;
-import javax.xml.soap.SOAPElement;
-import javax.xml.ws.addressing.AddressingException;
-import javax.xml.ws.addressing.AddressingType;
-
-public interface SOAPAddressingElement extends AddressingType
-{
-
- public void read(SOAPElement element) throws AddressingException;
-
- public SOAPElement write(SOAPElement parent, QName name) throws AddressingException;
-
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingElement.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,36 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing.soap;
+
+import javax.xml.namespace.QName;
+import javax.xml.soap.SOAPElement;
+import javax.xml.ws.addressing.AddressingException;
+import javax.xml.ws.addressing.AddressingType;
+
+public interface SOAPAddressingElement extends AddressingType
+{
+
+ public void read(SOAPElement element) throws AddressingException;
+
+ public SOAPElement write(SOAPElement parent, QName name) throws AddressingException;
+
+}
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingProperties.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingProperties.java 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingProperties.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,36 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package javax.xml.ws.addressing.soap;
-
-import javax.xml.soap.SOAPMessage;
-import javax.xml.ws.addressing.AddressingException;
-import javax.xml.ws.addressing.AddressingProperties;
-
-public interface SOAPAddressingProperties extends AddressingProperties
-{
- public void readHeaders(SOAPMessage message) throws AddressingException;
-
- public void writeHeaders(SOAPMessage message) throws AddressingException;
-
- public void setMu(boolean mu);
-
-}
Copied: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingProperties.java (from rev 11393, stack/native/trunk/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingProperties.java)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingProperties.java (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/javax/xml/ws/addressing/soap/SOAPAddressingProperties.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1,36 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package javax.xml.ws.addressing.soap;
+
+import javax.xml.soap.SOAPMessage;
+import javax.xml.ws.addressing.AddressingException;
+import javax.xml.ws.addressing.AddressingProperties;
+
+public interface SOAPAddressingProperties extends AddressingProperties
+{
+ public void readHeaders(SOAPMessage message) throws AddressingException;
+
+ public void writeHeaders(SOAPMessage message) throws AddressingException;
+
+ public void setMu(boolean mu);
+
+}
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/jaxrpc/client/HandlerRegistryImpl.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/jaxrpc/client/HandlerRegistryImpl.java 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/jaxrpc/client/HandlerRegistryImpl.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -117,8 +117,12 @@
// copy headers
Set<QName> headers = new HashSet<QName>();
- for (QName header : info.getHeaders())
- headers.add(header);
+ QName[] infoHeaders = info.getHeaders();
+ if (infoHeaders != null)
+ {
+ for (QName header : infoHeaders)
+ headers.add(header);
+ }
handler.setSoapHeaders(headers);
// copy init params
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPMessageImpl.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPMessageImpl.java 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPMessageImpl.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -26,9 +26,11 @@
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.util.Collection;
+import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
+import java.util.Map;
import javax.mail.MessagingException;
import javax.xml.soap.AttachmentPart;
@@ -72,7 +74,7 @@
public class SOAPMessageImpl extends SOAPMessage implements SOAPMessageAbstraction
{
private static Logger log = Logger.getLogger(SOAPMessageImpl.class);
-
+ private Map<String, Object> properties = new HashMap<String, Object>();
private boolean saveRequired = true;
private MimeHeaders mimeHeaders = new MimeHeaders();
private List<AttachmentPart> attachments = new LinkedList<AttachmentPart>();
@@ -93,6 +95,46 @@
setProperty(WRITE_XML_DECLARATION, writeXMLDeclaration);
}
+ public Object getProperty(String property) throws SOAPException
+ {
+ return properties.get(property);
+ }
+
+ public void setProperty(String property, Object value) throws SOAPException
+ {
+ properties.put(property, value);
+ }
+
+ public SOAPBody getSOAPBody() throws SOAPException
+ {
+ SOAPPart soapPart = getSOAPPart();
+ if (soapPart != null)
+ {
+ SOAPEnvelope soapEnvelope = soapPart.getEnvelope();
+ if (soapEnvelope != null)
+ {
+ SOAPBody soapBody = soapEnvelope.getBody();
+ return soapBody;
+ }
+ }
+ throw new SOAPException("Cannot obtain SOAPBody from SOAPMessage");
+ }
+
+ public SOAPHeader getSOAPHeader() throws SOAPException
+ {
+ SOAPPart soapPart = getSOAPPart();
+ if (soapPart != null)
+ {
+ SOAPEnvelope soapEnvelope = soapPart.getEnvelope();
+ if (soapEnvelope != null)
+ {
+ SOAPHeader soapHeader = soapEnvelope.getHeader();
+ return soapHeader;
+ }
+ }
+ throw new SOAPException("Cannot obtain SOAPHeader from SOAPMessage");
+ }
+
public CIDGenerator getCidGenerator()
{
return cidGenerator;
Copied: stack/native/branches/jbossws-native-3.1.2/modules/endorsed (from rev 11393, stack/native/trunk/modules/endorsed)
Property changes on: stack/native/branches/jbossws-native-3.1.2/modules/endorsed
___________________________________________________________________
Name: svn:ignore
+ target
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/pom.xml
===================================================================
--- stack/native/trunk/modules/endorsed/pom.xml 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/endorsed/pom.xml 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1,16 +0,0 @@
-<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 - Endorsed JAX-WS, JAX-RPC and SAAJ factories</name>
- <artifactId>jbossws-native-factories</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>
Copied: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/pom.xml (from rev 11393, stack/native/trunk/modules/endorsed/pom.xml)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/endorsed/pom.xml (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/endorsed/pom.xml 2010-09-03 15:25:58 UTC (rev 12902)
@@ -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 - Endorsed JAX-WS, JAX-RPC and SAAJ factories</name>
+ <artifactId>jbossws-native-factories</artifactId>
+ <packaging>jar</packaging>
+
+ <!-- Parent -->
+ <parent>
+ <groupId>org.jboss.ws.native</groupId>
+ <artifactId>jbossws-native</artifactId>
+ <version>3.1.2-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+
+</project>
Copied: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src (from rev 11393, stack/native/trunk/modules/endorsed/src)
Copied: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main (from rev 11393, stack/native/trunk/modules/endorsed/src/main)
Copied: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources (from rev 11393, stack/native/trunk/modules/endorsed/src/main/resources)
Copied: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF (from rev 11393, stack/native/trunk/modules/endorsed/src/main/resources/META-INF)
Copied: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services (from rev 11393, stack/native/trunk/modules/endorsed/src/main/resources/META-INF/services)
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.rpc.ServiceFactory
===================================================================
--- stack/native/trunk/modules/endorsed/src/main/resources/META-INF/services/javax.xml.rpc.ServiceFactory 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.rpc.ServiceFactory 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1 +0,0 @@
-org.jboss.ws.core.jaxrpc.client.ServiceFactoryImpl
\ No newline at end of file
Copied: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.rpc.ServiceFactory (from rev 11393, stack/native/trunk/modules/endorsed/src/main/resources/META-INF/services/javax.xml.rpc.ServiceFactory)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.rpc.ServiceFactory (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.rpc.ServiceFactory 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1 @@
+org.jboss.ws.core.jaxrpc.client.ServiceFactoryImpl
\ No newline at end of file
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory
===================================================================
--- stack/native/trunk/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1 +0,0 @@
-org.jboss.ws.core.soap.MessageFactoryImpl
\ No newline at end of file
Copied: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory (from rev 11393, stack/native/trunk/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MessageFactory 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1 @@
+org.jboss.ws.core.soap.MessageFactoryImpl
\ No newline at end of file
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory
===================================================================
--- stack/native/trunk/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1 +0,0 @@
-org.jboss.ws.core.soap.SAAJMetaFactoryImpl
\ No newline at end of file
Copied: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory (from rev 11393, stack/native/trunk/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.MetaFactory 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1 @@
+org.jboss.ws.core.soap.SAAJMetaFactoryImpl
\ No newline at end of file
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory
===================================================================
--- stack/native/trunk/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1 +0,0 @@
-org.jboss.ws.core.soap.SOAPFactoryImpl
\ No newline at end of file
Copied: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory (from rev 11393, stack/native/trunk/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.soap.SOAPFactory 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1 @@
+org.jboss.ws.core.soap.SOAPFactoryImpl
\ No newline at end of file
Deleted: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.ws.spi.Provider
===================================================================
--- stack/native/trunk/modules/endorsed/src/main/resources/META-INF/services/javax.xml.ws.spi.Provider 2010-01-13 11:46:29 UTC (rev 11393)
+++ stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.ws.spi.Provider 2010-09-03 15:25:58 UTC (rev 12902)
@@ -1 +0,0 @@
-org.jboss.ws.core.jaxws.spi.ProviderImpl
\ No newline at end of file
Copied: stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.ws.spi.Provider (from rev 11393, stack/native/trunk/modules/endorsed/src/main/resources/META-INF/services/javax.xml.ws.spi.Provider)
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.ws.spi.Provider (rev 0)
+++ stack/native/branches/jbossws-native-3.1.2/modules/endorsed/src/main/resources/META-INF/services/javax.xml.ws.spi.Provider 2010-09-03 15:25:58 UTC (rev 12902)
@@ -0,0 +1 @@
+org.jboss.ws.core.jaxws.spi.ProviderImpl
\ No newline at end of file
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.bat
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.bat 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.bat 2010-09-03 15:25:58 UTC (rev 12902)
@@ -50,10 +50,8 @@
set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jboss-xml-binding.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-jaxws.jar
-set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-jaxws-ext.jar
-set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-jaxrpc.jar
-set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-saaj.jar
+set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/jaxrpc-api.jar
+set WSCONSUME_CLASSPATH=%WSCONSUME_CLASSPATH%;%JBOSS_HOME%/client/saaj-api.jar
rem Execute the command
"%JAVA%" %JAVA_OPTS% -Djava.endorsed.dirs="%JBOSS_ENDORSED_DIRS%" -classpath "%WSCONSUME_CLASSPATH%" org.jboss.wsf.spi.tools.cmd.WSConsume %*
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.sh
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.sh 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsconsume.sh 2010-09-03 15:25:58 UTC (rev 12902)
@@ -75,10 +75,8 @@
WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$JBOSS_HOME/client/jboss-xml-binding.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-jaxws.jar"
-WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$JBOSS_HOME/client/jbossws-native-jaxws-ext.jar"
-WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$JBOSS_HOME/client/jbossws-native-jaxrpc.jar"
-WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$JBOSS_HOME/client/jbossws-native-saaj.jar"
+WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$JBOSS_HOME/client/jaxrpc-api.jar"
+WSCONSUME_CLASSPATH="$WSCONSUME_CLASSPATH:$JBOSS_HOME/client/saaj-api.jar"
###
# Execute the JVM
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.bat 2010-09-03 15:25:58 UTC (rev 12902)
@@ -49,10 +49,8 @@
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-jaxws.jar
-set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-jaxws-ext.jar
-set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-jaxrpc.jar
-set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-saaj.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/wsdl4j.jar
rem Execute the command
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsprovide.sh 2010-09-03 15:25:58 UTC (rev 12902)
@@ -74,10 +74,8 @@
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-jaxws.jar"
-WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$JBOSS_HOME/client/jbossws-native-jaxws-ext.jar"
-WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$JBOSS_HOME/client/jbossws-native-jaxrpc.jar"
-WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$JBOSS_HOME/client/jbossws-native-saaj.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/wsdl4j.jar"
###
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.bat 2010-09-03 15:25:58 UTC (rev 12902)
@@ -54,10 +54,8 @@
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-jaxrpc.jar
-set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-jaxws.jar
-set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-jaxws-ext.jar
-set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-saaj.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
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/FastInfoset.jar
set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/log4j.jar
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wsrunclient.sh 2010-09-03 15:25:58 UTC (rev 12902)
@@ -72,10 +72,8 @@
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-jaxrpc.jar"
-WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/jbossws-native-jaxws.jar"
-WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/jbossws-native-jaxws-ext.jar"
-WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/jbossws-native-saaj.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"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/FastInfoset.jar"
WSRUNCLIENT_CLASSPATH="$WSRUNCLIENT_CLASSPATH:$JBOSS_HOME/client/log4j.jar"
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.bat
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.bat 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.bat 2010-09-03 15:25:58 UTC (rev 12902)
@@ -39,9 +39,8 @@
set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jboss-xml-binding.jar
set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-client.jar
set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-core.jar
-set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-jaxws.jar
-set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-jaxrpc.jar
-set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jbossws-native-saaj.jar
+set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jaxrpc-api.jar
+set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/saaj-api.jar
rem Display our environment
echo ========================================================================="
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.sh
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.sh 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/bin/wstools.sh 2010-09-03 15:25:58 UTC (rev 12902)
@@ -60,9 +60,8 @@
WSTOOLS_CLASSPATH="$WSTOOLS_CLASSPATH:$JBOSS_HOME/client/jboss-xml-binding.jar"
WSTOOLS_CLASSPATH="$WSTOOLS_CLASSPATH:$JBOSS_HOME/client/jbossws-native-client.jar"
WSTOOLS_CLASSPATH="$WSTOOLS_CLASSPATH:$JBOSS_HOME/client/jbossws-native-core.jar"
-WSTOOLS_CLASSPATH="$WSTOOLS_CLASSPATH:$JBOSS_HOME/client/jbossws-native-jaxws.jar"
-WSTOOLS_CLASSPATH="$WSTOOLS_CLASSPATH:$JBOSS_HOME/client/jbossws-native-jaxrpc.jar"
-WSTOOLS_CLASSPATH="$WSTOOLS_CLASSPATH:$JBOSS_HOME/client/jbossws-native-saaj.jar"
+WSTOOLS_CLASSPATH="$WSTOOLS_CLASSPATH:$JBOSS_HOME/client/jaxrpc-api.jar"
+WSTOOLS_CLASSPATH="$WSTOOLS_CLASSPATH:$JBOSS_HOME/client/saaj-api.jar"
# For Cygwin, switch paths to Windows format before running java
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/resources/default-deploy.conf
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/resources/default-deploy.conf 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/resources/default-deploy.conf 2010-09-03 15:25:58 UTC (rev 12902)
@@ -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/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jboss-jaxrpc.jar client/jboss-jaxws-ext.jar client/jboss-jaxws.jar client/jboss-saaj.jar client/jbossws-native-jaxrpc.jar client/jbossws-native-jaxws-ext.jar client/jbossws-native-jaxws.jar client/jbossws-native-saaj.jar client/jbossws-client.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jboss-jaxrpc.jar common/lib/jboss-jaxws-ext.jar common/lib/jboss-jaxws.jar common/lib/jboss-saaj.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jbossws-native-jaxws-ext.jar common/lib/jbossws-native!
-jaxws.jar common/lib/jbossws-native-saaj.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar server/default/deploy/jbossws.sar server/default/deploy/juddi-service.sar server/default/deploy/jbossws-container-jboss-beans.xml 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/policy.jar server/default/deployers/jbossws.deployer/wsdl4j.jar server/default/deployers/jbossws.deployer/xmlsec.jar server/default/deployers/jbossws.deployer/META-INF/jbossws-container-jboss-beans.xml lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar
+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/jaxb-impl.jar client/jaxb-xjc.jar client/jaxws-rt.jar client/jaxws-tools.jar client/jboss-jaxrpc.jar client/jboss-jaxws-ext.jar client/jboss-jaxws.jar client/jboss-saaj.jar client/jbossws-native-jaxrpc.jar client/jbossws-native-jaxws-ext.jar client/jbossws-native-jaxws.jar client/jbossws-native-saaj.jar client/jbossws-client.jar client/jbossws-native-client.jar client/jbossws-native-core.jar client/jbossws-common.jar client/jbossws-framework.jar client/jbossws-spi.jar client/policy.jar client/stax-ex.jar client/streambuffer.jar client/wsdl4j.jar lib/jaxb-api.jar lib/jaxb-impl.jar common/lib/jboss-jaxrpc.jar common/lib/jboss-jaxws-ext.jar common/lib/jboss-jaxws.jar common/lib/jboss-saaj.jar common/lib/jbossws-native-factories.jar common/lib/jbossws-native-jaxrpc.jar common/lib/jbossws-native!
-jaxws-ext.jar common/lib/jbossws-native-jaxws.jar common/lib/jbossws-native-saaj.jar common/lib/jbossws-common.jar common/lib/jbossws-framework.jar common/lib/jbossws-spi.jar server/default/deploy/jbossws.sar server/default/deploy/juddi-service.sar server/default/deploy/jbossws-container-jboss-beans.xml 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/policy.jar server/default/deployers/jbossws.deployer/wsdl4j.jar server/default/deployers/jbossws.deployer/xmlsec.jar server/default/deployers/jbossws.deployer/META-INF/jbossws-container-jboss-beans.xml lib/endorsed/jbossws-native-* lib/endorsed/jaxb-api.jar
Modified: stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2010-09-03 15:25:58 UTC (rev 12902)
@@ -38,11 +38,10 @@
<include name="**/jbossws-framework.jar"/>
<include name="**/jbossws-native-client.jar"/>
<include name="**/jbossws-native-core.jar"/>
- <include name="**/jbossws-native-jaxrpc.jar"/>
- <include name="**/jbossws-native-jaxws.jar"/>
- <include name="**/jbossws-native-jaxws-ext.jar"/>
- <include name="**/jbossws-native-saaj.jar"/>
+ <include name="**/jbossws-native-factories.jar"/>
<include name="**/jbossws-spi.jar"/>
+ <include name="**/jaxrpc-api.jar"/>
+ <include name="**/saaj-api.jar"/>
<include name="**/jettison.jar"/>
<include name="**/stax-api.jar"/>
<include name="**/stax-ex.jar"/>
@@ -56,19 +55,16 @@
</patternset>
<patternset id="jbossws.lib.endorsed.patternset">
- <include name="**/jbossws-native-jaxws.jar"/>
- <include name="**/jbossws-native-jaxws-ext.jar"/>
- <include name="**/jbossws-native-saaj.jar"/>
+ <include name="**/jbossws-native-factories.jar"/>
<include name="**/jaxb-api.jar"/>
</patternset>
<patternset id="jbossws.server.lib.patternset">
<include name="**/jbossws-common.jar"/>
<include name="**/jbossws-framework.jar"/>
- <include name="**/jbossws-native-jaxrpc.jar"/>
- <include name="**/jbossws-native-jaxws.jar"/>
- <include name="**/jbossws-native-jaxws-ext.jar"/>
- <include name="**/jbossws-native-saaj.jar"/>
+ <include name="**/jaxrpc-api.jar"/>
+ <include name="**/jbossws-native-factories.jar"/>
+ <include name="**/saaj-api.jar"/>
<include name="**/jbossws-spi.jar"/>
</patternset>
Modified: stack/native/branches/jbossws-native-3.1.2/modules/testsuite/framework-tests/scripts/antrun-wsconsume.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/testsuite/framework-tests/scripts/antrun-wsconsume.xml 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/testsuite/framework-tests/scripts/antrun-wsconsume.xml 2010-09-03 15:25:58 UTC (rev 12902)
@@ -7,40 +7,25 @@
<!-- ============================================================ -->
<project>
-
+
<!-- ================================================================== -->
- <!-- Generating sources -->
- <!-- ================================================================== -->
+ <!-- Generating sources -->
+ <!-- ================================================================== -->
- <target name="wsconsume" depends="prepend-jars" description="Consume JAX-WS contracts">
+ <target name="wsconsume" depends="prepend-jars" description="Consume JAX-WS contracts">
- <!-- Define the JAX-WS wsconsume task -->
- <taskdef name="wsconsume" classname="org.jboss.wsf.spi.tools.ant.WSConsumeTask">
+ <taskdef name="wsconsume" classname="org.jboss.wsf.spi.tools.ant.WSConsumeTask">
<classpath>
<pathelement path="${wsconsume.classpath}"/>
</classpath>
</taskdef>
- <wsconsume wsdl="${tests.resources.dir}/jaxws/complex/META-INF/wsdl/RegistrationService.wsdl" package="org.jboss.test.ws.jaxws.complex" sourcedestdir="${tests.output.dir}/wsconsume/java" destdir="${tests.output.dir}" nocompile="true" keep="true" verbose="false"/>
- <wsconsume wsdl="${tests.resources.dir}/jaxws/holder/META-INF/wsdl/HolderService.wsdl" package="org.jboss.test.ws.jaxws.holder" sourcedestdir="${tests.output.dir}/wsconsume/java" destdir="${tests.output.dir}" nocompile="true" keep="true" verbose="false"/>
- </target>
-
- <!--
- wsconsume cannot run with jaxws-api from build output
- http://jira.jboss.org/jira/browse/JBWS-2175
- -->
- <target name="available-jars">
- <property name="jaxws.ext.jar" value="${basedir}/../../jaxws-ext/target/jbossws-native-jaxws-ext-${project.version}.jar"/>
- <available property="jaxws.ext.jar.available" file="${jaxws.ext.jar}"/>
- <echo message="jaxws.ext.jar.available=${jaxws.ext.jar.available}"/>
+ <wsconsume wsdl="${tests.resources.dir}/jaxws/complex/META-INF/wsdl/RegistrationService.wsdl" package="org.jboss.test.ws.jaxws.complex" sourcedestdir="${tests.output.dir}/wsconsume/java" destdir="${tests.output.dir}" nocompile="true" keep="true" verbose="false"/>
+ <wsconsume wsdl="${tests.resources.dir}/jaxws/holder/META-INF/wsdl/HolderService.wsdl" package="org.jboss.test.ws.jaxws.holder" sourcedestdir="${tests.output.dir}/wsconsume/java" destdir="${tests.output.dir}" nocompile="true" keep="true" verbose="false"/>
</target>
-
- <target name="prepend-jars" depends="available-jars,prepend-jaxws-ext">
+
+ <target name="prepend-jars">
<property name="wsconsume.classpath" value="${maven.test.classpath}"/>
</target>
-
- <target name="prepend-jaxws-ext" if="jaxws.ext.jar.available">
- <property name="wsconsume.classpath" value="${jaxws.ext.jar}:${maven.test.classpath}"/>
- </target>
-
+
</project>
Modified: stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/scripts/antrun-wsconsume.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/scripts/antrun-wsconsume.xml 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/scripts/antrun-wsconsume.xml 2010-09-03 15:25:58 UTC (rev 12902)
@@ -7,43 +7,28 @@
<!-- ============================================================ -->
<project>
-
+
<!-- ================================================================== -->
<!-- Generating sources -->
<!-- ================================================================== -->
-
+
<target name="wsconsume" depends="prepend-jars" description="Consume JAX-WS contracts">
-
- <!-- Define the JAX-WS wsconsume task -->
+
<taskdef name="wsconsume" classname="org.jboss.wsf.spi.tools.ant.WSConsumeTask">
<classpath>
<pathelement path="${wsconsume.classpath}"/>
</classpath>
</taskdef>
-
+
<wsconsume wsdl="${tests.resources.dir}/benchmark/jaxws/doclit/WEB-INF/wsdl/BenchmarkWebService.wsdl" package="org.jboss.test.ws.benchmark.jaxws.doclit" sourcedestdir="${tests.output.dir}/wsconsume/java" destdir="${tests.output.dir}" nocompile="true" keep="true" verbose="false"/>
<wsconsume wsdl="${tests.resources.dir}/interop/soapwsdl/BaseDataTypesDocLitB/WEB-INF/wsdl/service.wsdl" package="org.jboss.test.ws.interop.soapwsdl.basedoclitb" sourcedestdir="${tests.output.dir}/wsconsume/java" destdir="${tests.output.dir}" nocompile="true" keep="true" verbose="false"/>
<wsconsume wsdl="${tests.resources.dir}/interop/soapwsdl/BaseDataTypesDocLitW/WEB-INF/wsdl/service.wsdl" package="org.jboss.test.ws.interop.soapwsdl.basedoclitw" sourcedestdir="${tests.output.dir}/wsconsume/java" destdir="${tests.output.dir}" nocompile="true" keep="true" verbose="false"/>
<wsconsume wsdl="${tests.resources.dir}/interop/soapwsdl/BaseDataTypesRpcLit/WEB-INF/wsdl/service.wsdl" package="org.jboss.test.ws.interop.soapwsdl.baserpclit" sourcedestdir="${tests.output.dir}/wsconsume/java" destdir="${tests.output.dir}" nocompile="true" keep="true" verbose="false"/>
<wsconsume wsdl="${tests.resources.dir}/jaxws/samples/wssecurity/META-INF/wsdl/HelloService.wsdl" package="org.jboss.test.ws.jaxws.samples.wssecurity" sourcedestdir="${tests.output.dir}/wsconsume/java" destdir="${tests.output.dir}" nocompile="true" keep="true" verbose="false"/>
</target>
-
- <!--
- wsconsume cannot run with jaxws-api from build output
- http://jira.jboss.org/jira/browse/JBWS-2175
- -->
- <target name="available-jars">
- <property name="jaxws.ext.jar" value="${basedir}/../../jaxws-ext/target/jbossws-native-jaxws-ext-${project.version}.jar"/>
- <available property="jaxws.ext.jar.available" file="${jaxws.ext.jar}"/>
- <echo message="jaxws.ext.jar.available=${jaxws.ext.jar.available}"/>
- </target>
-
- <target name="prepend-jars" depends="available-jars,prepend-jaxws-ext">
+
+ <target name="prepend-jars">
<property name="wsconsume.classpath" value="${maven.test.classpath}"/>
</target>
-
- <target name="prepend-jaxws-ext" if="jaxws.ext.jar.available">
- <property name="wsconsume.classpath" value="${jaxws.ext.jar}:${maven.test.classpath}"/>
- </target>
-
+
</project>
Modified: stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/jbws167/HelloJavaBean.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/jbws167/HelloJavaBean.java 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/jbws167/HelloJavaBean.java 2010-09-03 15:25:58 UTC (rev 12902)
@@ -48,7 +48,7 @@
log.info("soapAction: " + Arrays.asList(soapAction));
String retStr;
- if (soapAction != null && soapAction.length == 1 && soapAction[0].equals("\"/foo/bar\""))
+ if (soapAction != null && soapAction.length == 1 && soapAction[0].equals("/foo/bar"))
{
retStr = "[pass]";
}
Modified: stack/native/branches/jbossws-native-3.1.2/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/pom.xml 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/pom.xml 2010-09-03 15:25:58 UTC (rev 12902)
@@ -35,10 +35,7 @@
<!-- Modules -->
<modules>
- <module>modules/saaj</module>
- <module>modules/jaxrpc</module>
- <module>modules/jaxws</module>
- <module>modules/jaxws-ext</module>
+ <module>modules/endorsed</module>
<module>modules/core</module>
<module>modules/client</module>
<module>modules/management</module>
@@ -59,6 +56,10 @@
<codehaus.jettison.version>1.1</codehaus.jettison.version>
<commons.logging.version>1.1.1</commons.logging.version>
<javassist.version>3.9.0.GA</javassist.version>
+ <jaxws.api.version>2.1</jaxws.api.version>
+ <jsr181.api.version>1.0-MR1</jsr181.api.version>
+ <jaxrpc.api.version>1.1</jaxrpc.api.version>
+ <saaj.api.version>1.3</saaj.api.version>
<jaxb.api.version>2.1</jaxb.api.version>
<jaxb.impl.version>2.1.12.patch01</jaxb.impl.version>
<jboss.common.version>1.2.1.GA</jboss.common.version>
@@ -214,6 +215,38 @@
</exclusions>
</dependency>
<dependency>
+ <groupId>javax.xml.ws</groupId>
+ <artifactId>jaxws-api</artifactId>
+ <version>${jaxws.api.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.jws</groupId>
+ <artifactId>jsr181-api</artifactId>
+ <version>${jsr181.api.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml</groupId>
+ <artifactId>jaxrpc-api</artifactId>
+ <version>${jaxrpc.api.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.xml.soap</groupId>
+ <artifactId>saaj-api</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml.soap</groupId>
+ <artifactId>saaj-api</artifactId>
+ <version>${saaj.api.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.activation</groupId>
+ <artifactId>activation</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.api.version}</version>
Modified: stack/native/branches/jbossws-native-3.1.2/src/main/distro/build-project-gen.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/src/main/distro/build-project-gen.xml 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/src/main/distro/build-project-gen.xml 2010-09-03 15:25:58 UTC (rev 12902)
@@ -109,10 +109,9 @@
<pathelement location="${jboss.client}/jaxb-api.jar"/>
<pathelement location="${jboss.client}/jbossws-common.jar"/>
<pathelement location="${jboss.client}/jbossws-spi.jar"/>
- <pathelement location="${jboss.client}/jbossws-native-jaxrpc.jar"/>
- <pathelement location="${jboss.client}/jbossws-native-jaxws.jar"/>
- <pathelement location="${jboss.client}/jbossws-native-jaxws-ext.jar"/>
- <pathelement location="${jboss.client}/jbossws-native-saaj.jar"/>
+ <pathelement location="${jboss.client}/jaxrpc-api.jar"/>
+ <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-client.jar"/>
<path refid="integration.target.javac.classpath" />
Modified: stack/native/branches/jbossws-native-3.1.2/src/main/distro/build.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/src/main/distro/build.xml 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/src/main/distro/build.xml 2010-09-03 15:25:58 UTC (rev 12902)
@@ -59,10 +59,8 @@
<path id="ws.stack.classpath">
<!-- Move the native API to the front of the classpath -->
- <pathelement location="${thirdparty.dir}/jbossws-native-jaxws-ext.jar"/>
- <pathelement location="${thirdparty.dir}/jbossws-native-jaxws.jar"/>
- <pathelement location="${thirdparty.dir}/jbossws-native-jaxrpc.jar"/>
- <pathelement location="${thirdparty.dir}/jbossws-native-saaj.jar"/>
+ <pathelement location="${thirdparty.dir}/jaxrpc-api.jar"/>
+ <pathelement location="${thirdparty.dir}/saaj-api.jar"/>
<fileset dir="${thirdparty.dir}"/>
</path>
Modified: stack/native/branches/jbossws-native-3.1.2/src/main/scripts/assembly-deploy-artifacts.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/src/main/scripts/assembly-deploy-artifacts.xml 2010-09-03 13:05:26 UTC (rev 12901)
+++ stack/native/branches/jbossws-native-3.1.2/src/main/scripts/assembly-deploy-artifacts.xml 2010-09-03 15:25:58 UTC (rev 12902)
@@ -41,10 +41,9 @@
<include>jboss.jaxbintros:jboss-jaxb-intros:jar</include>
<include>org.jboss.ws:jbossws-common:jar</include>
<include>org.jboss.ws:jbossws-spi:jar</include>
- <include>org.jboss.ws.native:jbossws-native-jaxrpc:jar</include>
- <include>org.jboss.ws.native:jbossws-native-jaxws:jar</include>
- <include>org.jboss.ws.native:jbossws-native-jaxws-ext:jar</include>
- <include>org.jboss.ws.native:jbossws-native-saaj: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>stax:stax-api:jar</include>
<include>org.jvnet.staxex:stax-ex:jar</include>
14 years, 3 months
JBossWS SVN: r12901 - in stack/cxf/trunk/modules/testsuite: cxf-spring-tests/src/test/resources/jaxws/samples/wsseEJB/META-INF and 3 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-09-03 09:05:26 -0400 (Fri, 03 Sep 2010)
New Revision: 12901
Modified:
stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsseEJB/WsseEjbTestCase.java
stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/resources/jaxws/samples/wsseEJB/META-INF/jbossws-cxf.xml
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws3060/JBWS3060TestCase.java
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws3098/ClientServerLifeCycleTestCase.java
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/logging/MessageLoggingTestCase.java
Log:
[JBWS-2957] fixing tests to be aligned with new URL pattern scheme
Modified: stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsseEJB/WsseEjbTestCase.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsseEJB/WsseEjbTestCase.java 2010-09-03 12:07:43 UTC (rev 12900)
+++ stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsseEJB/WsseEjbTestCase.java 2010-09-03 13:05:26 UTC (rev 12901)
@@ -43,13 +43,12 @@
/**
* Secure EJB endpoint test
- *
- *
+ *
* @author sberyozk(a)jredhat.com
*/
public class WsseEjbTestCase extends JBossWSTest
{
- public final String TARGET_ENDPOINT_ADDRESS = "http://" + getServerHost() + ":8080/jaxws-samples-wsseEJB/EjbEndpoint";
+ public final String TARGET_ENDPOINT_ADDRESS = "http://" + getServerHost() + ":8080/jaxws-samples-wsseEJB/EjbEndpointService/EjbEndpoint";
public static Test suite()
{
@@ -64,7 +63,6 @@
return port;
}
-
public void testHello() throws Exception
{
EjbEndpoint proxy = getPort();
@@ -77,7 +75,7 @@
{
EjbEndpoint proxy = getPort();
setupWsse(proxy, "kermit");
- try
+ try
{
proxy.greetMe();
fail("Unauthorized exception is expected");
@@ -86,9 +84,6 @@
{
assertEquals("Caller unauthorized", ex.getMessage());
}
-
-
-
}
private void setupWsse(EjbEndpoint proxy, String username)
Modified: stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/resources/jaxws/samples/wsseEJB/META-INF/jbossws-cxf.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/resources/jaxws/samples/wsseEJB/META-INF/jbossws-cxf.xml 2010-09-03 12:07:43 UTC (rev 12900)
+++ stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/resources/jaxws/samples/wsseEJB/META-INF/jbossws-cxf.xml 2010-09-03 13:05:26 UTC (rev 12901)
@@ -12,35 +12,26 @@
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://cxf.apache.org/jaxws
http://cxf.apache.org/schemas/jaxws.xsd'>
-
+
<bean id="SecurityContextIn" class="org.jboss.wsf.stack.cxf.security.authentication.SubjectCreatingInterceptor">
<constructor-arg>
<map>
<entry key="action" value="UsernameToken"/>
</map>
</constructor-arg>
-
<property name="propagateContext" value="true"/>
-
</bean>
-
+
<jaxws:endpoint
id='EjbEndpointImpl'
- address='http://@jboss.bind.address@:8080/jaxws-samples-wsseEJB/EjbEndpoint'
+ address='http://@jboss.bind.address@:8080/jaxws-samples-wsseEJB/EjbEndpointService/EjbEndpoint'
implementor='org.jboss.test.ws.jaxws.samples.wsseEJB.EjbEndpointImpl'>
<jaxws:invoker>
<bean class='org.jboss.wsf.stack.cxf.InvokerEJB3'/>
</jaxws:invoker>
-
<jaxws:inInterceptors>
-
<ref bean="SecurityContextIn"/>
<bean class="org.apache.cxf.binding.soap.saaj.SAAJInInterceptor"/>
-
</jaxws:inInterceptors>
-
</jaxws:endpoint>
-
-
-
</beans>
Modified: stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws3060/JBWS3060TestCase.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws3060/JBWS3060TestCase.java 2010-09-03 12:07:43 UTC (rev 12900)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws3060/JBWS3060TestCase.java 2010-09-03 13:05:26 UTC (rev 12901)
@@ -45,8 +45,8 @@
*/
public class JBWS3060TestCase extends JBossWSTest
{
- private String endpointOneURL = "http://" + getServerHost() + ":8080/jaxws-cxf-jbws3060/EndpointOne";
- private String endpointTwoURL = "http://" + getServerHost() + ":8080/jaxws-cxf-jbws3060/EndpointTwo";
+ private String endpointOneURL = "http://" + getServerHost() + ":8080/jaxws-cxf-jbws3060/ServiceOne/EndpointOne";
+ private String endpointTwoURL = "http://" + getServerHost() + ":8080/jaxws-cxf-jbws3060/ServiceTwo/EndpointTwo";
private String targetNS = "http://org.jboss.ws.jaxws.cxf/jbws3060";
private EndpointOne portOne;
Modified: stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws3098/ClientServerLifeCycleTestCase.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws3098/ClientServerLifeCycleTestCase.java 2010-09-03 12:07:43 UTC (rev 12900)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws3098/ClientServerLifeCycleTestCase.java 2010-09-03 13:05:26 UTC (rev 12901)
@@ -39,35 +39,34 @@
/**
* Verifies the Bus is properly configured with Client/Server LifeCycleManager instances
- *
+ *
* @author alessio.soldano(a)jboss.com
* @since 08-Aug-2010
- *
*/
public class ClientServerLifeCycleTestCase extends JBossWSTest
{
- private String endpointOneURL = "http://" + getServerHost() + ":8080/jaxws-cxf-jbws3098/EndpointOne";
+ private String endpointOneURL = "http://" + getServerHost() + ":8080/jaxws-cxf-jbws3098/ServiceOne/EndpointOne";
private String targetNS = "http://org.jboss.ws.jaxws.cxf/jbws3098";
-
+
public static Test suite()
{
return new JBossWSTestSetup(ClientServerLifeCycleTestCase.class, "jaxws-cxf-jbws3098.jar");
}
-
+
public void testClientLifeCycleManager()
{
Bus bus = BusFactory.newInstance().createBus();
assertNotNull("Cannot find ClientLifeCycleManager impl in current bus", bus.getExtension(ClientLifeCycleManager.class));
bus.shutdown(true);
}
-
+
public void testServerLifeCycleManager()
{
Bus bus = BusFactory.newInstance().createBus();
assertNotNull("Cannot find ServerLifeCycleManager impl in current bus", bus.getExtension(ServerLifeCycleManager.class));
bus.shutdown(true);
}
-
+
public void testCustomClientLifeCycleListener() throws Exception
{
URL wsdlOneURL = new URL(endpointOneURL + "?wsdl");
@@ -81,7 +80,7 @@
assertEquals(1, listener.getCount());
assertEquals("Foo", portOne.echo("Foo"));
}
-
+
private class CustomClientLifeCycleListener implements ClientLifeCycleListener
{
private volatile int count = 0;
@@ -90,7 +89,7 @@
{
return count;
}
-
+
@Override
public void clientCreated(Client client)
{
@@ -102,6 +101,5 @@
{
//NOOP
}
-
}
}
Modified: stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/logging/MessageLoggingTestCase.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/logging/MessageLoggingTestCase.java 2010-09-03 12:07:43 UTC (rev 12900)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/logging/MessageLoggingTestCase.java 2010-09-03 13:05:26 UTC (rev 12901)
@@ -39,22 +39,22 @@
/**
* Tests configuration of message exchange logging using API
- *
+ *
* @author alessio.soldano(a)jboss.com
* @since 08-Jul-2010
*/
public class MessageLoggingTestCase extends JBossWSTest
{
- private String loggingFeatureEndpointURL = "http://" + getServerHost() + ":8080/jaxws-cxf-logging/LoggingFeatureEndpoint";
- private String loggingInterceptorsEndpointURL = "http://" + getServerHost() + ":8080/jaxws-cxf-logging/LoggingInterceptorsEndpoint";
-
+ private String loggingFeatureEndpointURL = "http://" + getServerHost() + ":8080/jaxws-cxf-logging/LoggingFeatureService/LoggingFeatureEndpoint";
+ private String loggingInterceptorsEndpointURL = "http://" + getServerHost() + ":8080/jaxws-cxf-logging/LoggingInterceptorsService/LoggingInterceptorsEndpoint";
+
private LoggingEndpoint port;
public static Test suite()
{
return new JBossWSTestSetup(MessageLoggingTestCase.class, "jaxws-cxf-logging.jar");
}
-
+
public void testLoggingFeature() throws Exception
{
URL wsdlURL = new URL(loggingFeatureEndpointURL + "?wsdl");
@@ -62,7 +62,7 @@
Service service = Service.create(wsdlURL, serviceName);
QName portQName = new QName("http://logging.cxf.jaxws.ws.test.jboss.org/", "LoggingFeatureEndpointPort");
port = (LoggingEndpoint)service.getPort(portQName, LoggingEndpoint.class);
-
+
//This is actually just a sample, the test does not actually assert the logs are written on server side for the exchanges message
//The CXF @Feature on the endpoint ensures exchanged messages are written to the server log
assertEquals("foo", port.echo("foo"));
@@ -82,7 +82,7 @@
{
URL wsdlURL = new URL(loggingFeatureEndpointURL + "?wsdl");
QName serviceName = new QName("http://logging.cxf.jaxws.ws.test.jboss.org/", "LoggingFeatureService");
-
+
Bus bus = BusFactory.newInstance().createBus();
try
{
@@ -92,7 +92,7 @@
myLoggingInterceptor.setPrintWriter(new PrintWriter(out, true));
bus.getInInterceptors().add(myLoggingInterceptor);
BusFactory.setDefaultBus(bus);
-
+
Service service = Service.create(wsdlURL, serviceName);
QName portQName = new QName("http://logging.cxf.jaxws.ws.test.jboss.org/", "LoggingFeatureEndpointPort");
port = (LoggingEndpoint)service.getPort(portQName, LoggingEndpoint.class);
@@ -106,5 +106,4 @@
bus.shutdown(true);
}
}
-
}
14 years, 3 months