JBossWS SVN: r7721 - in stack/native/branches/dlofthouse/JBPAPP-881/src: test/java/org/jboss/test/ws/jaxrpc/jbws1974 and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-06-20 07:59:16 -0400 (Fri, 20 Jun 2008)
New Revision: 7721
Modified:
stack/native/branches/dlofthouse/JBPAPP-881/src/main/java/org/jboss/ws/core/soap/SOAPContentElement.java
stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/JBWS1974TestCase.java
Log:
Further testsuite change and the fix.
Modified: stack/native/branches/dlofthouse/JBPAPP-881/src/main/java/org/jboss/ws/core/soap/SOAPContentElement.java
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/main/java/org/jboss/ws/core/soap/SOAPContentElement.java 2008-06-20 11:18:48 UTC (rev 7720)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/main/java/org/jboss/ws/core/soap/SOAPContentElement.java 2008-06-20 11:59:16 UTC (rev 7721)
@@ -518,8 +518,22 @@
return super.hasAttributes();
}
+ public org.w3c.dom.Node getPreviousSibling()
+ {
+ log.trace("getPreviousSibling");
+ expandToDOM();
+ return super.getPreviousSibling();
+ }
+
+ public org.w3c.dom.Node getNextSibling()
+ {
+ log.trace("getNextSibling");
+ expandToDOM();
+ return super.getNextSibling();
+ }
+
// END Node interface ***********************************************************************************************
-
+
public void writeElement(Writer writer) throws IOException
{
if (soapContent instanceof DOMContent)
Modified: stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/JBWS1974TestCase.java
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/JBWS1974TestCase.java 2008-06-20 11:18:48 UTC (rev 7720)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/JBWS1974TestCase.java 2008-06-20 11:59:16 UTC (rev 7721)
@@ -11,8 +11,8 @@
public class JBWS1974TestCase extends JBossWSTest
{
- private static TestEndpoint port;
-
+ private static TestEndpoint port;
+
public static Test suite() throws Exception
{
return new JBossWSTestSetup(JBWS1974TestCase.class, "jaxrpc-jbws1974.war, jaxrpc-jbws1974-client.jar");
@@ -25,15 +25,16 @@
{
InitialContext iniCtx = getInitialContext();
Service service = (Service)iniCtx.lookup("java:comp/env/service/TestService");
- port = (TestEndpoint)service.getPort(TestEndpoint.class);
+ port = (TestEndpoint)service.getPort(TestEndpoint.class);
}
+
}
public void testCall() throws Exception
{
+ // It is the null value that is required to trigger the failure.
+ EchoType toEcho = new EchoType("A", "b", null);
- EchoType toEcho = new EchoType("A", "b", "3");
-
EchoType response = port.echo(toEcho);
assertEquals(toEcho.getMessage_1(), response.getMessage_1());
16 years, 6 months
JBossWS SVN: r7720 - stack/native/trunk.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-06-20 07:18:48 -0400 (Fri, 20 Jun 2008)
New Revision: 7720
Modified:
stack/native/trunk/pom.xml
Log:
[JBWS-2171] Moving to jboss500x 3.0.2-SNAPSHOT
Modified: stack/native/trunk/pom.xml
===================================================================
--- stack/native/trunk/pom.xml 2008-06-20 11:16:30 UTC (rev 7719)
+++ stack/native/trunk/pom.xml 2008-06-20 11:18:48 UTC (rev 7720)
@@ -58,7 +58,7 @@
<jbossws.jboss422.version>3.0.2.GA</jbossws.jboss422.version>
<jbossws.jboss423.version>3.0.2.GA</jbossws.jboss423.version>
<jbossws.jboss500.version>3.0.2.GA</jbossws.jboss500.version>
- <jbossws.jboss501.version>3.0.2.GA</jbossws.jboss501.version>
+ <jbossws.jboss501.version>3.0.2-SNAPSHOT</jbossws.jboss501.version>
<codehaus.jettison.version>1.0-RC2</codehaus.jettison.version>
<commons.logging.version>1.1.1</commons.logging.version>
<javassist.version>3.6.0.GA</javassist.version>
16 years, 6 months
JBossWS SVN: r7719 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-06-20 07:16:30 -0400 (Fri, 20 Jun 2008)
New Revision: 7719
Modified:
stack/native/trunk/modules/testsuite/test-excludes-jboss501.txt
Log:
[JBWS-2171] svn merge -r 7689:7690 https://svn.jboss.org/repos/jbossws/stack/native/branches/jbossws-native-...
Modified: stack/native/trunk/modules/testsuite/test-excludes-jboss501.txt
===================================================================
--- stack/native/trunk/modules/testsuite/test-excludes-jboss501.txt 2008-06-20 11:13:38 UTC (rev 7718)
+++ stack/native/trunk/modules/testsuite/test-excludes-jboss501.txt 2008-06-20 11:16:30 UTC (rev 7719)
@@ -36,9 +36,6 @@
org/jboss/test/ws/jaxrpc/jbws772/**
org/jboss/test/ws/jaxrpc/jbws1121/**
-# [JBWS-2171] ServiceRef injection in EJB3 clients
-org/jboss/test/ws/jaxws/webserviceref/ServiceRefOverridesTestCase.*
-
# [JBWS-2217] Fix BPEL samples before AS50 goes final
org/jboss/test/ws/jaxrpc/samples/wsbpel/hello/*TestCase.*
16 years, 6 months
JBossWS SVN: r7718 - in stack/native/branches/jbossws-native-3.0.2: modules/client and 11 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-06-20 07:13:38 -0400 (Fri, 20 Jun 2008)
New Revision: 7718
Modified:
stack/native/branches/jbossws-native-3.0.2/modules/client/pom.xml
stack/native/branches/jbossws-native-3.0.2/modules/core/pom.xml
stack/native/branches/jbossws-native-3.0.2/modules/embedded/pom.xml
stack/native/branches/jbossws-native-3.0.2/modules/jaxrpc/pom.xml
stack/native/branches/jbossws-native-3.0.2/modules/jaxws-ext/pom.xml
stack/native/branches/jbossws-native-3.0.2/modules/jaxws/pom.xml
stack/native/branches/jbossws-native-3.0.2/modules/management/pom.xml
stack/native/branches/jbossws-native-3.0.2/modules/resources/pom.xml
stack/native/branches/jbossws-native-3.0.2/modules/saaj/pom.xml
stack/native/branches/jbossws-native-3.0.2/modules/testsuite/framework-tests/pom.xml
stack/native/branches/jbossws-native-3.0.2/modules/testsuite/native-tests/pom.xml
stack/native/branches/jbossws-native-3.0.2/modules/testsuite/pom.xml
stack/native/branches/jbossws-native-3.0.2/pom.xml
Log:
Update to 3.0.2-SNAPSHOT
Modified: stack/native/branches/jbossws-native-3.0.2/modules/client/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/modules/client/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/modules/client/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.2/modules/core/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/modules/core/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/modules/core/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.2/modules/embedded/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/modules/embedded/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/modules/embedded/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.2/modules/jaxrpc/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/modules/jaxrpc/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/modules/jaxrpc/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.2/modules/jaxws/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/modules/jaxws/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/modules/jaxws/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.2/modules/jaxws-ext/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/modules/jaxws-ext/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/modules/jaxws-ext/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.2/modules/management/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/modules/management/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/modules/management/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.2/modules/resources/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/modules/resources/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/modules/resources/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.2/modules/saaj/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/modules/saaj/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/modules/saaj/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.2/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/modules/testsuite/framework-tests/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/modules/testsuite/framework-tests/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.2/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/modules/testsuite/native-tests/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/modules/testsuite/native-tests/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.2/modules/testsuite/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/modules/testsuite/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/modules/testsuite/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.2/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/pom.xml 2008-06-20 11:06:43 UTC (rev 7717)
+++ stack/native/branches/jbossws-native-3.0.2/pom.xml 2008-06-20 11:13:38 UTC (rev 7718)
@@ -20,7 +20,7 @@
<artifactId>jbossws-native</artifactId>
<packaging>pom</packaging>
- <version>3.0.2.GA</version>
+ <version>3.0.2-SNAPSHOT</version>
<!-- Parent -->
<parent>
16 years, 6 months
JBossWS SVN: r7717 - in stack/native/branches/dlofthouse/JBPAPP-881: src/test/resources/jaxrpc/jbws1974/META-INF and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-06-20 07:06:43 -0400 (Fri, 20 Jun 2008)
New Revision: 7717
Modified:
stack/native/branches/dlofthouse/JBPAPP-881/ant-import-tests/build-jars-jaxrpc.xml
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-client.xml
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/web.xml
Log:
Enabled signing.
Modified: stack/native/branches/dlofthouse/JBPAPP-881/ant-import-tests/build-jars-jaxrpc.xml
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/ant-import-tests/build-jars-jaxrpc.xml 2008-06-20 10:58:02 UTC (rev 7716)
+++ stack/native/branches/dlofthouse/JBPAPP-881/ant-import-tests/build-jars-jaxrpc.xml 2008-06-20 11:06:43 UTC (rev 7717)
@@ -2686,7 +2686,12 @@
<include name="webservices.xml"/>
<include name="jaxrpc-mapping.xml"/>
<include name="wsdl/**"/>
+ <include name="jboss-wsse-server.xml"/>
</webinf>
+ <webinf dir="${tests.output.dir}/resources/jaxrpc/jbws1974">
+ <include name="wsse.keystore"/>
+ <include name="wsse.truststore"/>
+ </webinf>
</war>
<jar destfile="${tests.output.dir}/libs/jaxrpc-jbws1974-client.jar">
<fileset dir="${tests.output.dir}/classes">
@@ -2695,6 +2700,7 @@
<metainf dir="${tests.output.dir}/resources/jaxrpc/jbws1974/META-INF">
<include name="application-client.xml"/>
<include name="jboss-client.xml"/>
+ <include name="jboss-wsse-client.xml"/>
</metainf>
<metainf dir="${tests.output.dir}/resources/jaxrpc/jbws1974/WEB-INF">
<include name="jaxrpc-mapping.xml"/>
Modified: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-client.xml
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-client.xml 2008-06-20 10:58:02 UTC (rev 7716)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-client.xml 2008-06-20 11:06:43 UTC (rev 7717)
@@ -9,6 +9,7 @@
<service-ref>
<service-ref-name>service/TestService</service-ref-name>
+ <config-name>Standard WSSecurity Client</config-name>
<wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-jbws1974/TestEndpoint?wsdl</wsdl-override>
</service-ref>
Modified: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/web.xml
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/web.xml 2008-06-20 10:58:02 UTC (rev 7716)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/web.xml 2008-06-20 11:06:43 UTC (rev 7717)
@@ -5,16 +5,11 @@
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
- <!--
- <context-param>
- <param-name>jbossws-config-name</param-name>>
- <param-value>Custom Endpoint Config</param-value>
- </context-param>
- <context-param>
- <param-name>jbossws-config-file</param-name>>
- <param-value>WEB-INF/custom-endpoint-config.xml</param-value>
- </context-param>
- -->
+ <context-param>
+ <param-name>jbossws-config-name</param-name>
+ <param-value>Standard WSSecurity Endpoint</param-value>
+ </context-param>
+
<servlet>
<servlet-name>TestEndpoint</servlet-name>
<servlet-class>
16 years, 6 months
JBossWS SVN: r7716 - stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-06-20 06:58:02 -0400 (Fri, 20 Jun 2008)
New Revision: 7716
Added:
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-wsse-client.xml
Log:
Branch client configuration.
Copied: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-wsse-client.xml (from rev 7715, stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/samples/wssecurity/simple-sign/META-INF/jboss-wsse-client.xml)
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-wsse-client.xml (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-wsse-client.xml 2008-06-20 10:58:02 UTC (rev 7716)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<jboss-ws-security xmlns="http://www.jboss.com/ws-security/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://www.jboss.com/ws-security/config http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd">
+ <config>
+ <sign type="x509v3" alias="wsse"/>
+ <requires>
+ <signature/>
+ </requires>
+ </config>
+</jboss-ws-security>
\ No newline at end of file
16 years, 6 months
JBossWS SVN: r7715 - stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-06-20 06:57:08 -0400 (Fri, 20 Jun 2008)
New Revision: 7715
Added:
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/jboss-wsse-server.xml
Log:
Branch server configuration.
Copied: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/jboss-wsse-server.xml (from rev 7714, stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/samples/wssecurity/simple-sign/jboss-wsse-server.xml)
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/jboss-wsse-server.xml (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/jboss-wsse-server.xml 2008-06-20 10:57:08 UTC (rev 7715)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<jboss-ws-security xmlns="http://www.jboss.com/ws-security/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://www.jboss.com/ws-security/config http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd">
+ <key-store-file>WEB-INF/wsse.keystore</key-store-file>
+ <key-store-password>jbossws</key-store-password>
+ <trust-store-file>WEB-INF/wsse.truststore</trust-store-file>
+ <trust-store-password>jbossws</trust-store-password>
+ <config>
+ <sign type="x509v3" alias="wsse"/>
+ <requires>
+ <signature/>
+ </requires>
+ </config>
+</jboss-ws-security>
\ No newline at end of file
16 years, 6 months
JBossWS SVN: r7714 - stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-06-20 06:55:53 -0400 (Fri, 20 Jun 2008)
New Revision: 7714
Added:
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/wsse.keystore
Log:
Branch existing keystore.
Copied: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/wsse.keystore (from rev 7713, stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/samples/wssecurity/wsse.keystore)
===================================================================
(Binary files differ)
16 years, 6 months
JBossWS SVN: r7713 - stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-06-20 06:55:24 -0400 (Fri, 20 Jun 2008)
New Revision: 7713
Added:
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/wsse.truststore
Log:
Branch existing truststore.
Copied: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/wsse.truststore (from rev 7712, stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/samples/wssecurity/wsse.truststore)
===================================================================
(Binary files differ)
16 years, 6 months
JBossWS SVN: r7712 - in stack/native/branches/dlofthouse/JBPAPP-881: src/test/java/org/jboss/test/ws/jaxrpc and 6 other directories.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-06-20 06:53:51 -0400 (Fri, 20 Jun 2008)
New Revision: 7712
Added:
stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/
stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/EchoType.java
stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/JBWS1974TestCase.java
stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/TestEndpoint.java
stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/TestEndpointImpl.java
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/application-client.xml
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-client.xml
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/jaxrpc-mapping.xml
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/web.xml
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/webservices.xml
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/wsdl/
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/wsdl/TestService.wsdl
stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/wstools-config.xml
Modified:
stack/native/branches/dlofthouse/JBPAPP-881/ant-import-tests/build-jars-jaxrpc.xml
Log:
Initial TestCase.
Modified: stack/native/branches/dlofthouse/JBPAPP-881/ant-import-tests/build-jars-jaxrpc.xml
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/ant-import-tests/build-jars-jaxrpc.xml 2008-06-20 10:32:33 UTC (rev 7711)
+++ stack/native/branches/dlofthouse/JBPAPP-881/ant-import-tests/build-jars-jaxrpc.xml 2008-06-20 10:53:51 UTC (rev 7712)
@@ -2674,7 +2674,34 @@
<include name="wsdl/**"/>
</metainf>
</jar>
-
+
+ <!-- jaxrpc-jbws1974 -->
+ <war warfile="${tests.output.dir}/libs/jaxrpc-jbws1974.war" webxml="${tests.output.dir}/resources/jaxrpc/jbws1974/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/classes">
+ <include name="org/jboss/test/ws/jaxrpc/jbws1974/TestEndpoint.class"/>
+ <include name="org/jboss/test/ws/jaxrpc/jbws1974/TestEndpointImpl.class"/>
+ <include name="org/jboss/test/ws/jaxrpc/jbws1974/EchoType.class"/>
+ </classes>
+ <webinf dir="${tests.output.dir}/resources/jaxrpc/jbws1974/WEB-INF">
+ <include name="webservices.xml"/>
+ <include name="jaxrpc-mapping.xml"/>
+ <include name="wsdl/**"/>
+ </webinf>
+ </war>
+ <jar destfile="${tests.output.dir}/libs/jaxrpc-jbws1974-client.jar">
+ <fileset dir="${tests.output.dir}/classes">
+ <include name="org/jboss/test/ws/jbws1974/TestEndpoint.class"/>
+ </fileset>
+ <metainf dir="${tests.output.dir}/resources/jaxrpc/jbws1974/META-INF">
+ <include name="application-client.xml"/>
+ <include name="jboss-client.xml"/>
+ </metainf>
+ <metainf dir="${tests.output.dir}/resources/jaxrpc/jbws1974/WEB-INF">
+ <include name="jaxrpc-mapping.xml"/>
+ <include name="wsdl/**"/>
+ </metainf>
+ </jar>
+
<!-- jaxrpc-marshall-doclit.war -->
<war warfile="${tests.output.dir}/libs/jaxrpc-marshall-doclit.war" webxml="${tests.output.dir}/resources/jaxrpc/marshall-doclit/WEB-INF/web.xml">
<classes dir="${tests.output.dir}/classes">
Added: stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/EchoType.java
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/EchoType.java (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/EchoType.java 2008-06-20 10:53:51 UTC (rev 7712)
@@ -0,0 +1,75 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt 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.jaxrpc.jbws1974;
+
+/**
+ * @author darran.lofthouse(a)jboss.com
+ * @since June 20, 2008
+ */
+public class EchoType
+{
+
+ private String message_1;
+
+ private String message_2;
+
+ private String message_3;
+
+ public EchoType(final String message_1, final String message_2, final String message_3)
+ {
+ super();
+ this.message_1 = message_1;
+ this.message_2 = message_2;
+ this.message_3 = message_3;
+ }
+
+ public String getMessage_1()
+ {
+ return message_1;
+ }
+
+ public void setMessage_1(String message_1)
+ {
+ this.message_1 = message_1;
+ }
+
+ public String getMessage_2()
+ {
+ return message_2;
+ }
+
+ public void setMessage_2(String message_2)
+ {
+ this.message_2 = message_2;
+ }
+
+ public String getMessage_3()
+ {
+ return message_3;
+ }
+
+ public void setMessage_3(String message_3)
+ {
+ this.message_3 = message_3;
+ }
+
+}
Property changes on: stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/EchoType.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/JBWS1974TestCase.java
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/JBWS1974TestCase.java (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/JBWS1974TestCase.java 2008-06-20 10:53:51 UTC (rev 7712)
@@ -0,0 +1,44 @@
+package org.jboss.test.ws.jaxrpc.jbws1974;
+
+import javax.naming.InitialContext;
+import javax.xml.rpc.Service;
+
+import junit.framework.Test;
+
+import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.wsf.test.JBossWSTestSetup;
+
+public class JBWS1974TestCase extends JBossWSTest
+{
+
+ private static TestEndpoint port;
+
+ public static Test suite() throws Exception
+ {
+ return new JBossWSTestSetup(JBWS1974TestCase.class, "jaxrpc-jbws1974.war, jaxrpc-jbws1974-client.jar");
+ }
+
+ public void setUp() throws Exception
+ {
+ super.setUp();
+ if (port == null)
+ {
+ InitialContext iniCtx = getInitialContext();
+ Service service = (Service)iniCtx.lookup("java:comp/env/service/TestService");
+ port = (TestEndpoint)service.getPort(TestEndpoint.class);
+ }
+ }
+
+ public void testCall() throws Exception
+ {
+
+ EchoType toEcho = new EchoType("A", "b", "3");
+
+ EchoType response = port.echo(toEcho);
+
+ assertEquals(toEcho.getMessage_1(), response.getMessage_1());
+ assertEquals(toEcho.getMessage_2(), response.getMessage_2());
+ assertEquals(toEcho.getMessage_3(), response.getMessage_3());
+ }
+
+}
Property changes on: stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/JBWS1974TestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/TestEndpoint.java
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/TestEndpoint.java (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/TestEndpoint.java 2008-06-20 10:53:51 UTC (rev 7712)
@@ -0,0 +1,36 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt 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.jaxrpc.jbws1974;
+
+import java.rmi.Remote;
+import java.rmi.RemoteException;
+
+/**
+ * @author darran.lofthouse(a)jboss.com
+ * @since June 20, 2008
+ */
+public interface TestEndpoint extends Remote
+{
+
+ public EchoType echo(final EchoType echoType) throws RemoteException;
+
+}
Property changes on: stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/TestEndpoint.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/TestEndpointImpl.java
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/TestEndpointImpl.java (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/TestEndpointImpl.java 2008-06-20 10:53:51 UTC (rev 7712)
@@ -0,0 +1,36 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt 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.jaxrpc.jbws1974;
+
+/**
+ * @author darran.lofthouse(a)jboss.com
+ * @since June 20, 2008
+ */
+public class TestEndpointImpl implements TestEndpoint
+{
+
+ public EchoType echo(final EchoType echoType)
+ {
+ return echoType;
+ }
+
+}
Property changes on: stack/native/branches/dlofthouse/JBPAPP-881/src/test/java/org/jboss/test/ws/jaxrpc/jbws1974/TestEndpointImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/application-client.xml
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/application-client.xml (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/application-client.xml 2008-06-20 10:53:51 UTC (rev 7712)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<application-client xmlns="http://java.sun.com/xml/ns/j2ee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/application-client_1_4.xsd"
+ version="1.4">
+
+ <display-name>TestService</display-name>
+
+ <service-ref>
+ <service-ref-name>service/TestService</service-ref-name>
+ <service-interface>javax.xml.rpc.Service</service-interface>
+ <wsdl-file>META-INF/wsdl/TestService.wsdl</wsdl-file>
+ <jaxrpc-mapping-file>META-INF/jaxrpc-mapping.xml</jaxrpc-mapping-file>
+ <port-component-ref>
+ <service-endpoint-interface>org.jboss.test.ws.jaxrpc.jbws1974.TestEndpoint</service-endpoint-interface>
+ </port-component-ref>
+ </service-ref>
+
+</application-client>
+
Property changes on: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/application-client.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-client.xml
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-client.xml (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-client.xml 2008-06-20 10:53:51 UTC (rev 7712)
@@ -0,0 +1,15 @@
+<?xml version='1.0' encoding='UTF-8' ?>
+
+<!DOCTYPE jboss-client PUBLIC
+ "-//JBoss//DTD Application Client 4.0//EN"
+ "http://www.jboss.org/j2ee/dtd/jboss-client_4_0.dtd">
+
+<jboss-client>
+ <jndi-name>jbossws-client</jndi-name>
+
+ <service-ref>
+ <service-ref-name>service/TestService</service-ref-name>
+ <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-jbws1974/TestEndpoint?wsdl</wsdl-override>
+ </service-ref>
+
+</jboss-client>
Property changes on: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/META-INF/jboss-client.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/jaxrpc-mapping.xml
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/jaxrpc-mapping.xml (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/jaxrpc-mapping.xml 2008-06-20 10:53:51 UTC (rev 7712)
@@ -0,0 +1,54 @@
+<?xml version='1.0' encoding='UTF-8'?><java-wsdl-mapping version='1.1' xmlns='http://java.sun.com/xml/ns/j2ee' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://java.sun.com/xml/ns/j2ee http://www.ibm.com/webservices/xsd/j2ee_jaxrpc_mapping_1_1.xsd'>
+ <package-mapping>
+ <package-type>org.jboss.test.ws.jaxrpc.jbws1974</package-type>
+ <namespaceURI>http://org.jboss.test.ws/jbws1974/types</namespaceURI>
+ </package-mapping>
+ <java-xml-type-mapping>
+ <java-type>org.jboss.test.ws.jaxrpc.jbws1974.EchoType</java-type>
+ <root-type-qname xmlns:typeNS='http://org.jboss.test.ws/jbws1974/types'>typeNS:EchoType</root-type-qname>
+ <qname-scope>complexType</qname-scope>
+ <variable-mapping>
+ <java-variable-name>message_1</java-variable-name>
+ <xml-element-name>message_1</xml-element-name>
+ </variable-mapping>
+ <variable-mapping>
+ <java-variable-name>message_2</java-variable-name>
+ <xml-element-name>message_2</xml-element-name>
+ </variable-mapping>
+ <variable-mapping>
+ <java-variable-name>message_3</java-variable-name>
+ <xml-element-name>message_3</xml-element-name>
+ </variable-mapping>
+ </java-xml-type-mapping>
+ <service-interface-mapping>
+ <service-interface>org.jboss.test.ws.jaxrpc.jbws1974.TestService</service-interface>
+ <wsdl-service-name xmlns:serviceNS='http://org.jboss.test.ws/jbws1974'>serviceNS:TestService</wsdl-service-name>
+ <port-mapping>
+ <port-name>TestEndpointPort</port-name>
+ <java-port-name>TestEndpointPort</java-port-name>
+ </port-mapping>
+ </service-interface-mapping>
+ <service-endpoint-interface-mapping>
+ <service-endpoint-interface>org.jboss.test.ws.jaxrpc.jbws1974.TestEndpoint</service-endpoint-interface>
+ <wsdl-port-type xmlns:portTypeNS='http://org.jboss.test.ws/jbws1974'>portTypeNS:TestEndpoint</wsdl-port-type>
+ <wsdl-binding xmlns:bindingNS='http://org.jboss.test.ws/jbws1974'>bindingNS:TestEndpointBinding</wsdl-binding>
+ <service-endpoint-method-mapping>
+ <java-method-name>echo</java-method-name>
+ <wsdl-operation>echo</wsdl-operation>
+ <method-param-parts-mapping>
+ <param-position>0</param-position>
+ <param-type>org.jboss.test.ws.jaxrpc.jbws1974.EchoType</param-type>
+ <wsdl-message-mapping>
+ <wsdl-message xmlns:wsdlMsgNS='http://org.jboss.test.ws/jbws1974'>wsdlMsgNS:TestEndpoint_echo</wsdl-message>
+ <wsdl-message-part-name>EchoType_1</wsdl-message-part-name>
+ <parameter-mode>IN</parameter-mode>
+ </wsdl-message-mapping>
+ </method-param-parts-mapping>
+ <wsdl-return-value-mapping>
+ <method-return-value>org.jboss.test.ws.jaxrpc.jbws1974.EchoType</method-return-value>
+ <wsdl-message xmlns:wsdlMsgNS='http://org.jboss.test.ws/jbws1974'>wsdlMsgNS:TestEndpoint_echoResponse</wsdl-message>
+ <wsdl-message-part-name>result</wsdl-message-part-name>
+ </wsdl-return-value-mapping>
+ </service-endpoint-method-mapping>
+ </service-endpoint-interface-mapping>
+</java-wsdl-mapping>
\ No newline at end of file
Property changes on: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/jaxrpc-mapping.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/web.xml
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/web.xml (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/web.xml 2008-06-20 10:53:51 UTC (rev 7712)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
+ version="2.4">
+
+ <!--
+ <context-param>
+ <param-name>jbossws-config-name</param-name>>
+ <param-value>Custom Endpoint Config</param-value>
+ </context-param>
+ <context-param>
+ <param-name>jbossws-config-file</param-name>>
+ <param-value>WEB-INF/custom-endpoint-config.xml</param-value>
+ </context-param>
+ -->
+ <servlet>
+ <servlet-name>TestEndpoint</servlet-name>
+ <servlet-class>
+ org.jboss.test.ws.jaxrpc.jbws1974.TestEndpointImpl
+ </servlet-class>
+ </servlet>
+
+ <servlet-mapping>
+ <servlet-name>TestEndpoint</servlet-name>
+ <url-pattern>/TestEndpoint</url-pattern>
+ </servlet-mapping>
+
+</web-app>
+
Property changes on: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/web.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/webservices.xml
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/webservices.xml (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/webservices.xml 2008-06-20 10:53:51 UTC (rev 7712)
@@ -0,0 +1,15 @@
+<webservices version='1.1' xmlns='http://java.sun.com/xml/ns/j2ee' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://java.sun.com/xml/ns/j2ee http://www.ibm.com/webservices/xsd/j2ee_web_services_1_1.xsd'>
+ <webservice-description>
+ <webservice-description-name>TestService</webservice-description-name>
+ <wsdl-file>WEB-INF/wsdl/TestService.wsdl</wsdl-file>
+ <jaxrpc-mapping-file>WEB-INF/jaxrpc-mapping.xml</jaxrpc-mapping-file>
+ <port-component>
+ <port-component-name>TestEndpointPort</port-component-name>
+ <wsdl-port xmlns:portNS='http://org.jboss.test.ws/jbws1974'>portNS:TestEndpointPort</wsdl-port>
+ <service-endpoint-interface>org.jboss.test.ws.jaxrpc.jbws1974.TestEndpoint</service-endpoint-interface>
+ <service-impl-bean>
+ <servlet-link>TestEndpoint</servlet-link>
+ </service-impl-bean>
+ </port-component>
+ </webservice-description>
+</webservices>
\ No newline at end of file
Property changes on: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/webservices.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/wsdl/TestService.wsdl
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/wsdl/TestService.wsdl (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/wsdl/TestService.wsdl 2008-06-20 10:53:51 UTC (rev 7712)
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<definitions name='TestService' targetNamespace='http://org.jboss.test.ws/jbws1974' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://org.jboss.test.ws/jbws1974/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://org.jboss.test.ws/jbws1974' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
+ <types>
+ <schema targetNamespace='http://org.jboss.test.ws/jbws1974/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://org.jboss.test.ws/jbws1974/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
+ <complexType name='EchoType'>
+ <sequence>
+ <element name='message_1' nillable='true' type='string'/>
+ <element name='message_2' nillable='true' type='string'/>
+ <element name='message_3' nillable='true' type='string'/>
+ </sequence>
+ </complexType>
+ </schema>
+ </types>
+ <message name='TestEndpoint_echo' xmlns='http://schemas.xmlsoap.org/wsdl/'>
+ <part name='EchoType_1' type='ns1:EchoType'/>
+ </message>
+ <message name='TestEndpoint_echoResponse'>
+ <part name='result' type='ns1:EchoType'/>
+ </message>
+ <portType name='TestEndpoint'>
+ <operation name='echo' parameterOrder='EchoType_1'>
+ <input message='tns:TestEndpoint_echo'/>
+ <output message='tns:TestEndpoint_echoResponse'/>
+ </operation>
+ </portType>
+ <binding name='TestEndpointBinding' type='tns:TestEndpoint'>
+ <soap:binding style='rpc' transport='http://schemas.xmlsoap.org/soap/http'/>
+ <operation name='echo'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body namespace='http://org.jboss.test.ws/jbws1974' use='literal'/>
+ </input>
+ <output>
+ <soap:body namespace='http://org.jboss.test.ws/jbws1974' use='literal'/>
+ </output>
+ </operation>
+ </binding>
+ <service name='TestService'>
+ <port binding='tns:TestEndpointBinding' name='TestEndpointPort'>
+ <soap:address location='REPLACE_WITH_ACTUAL_URL'/>
+ </port>
+ </service>
+</definitions>
\ No newline at end of file
Property changes on: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/WEB-INF/wsdl/TestService.wsdl
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/wstools-config.xml
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/wstools-config.xml (rev 0)
+++ stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/wstools-config.xml 2008-06-20 10:53:51 UTC (rev 7712)
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ wstools.sh -cp ../../../../../output/tests/classes -config wstools-config.xml
+-->
+
+<configuration xmlns="http://www.jboss.org/jbossws-tools"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://www.jboss.org/jbossws-tools http://www.jboss.org/jbossws-tools/schema/jbossws-tool_1_0.xsd">
+
+ <java-wsdl>
+ <service name="TestService" endpoint="org.jboss.test.ws.jaxrpc.jbws1974.TestEndpoint" style="rpc">
+ </service>
+ <namespaces target-namespace="http://org.jboss.test.ws/jbws1974" type-namespace="http://org.jboss.test.ws/jbws1974/types"/>
+ <mapping file="jaxrpc-mapping.xml"/>
+ <webservices servlet-link="TestEndpoint"/>
+ </java-wsdl>
+
+</configuration>
Property changes on: stack/native/branches/dlofthouse/JBPAPP-881/src/test/resources/jaxrpc/jbws1974/wstools-config.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
16 years, 6 months