JBossWS SVN: r6614 - in stack/cxf/trunk: src/test/java/org/jboss/test/ws/jaxws/samples and 6 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-04-22 10:36:26 -0400 (Tue, 22 Apr 2008)
New Revision: 6614
Added:
stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/
stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java
stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java
stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java
stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/
stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java
stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java
stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/
stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/
stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/jbossws-cxf.xml
stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml
stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/
stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl
stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/cxf-client-config.xml
Removed:
stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/
stack/cxf/trunk/src/test/resources/jaxws/samples/wsaddressing/
Modified:
stack/cxf/trunk/ant-import-tests/build-samples-jaxws.xml
Log:
[JBWS-2100] refactoring
Modified: stack/cxf/trunk/ant-import-tests/build-samples-jaxws.xml
===================================================================
--- stack/cxf/trunk/ant-import-tests/build-samples-jaxws.xml 2008-04-22 14:22:13 UTC (rev 6613)
+++ stack/cxf/trunk/ant-import-tests/build-samples-jaxws.xml 2008-04-22 14:36:26 UTC (rev 6614)
@@ -18,19 +18,19 @@
<mkdir dir="${tests.output.dir}/test-libs"/>
- <!-- jaxws-samples-wsaddressing -->
+ <!-- jaxws-samples-wsa -->
<war
- warfile="${tests.output.dir}/test-libs/jaxws-samples-wsaddressing.war"
- webxml="${tests.output.dir}/test-resources/jaxws/samples/wsaddressing/WEB-INF/web.xml">
+ warfile="${tests.output.dir}/test-libs/jaxws-samples-wsa.war"
+ webxml="${tests.output.dir}/test-resources/jaxws/samples/wsa/WEB-INF/web.xml">
<classes dir="${tests.output.dir}/test-classes">
- <include name="org/jboss/test/ws/jaxws/samples/wsaddressing/Service*.class"/>
- <include name="org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/*.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/wsa/Service*.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/wsa/jaxws/*.class"/>
</classes>
- <webinf dir="${tests.output.dir}/test-resources/jaxws/samples/wsaddressing/WEB-INF">
+ <webinf dir="${tests.output.dir}/test-resources/jaxws/samples/wsa/WEB-INF">
<include name="jbossws-cxf.xml"/>
</webinf>
<zipfileset
- dir="${tests.output.dir}/test-resources/jaxws/samples/wsaddressing/WEB-INF/wsdl"
+ dir="${tests.output.dir}/test-resources/jaxws/samples/wsa/WEB-INF/wsdl"
prefix="WEB-INF/wsdl"/>
</war>
Added: stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java
===================================================================
--- stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java (rev 0)
+++ stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java 2008-04-22 14:36:26 UTC (rev 6614)
@@ -0,0 +1,79 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.samples.wsa;
+
+import java.io.File;
+import java.net.URL;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import junit.framework.Test;
+import org.apache.cxf.Bus;
+import org.apache.cxf.bus.spring.SpringBusFactory;
+import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.wsf.test.JBossWSTestSetup;
+
+/**
+ * Client invoking web service using WS-Addressing
+ *
+ * @author richard.opalka(a)jboss.com
+ */
+public final class AddressingTestCase extends JBossWSTest
+{
+ private final String serviceURL = "http://" + getServerHost() + ":8080/jaxws-samples-wsa/AddressingService";
+ private ServiceIface proxy;
+ private Bus bus;
+
+ public static Test suite()
+ {
+ return new JBossWSTestSetup(AddressingTestCase.class, "jaxws-samples-wsa.war");
+ }
+
+ @Override
+ protected void setUp() throws Exception
+ {
+ super.setUp();
+
+ SpringBusFactory busFactory = new SpringBusFactory();
+ URL cxfConfig = new File("test-resources/jaxws/samples/wsa/cxf-client-config.xml").toURL();
+ bus = busFactory.createBus(cxfConfig);
+ busFactory.setDefaultBus(bus);
+
+ QName serviceName = new QName("http://www.jboss.org/jbossws/ws-extensions/wsaddressing", "AddressingService");
+ URL wsdlURL = new URL(serviceURL + "?wsdl");
+ Service service = Service.create(wsdlURL, serviceName);
+ proxy = (ServiceIface)service.getPort(ServiceIface.class);
+ }
+
+ @Override
+ protected void tearDown() throws Exception
+ {
+ bus.shutdown(true);
+
+ super.tearDown();
+ }
+
+ public void test() throws Exception
+ {
+ assertEquals("Hello World!", proxy.sayHello());
+ }
+
+}
Property changes on: stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java
===================================================================
--- stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java (rev 0)
+++ stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java 2008-04-22 14:36:26 UTC (rev 6614)
@@ -0,0 +1,35 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.samples.wsa;
+
+import javax.jws.WebMethod;
+import javax.jws.WebService;
+
+@WebService
+(
+ targetNamespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing"
+)
+public interface ServiceIface
+{
+ @WebMethod
+ String sayHello();
+}
Property changes on: stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java
===================================================================
--- stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java (rev 0)
+++ stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java 2008-04-22 14:36:26 UTC (rev 6614)
@@ -0,0 +1,40 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.samples.wsa;
+
+import javax.jws.WebService;
+
+@WebService
+(
+ portName = "AddressingServicePort",
+ serviceName = "AddressingService",
+ wsdlLocation = "WEB-INF/wsdl/AddressingService.wsdl",
+ targetNamespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing",
+ endpointInterface = "org.jboss.test.ws.jaxws.samples.wsa.ServiceIface"
+)
+public class ServiceImpl implements ServiceIface
+{
+ public String sayHello()
+ {
+ return "Hello World!";
+ }
+}
Property changes on: stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java
===================================================================
--- stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java (rev 0)
+++ stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java 2008-04-22 14:36:26 UTC (rev 6614)
@@ -0,0 +1,24 @@
+
+package org.jboss.test.ws.jaxws.samples.wsa.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+/**
+ * This class was generated by the CXF 2.0.5-incubator
+ * Mon Apr 21 16:36:02 CEST 2008
+ * Generated source version: 2.0.5-incubator
+ *
+ */
+
+@XmlRootElement(name = "sayHello", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "sayHello", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+
+public class SayHello {
+
+
+}
+
Property changes on: stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java
===================================================================
--- stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java (rev 0)
+++ stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java 2008-04-22 14:36:26 UTC (rev 6614)
@@ -0,0 +1,35 @@
+
+package org.jboss.test.ws.jaxws.samples.wsa.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+/**
+ * This class was generated by the CXF 2.0.5-incubator
+ * Mon Apr 21 16:36:02 CEST 2008
+ * Generated source version: 2.0.5-incubator
+ *
+ */
+
+@XmlRootElement(name = "sayHelloResponse", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "sayHelloResponse", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+
+public class SayHelloResponse {
+
+ @XmlElement(name = "return")
+ private java.lang.String _return;
+
+ public java.lang.String get_return() {
+ return this._return;
+ }
+
+ public void set_return( java.lang.String new_return ) {
+ this._return = new_return;
+ }
+
+}
+
Property changes on: stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/jbossws-cxf.xml
===================================================================
--- stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/jbossws-cxf.xml (rev 0)
+++ stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/jbossws-cxf.xml 2008-04-22 14:36:26 UTC (rev 6614)
@@ -0,0 +1,23 @@
+<beans
+ xmlns='http://www.springframework.org/schema/beans'
+ xmlns:jaxws='http://cxf.apache.org/jaxws'
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
+ xmlns:wsa="http://cxf.apache.org/ws/addressing"
+ xsi:schemaLocation='
+ http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+ http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
+ '>
+
+ <jaxws:endpoint
+ id='ServiceImpl'
+ address='http://@jboss.bind.address@:8080/jaxws-samples-wsa'
+ implementor='org.jboss.test.ws.jaxws.samples.wsa.ServiceImpl'>
+ <jaxws:invoker>
+ <bean class='org.jboss.wsf.stack.cxf.InvokerJSE'/>
+ </jaxws:invoker>
+ <jaxws:features>
+ <wsa:addressing usingAddressingAdvisory="false" allowDuplicates="false"/>
+ </jaxws:features>
+ </jaxws:endpoint>
+
+</beans>
Property changes on: stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/jbossws-cxf.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml
===================================================================
--- stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml (rev 0)
+++ stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml 2008-04-22 14:36:26 UTC (rev 6614)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<web-app
+ version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
+ <servlet>
+ <servlet-name>AddressingService</servlet-name>
+ <servlet-class>org.jboss.test.ws.jaxws.samples.wsa.ServiceImpl</servlet-class>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>AddressingService</servlet-name>
+ <url-pattern>/*</url-pattern>
+ </servlet-mapping>
+</web-app>
Property changes on: stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl
===================================================================
--- stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl (rev 0)
+++ stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl 2008-04-22 14:36:26 UTC (rev 6614)
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<wsdl:definitions name="AddressingService" targetNamespace="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" xmlns:tns="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
+ <wsdl:types>
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://www.jboss.org/jbossws/ws-extensions/wsaddressing">
+<xsd:element name="sayHello" type="tns:sayHello"/>
+<xsd:complexType name="sayHello">
+<xsd:sequence/>
+</xsd:complexType>
+<xsd:element name="sayHelloResponse" type="tns:sayHelloResponse"/>
+<xsd:complexType name="sayHelloResponse">
+<xsd:sequence>
+<xsd:element minOccurs="0" name="return" type="xsd:string"/>
+</xsd:sequence>
+</xsd:complexType>
+</xsd:schema>
+ </wsdl:types>
+ <wsdl:message name="sayHelloResponse">
+ <wsdl:part name="parameters" element="tns:sayHelloResponse">
+ </wsdl:part>
+ </wsdl:message>
+ <wsdl:message name="sayHello">
+ <wsdl:part name="parameters" element="tns:sayHello">
+ </wsdl:part>
+ </wsdl:message>
+ <wsdl:portType name="ServiceIface">
+ <wsdl:operation name="sayHello">
+ <wsdl:input name="sayHello" message="tns:sayHello">
+ </wsdl:input>
+ <wsdl:output name="sayHelloResponse" message="tns:sayHelloResponse">
+ </wsdl:output>
+ </wsdl:operation>
+ </wsdl:portType>
+ <wsdl:binding name="AddressingServiceSoapBinding" type="tns:ServiceIface">
+ <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+ <wsdl:operation name="sayHello">
+ <soap:operation soapAction="" style="document"/>
+ <wsdl:input name="sayHello">
+ <soap:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output name="sayHelloResponse">
+ <soap:body use="literal"/>
+ </wsdl:output>
+ </wsdl:operation>
+ </wsdl:binding>
+ <wsdl:service name="AddressingService">
+ <wsdl:port name="AddressingServicePort" binding="tns:AddressingServiceSoapBinding">
+ <soap:address location="http://localhost:9090/hello"/>
+ <UsingAddressing xmlns="http://www.w3.org/2006/05/addressing/wsdl"/>
+ </wsdl:port>
+ </wsdl:service>
+</wsdl:definitions>
Property changes on: stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/cxf-client-config.xml
===================================================================
--- stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/cxf-client-config.xml (rev 0)
+++ stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/cxf-client-config.xml 2008-04-22 14:36:26 UTC (rev 6614)
@@ -0,0 +1,18 @@
+<beans
+ xmlns="http://www.springframework.org/schema/beans"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:cxf="http://cxf.apache.org/core"
+ xmlns:wsa="http://cxf.apache.org/ws/addressing"
+ xsi:schemaLocation="
+ http://cxf.apache.org/core
+ http://cxf.apache.org/schemas/core.xsd
+ http://www.springframework.org/schema/beans
+ http://www.springframework.org/schema/beans/spring-beans.xsd">
+
+ <cxf:bus>
+ <cxf:features>
+ <wsa:addressing/>
+ </cxf:features>
+ </cxf:bus>
+
+</beans>
Property changes on: stack/cxf/trunk/src/test/resources/jaxws/samples/wsa/cxf-client-config.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
18 years
JBossWS SVN: r6613 - in stack/metro/trunk: src/test/java/org/jboss/test/ws/jaxws/samples and 6 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-04-22 10:22:13 -0400 (Tue, 22 Apr 2008)
New Revision: 6613
Added:
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java
stack/metro/trunk/src/test/resources/jaxws/samples/wsa/
stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/
stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml
stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/
stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl
stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService_schema1.xsd
Removed:
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/
stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/
Modified:
stack/metro/trunk/ant-import-tests/build-samples-jaxws.xml
Log:
[JBWS-2100] refactoring
Modified: stack/metro/trunk/ant-import-tests/build-samples-jaxws.xml
===================================================================
--- stack/metro/trunk/ant-import-tests/build-samples-jaxws.xml 2008-04-22 14:04:10 UTC (rev 6612)
+++ stack/metro/trunk/ant-import-tests/build-samples-jaxws.xml 2008-04-22 14:22:13 UTC (rev 6613)
@@ -18,16 +18,16 @@
<mkdir dir="${tests.output.dir}/test-libs"/>
- <!-- jaxws-samples-wsaddressing -->
+ <!-- jaxws-samples-wsa -->
<war
- warfile="${tests.output.dir}/test-libs/jaxws-samples-wsaddressing.war"
- webxml="${tests.output.dir}/test-resources/jaxws/samples/wsaddressing/WEB-INF/web.xml">
+ warfile="${tests.output.dir}/test-libs/jaxws-samples-wsa.war"
+ webxml="${tests.output.dir}/test-resources/jaxws/samples/wsa/WEB-INF/web.xml">
<classes dir="${tests.output.dir}/test-classes">
- <include name="org/jboss/test/ws/jaxws/samples/wsaddressing/Service*.class"/>
- <include name="org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/*.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/wsa/Service*.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/wsa/jaxws/*.class"/>
</classes>
<zipfileset
- dir="${tests.output.dir}/test-resources/jaxws/samples/wsaddressing/WEB-INF/wsdl"
+ dir="${tests.output.dir}/test-resources/jaxws/samples/wsa/WEB-INF/wsdl"
prefix="WEB-INF/wsdl"/>
</war>
Added: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java
===================================================================
--- stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java (rev 0)
+++ stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java 2008-04-22 14:22:13 UTC (rev 6613)
@@ -0,0 +1,55 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.samples.wsa;
+
+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;
+
+/**
+ * Client invoking web service using WS-Addressing
+ *
+ * @author richard.opalka(a)jboss.com
+ */
+public final class AddressingTestCase extends JBossWSTest
+{
+ private final String serviceURL = "http://" + getServerHost() + ":8080/jaxws-samples-wsa/AddressingService";
+
+ public static Test suite()
+ {
+ return new JBossWSTestSetup(AddressingTestCase.class, "jaxws-samples-wsa.war");
+ }
+
+ public void test() throws Exception
+ {
+ QName serviceName = new QName("http://www.jboss.org/jbossws/ws-extensions/wsaddressing", "AddressingService");
+ URL wsdlURL = new URL(serviceURL + "?wsdl");
+ Service service = Service.create(wsdlURL, serviceName);
+ ServiceIface proxy = (ServiceIface)service.getPort(ServiceIface.class);
+
+ assertEquals("Hello World!", proxy.sayHello());
+ }
+
+}
Property changes on: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java
===================================================================
--- stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java (rev 0)
+++ stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java 2008-04-22 14:22:13 UTC (rev 6613)
@@ -0,0 +1,35 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.samples.wsa;
+
+import javax.jws.WebMethod;
+import javax.jws.WebService;
+
+@WebService
+(
+ targetNamespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing"
+)
+public interface ServiceIface
+{
+ @WebMethod
+ String sayHello();
+}
Property changes on: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java
===================================================================
--- stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java (rev 0)
+++ stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java 2008-04-22 14:22:13 UTC (rev 6613)
@@ -0,0 +1,40 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.samples.wsa;
+
+import javax.jws.WebService;
+
+@WebService
+(
+ portName = "AddressingServicePort",
+ serviceName = "AddressingService",
+ wsdlLocation = "WEB-INF/wsdl/AddressingService.wsdl",
+ targetNamespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing",
+ endpointInterface = "org.jboss.test.ws.jaxws.samples.wsa.ServiceIface"
+)
+public class ServiceImpl implements ServiceIface
+{
+ public String sayHello()
+ {
+ return "Hello World!";
+ }
+}
Property changes on: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java
===================================================================
--- stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java (rev 0)
+++ stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java 2008-04-22 14:22:13 UTC (rev 6613)
@@ -0,0 +1,15 @@
+
+package org.jboss.test.ws.jaxws.samples.wsa.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+@XmlRootElement(name = "sayHello", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "sayHello", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+public class SayHello {
+
+
+}
Property changes on: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java
===================================================================
--- stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java (rev 0)
+++ stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java 2008-04-22 14:22:13 UTC (rev 6613)
@@ -0,0 +1,36 @@
+
+package org.jboss.test.ws.jaxws.samples.wsa.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+@XmlRootElement(name = "sayHelloResponse", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "sayHelloResponse", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+public class SayHelloResponse {
+
+ @XmlElement(name = "return", namespace = "")
+ private String _return;
+
+ /**
+ *
+ * @return
+ * returns String
+ */
+ public String getReturn() {
+ return this._return;
+ }
+
+ /**
+ *
+ * @param _return
+ * the value for the _return property
+ */
+ public void setReturn(String _return) {
+ this._return = _return;
+ }
+
+}
Property changes on: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml
===================================================================
--- stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml (rev 0)
+++ stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml 2008-04-22 14:22:13 UTC (rev 6613)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<web-app
+ version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
+ <servlet>
+ <servlet-name>AddressingService</servlet-name>
+ <servlet-class>org.jboss.test.ws.jaxws.samples.wsa.ServiceImpl</servlet-class>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>AddressingService</servlet-name>
+ <url-pattern>/*</url-pattern>
+ </servlet-mapping>
+</web-app>
Property changes on: stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl
===================================================================
--- stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl (rev 0)
+++ stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl 2008-04-22 14:22:13 UTC (rev 6613)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3-b02-. -->
+<definitions targetNamespace="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" name="AddressingService" xmlns:tns="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/">
+ <types>
+ <xsd:schema>
+ <xsd:import namespace="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" schemaLocation="AddressingService_schema1.xsd"/>
+ </xsd:schema>
+ </types>
+ <message name="sayHello">
+ <part name="parameters" element="tns:sayHello"/>
+ </message>
+ <message name="sayHelloResponse">
+ <part name="parameters" element="tns:sayHelloResponse"/>
+ </message>
+ <portType name="ServiceIface">
+ <operation name="sayHello">
+ <input message="tns:sayHello"/>
+ <output message="tns:sayHelloResponse"/>
+ </operation>
+ </portType>
+ <binding name="AddressingServicePortBinding" type="tns:ServiceIface">
+ <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
+ <operation name="sayHello">
+ <soap:operation soapAction=""/>
+ <input>
+ <soap:body use="literal"/>
+ </input>
+ <output>
+ <soap:body use="literal"/>
+ </output>
+ </operation>
+ </binding>
+ <service name="AddressingService">
+ <port name="AddressingServicePort" binding="tns:AddressingServicePortBinding">
+ <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
+ <UsingAddressing xmlns="http://www.w3.org/2006/05/addressing/wsdl"/>
+ </port>
+ </service>
+</definitions>
Property changes on: stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService_schema1.xsd
===================================================================
--- stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService_schema1.xsd (rev 0)
+++ stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService_schema1.xsd 2008-04-22 14:22:13 UTC (rev 6613)
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<xs:schema version="1.0" targetNamespace="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" xmlns:tns="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+
+ <xs:element name="sayHello" type="tns:sayHello"/>
+
+ <xs:element name="sayHelloResponse" type="tns:sayHelloResponse"/>
+
+ <xs:complexType name="sayHello">
+ <xs:sequence/>
+ </xs:complexType>
+
+ <xs:complexType name="sayHelloResponse">
+ <xs:sequence>
+ <xs:element name="return" type="xs:string" minOccurs="0"/>
+ </xs:sequence>
+ </xs:complexType>
+</xs:schema>
+
Property changes on: stack/metro/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService_schema1.xsd
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
18 years
JBossWS SVN: r6612 - in stack/native/trunk: src/test/java/org/jboss/test/ws/jaxws/samples and 6 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-04-22 10:04:10 -0400 (Tue, 22 Apr 2008)
New Revision: 6612
Added:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java
stack/native/trunk/src/test/resources/jaxws/samples/wsa/
stack/native/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/
stack/native/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml
stack/native/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/
stack/native/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl
Modified:
stack/native/trunk/ant-import-tests/build-samples-jaxws.xml
Log:
[JBWS-2100] adding example based on prepared NATIVE WS-Addressing tutorial
Modified: stack/native/trunk/ant-import-tests/build-samples-jaxws.xml
===================================================================
--- stack/native/trunk/ant-import-tests/build-samples-jaxws.xml 2008-04-22 12:09:31 UTC (rev 6611)
+++ stack/native/trunk/ant-import-tests/build-samples-jaxws.xml 2008-04-22 14:04:10 UTC (rev 6612)
@@ -194,7 +194,20 @@
<include name="org/jboss/test/ws/jaxws/samples/news/SecurePrinter.class"/>
</fileset>
</jar>
-
+
+ <!-- jaxws-samples-wsa -->
+ <war
+ warfile="${tests.output.dir}/test-libs/jaxws-samples-wsa.war"
+ webxml="${tests.output.dir}/test-resources/jaxws/samples/wsa/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/samples/wsa/Service*.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/wsa/jaxws/*.class"/>
+ </classes>
+ <zipfileset
+ dir="${tests.output.dir}/test-resources/jaxws/samples/wsa/WEB-INF/wsdl"
+ prefix="WEB-INF/wsdl"/>
+ </war>
+
<!-- jaxws-samples-wsaddressing -->
<war warfile="${tests.output.dir}/test-libs/jaxws-samples-wsaddressing.war" webxml="${tests.output.dir}/test-resources/jaxws/samples/wsaddressing/WEB-INF/web.xml">
<classes dir="${tests.output.dir}/test-classes">
@@ -325,4 +338,4 @@
</target>
-</project>
\ No newline at end of file
+</project>
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java 2008-04-22 14:04:10 UTC (rev 6612)
@@ -0,0 +1,59 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.samples.wsa;
+
+import java.net.URL;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import junit.framework.Test;
+import org.jboss.ws.core.ConfigProvider;
+import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.wsf.test.JBossWSTestSetup;
+
+/**
+ * Client invoking web service using WS-Addressing
+ *
+ * @author richard.opalka(a)jboss.com
+ */
+public final class AddressingTestCase extends JBossWSTest
+{
+ private final String serviceURL = "http://" + getServerHost() + ":8080/jaxws-samples-wsa/AddressingService";
+
+ public static Test suite()
+ {
+ return new JBossWSTestSetup(AddressingTestCase.class, "jaxws-samples-wsa.war");
+ }
+
+ public void test() throws Exception
+ {
+ // construct proxy
+ QName serviceName = new QName("http://www.jboss.org/jbossws/ws-extensions/wsaddressing", "AddressingService");
+ URL wsdlURL = new URL(serviceURL + "?wsdl");
+ Service service = Service.create(wsdlURL, serviceName);
+ ServiceIface proxy = (ServiceIface)service.getPort(ServiceIface.class);
+ // configure WS-Addressing
+ ((ConfigProvider)proxy).setConfigName("Standard WSAddressing Client");
+ // invoke method
+ assertEquals("Hello World!", proxy.sayHello());
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/AddressingTestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java 2008-04-22 14:04:10 UTC (rev 6612)
@@ -0,0 +1,35 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.samples.wsa;
+
+import javax.jws.WebMethod;
+import javax.jws.WebService;
+
+@WebService
+(
+ targetNamespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing"
+)
+public interface ServiceIface
+{
+ @WebMethod
+ String sayHello();
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceIface.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java 2008-04-22 14:04:10 UTC (rev 6612)
@@ -0,0 +1,45 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.samples.wsa;
+
+import javax.jws.WebService;
+import org.jboss.ws.annotation.EndpointConfig;
+
+@EndpointConfig
+(
+ configName = "Standard WSAddressing Endpoint"
+)
+@WebService
+(
+ portName = "AddressingServicePort",
+ serviceName = "AddressingService",
+ wsdlLocation = "WEB-INF/wsdl/AddressingService.wsdl",
+ targetNamespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing",
+ endpointInterface = "org.jboss.test.ws.jaxws.samples.wsa.ServiceIface"
+)
+public class ServiceImpl implements ServiceIface
+{
+ public String sayHello()
+ {
+ return "Hello World!";
+ }
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/ServiceImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java 2008-04-22 14:04:10 UTC (rev 6612)
@@ -0,0 +1,15 @@
+
+package org.jboss.test.ws.jaxws.samples.wsa.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+@XmlRootElement(name = "sayHello", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+@XmlType(name = "sayHello", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+(a)XmlAccessorType(XmlAccessType.FIELD)
+public class SayHello {
+
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHello.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java 2008-04-22 14:04:10 UTC (rev 6612)
@@ -0,0 +1,26 @@
+
+package org.jboss.test.ws.jaxws.samples.wsa.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+@XmlRootElement(name = "sayHelloResponse", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+@XmlType(name = "sayHelloResponse", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+(a)XmlAccessorType(XmlAccessType.FIELD)
+public class SayHelloResponse {
+
+ @XmlElement(name = "return", namespace = "")
+ private String _return;
+
+ public String getReturn() {
+ return this._return;
+ }
+
+ public void setReturn(String _return) {
+ this._return = _return;
+ }
+
+}
Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsa/jaxws/SayHelloResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml
===================================================================
--- stack/native/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml (rev 0)
+++ stack/native/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml 2008-04-22 14:04:10 UTC (rev 6612)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<web-app
+ version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
+ <servlet>
+ <servlet-name>AddressingService</servlet-name>
+ <servlet-class>org.jboss.test.ws.jaxws.samples.wsa.ServiceImpl</servlet-class>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>AddressingService</servlet-name>
+ <url-pattern>/*</url-pattern>
+ </servlet-mapping>
+</web-app>
Property changes on: stack/native/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/web.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl
===================================================================
--- stack/native/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl (rev 0)
+++ stack/native/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl 2008-04-22 14:04:10 UTC (rev 6612)
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<definitions name='AddressingService' targetNamespace='http://www.jboss.org/jbossws/ws-extensions/wsaddressing' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://www.jboss.org/jbossws/ws-extensions/wsaddressing' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
+ <types>
+ <xs:schema targetNamespace='http://www.jboss.org/jbossws/ws-extensions/wsaddressing' version='1.0' xmlns:tns='http://www.jboss.org/jbossws/ws-extensions/wsaddressing' xmlns:xs='http://www.w3.org/2001/XMLSchema'>
+ <xs:element name='sayHello' type='tns:sayHello'/>
+ <xs:element name='sayHelloResponse' type='tns:sayHelloResponse'/>
+ <xs:complexType name='sayHello'>
+ <xs:sequence/>
+ </xs:complexType>
+ <xs:complexType name='sayHelloResponse'>
+ <xs:sequence>
+ <xs:element minOccurs='0' name='return' type='xs:string'/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:schema>
+ </types>
+ <message name='ServiceIface_sayHello'>
+ <part element='tns:sayHello' name='sayHello'/>
+ </message>
+ <message name='ServiceIface_sayHelloResponse'>
+ <part element='tns:sayHelloResponse' name='sayHelloResponse'/>
+ </message>
+ <portType name='ServiceIface'>
+ <operation name='sayHello' parameterOrder='sayHello'>
+ <input message='tns:ServiceIface_sayHello'/>
+ <output message='tns:ServiceIface_sayHelloResponse'/>
+ </operation>
+ </portType>
+ <binding name='ServiceIfaceBinding' type='tns:ServiceIface'>
+ <soap:binding style='document' transport='http://schemas.xmlsoap.org/soap/http'/>
+ <operation name='sayHello'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ </operation>
+ </binding>
+ <service name='AddressingService'>
+ <port binding='tns:ServiceIfaceBinding' name='AddressingServicePort'>
+ <soap:address location='REPLACE_WITH_ACTUAL_URL'/>
+ <UsingAddressing xmlns="http://www.w3.org/2006/05/addressing/wsdl"/>
+ </port>
+ </service>
+</definitions>
Property changes on: stack/native/trunk/src/test/resources/jaxws/samples/wsa/WEB-INF/wsdl/AddressingService.wsdl
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
18 years
JBossWS SVN: r6611 - in stack/native/trunk/src/test/resources: jaxrpc/jbws958 and 85 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-04-22 08:09:31 -0400 (Tue, 22 Apr 2008)
New Revision: 6611
Modified:
stack/native/trunk/src/test/resources/jaxrpc/jbws1384/wstools-config.xml
stack/native/trunk/src/test/resources/jaxrpc/jbws958/wstools-config.xml
stack/native/trunk/src/test/resources/tools/config/wsdl2javaconfig.xml
stack/native/trunk/src/test/resources/tools/config/wsdl2javaglobal.xml
stack/native/trunk/src/test/resources/tools/config/xsd2javaconfig.xml
stack/native/trunk/src/test/resources/tools/jbws-160/jbossws/simple/simplecaseconfig.xml
stack/native/trunk/src/test/resources/tools/jbws1079/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1170/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1184/scenario_A/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1184/scenario_B/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1217/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1253/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1259/scenario_A/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1259/scenario_B/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1259/scenario_C/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1259/scenario_D/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_A/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AA/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AB/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AC/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AD/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AE/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AF/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AG/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AH/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_B/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_C/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_D/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_E/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_F/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_G/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_H/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_I/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_J/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_K/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_L/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_M/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_N/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_O/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_P/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_Q/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_R/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_S/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_T/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_U/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_V/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_W/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_X/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_Y/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1260/scenario_Z/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1278/doclit/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1441/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1450/scenario_A/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1450/scenario_B/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1450/scenario_C/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1450/scenario_D/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1453/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1455/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1534/bare/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1534/wrapped/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1536/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1597/doclit_in/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1597/doclit_in_and_out/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1597/doclit_inout/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1597/doclit_out/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_in/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_in_and_out/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_inout/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_out/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1607/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1627/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1691/lowercase/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1697/doclit_inout/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1697/rpclit_inout/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1698/error/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1698/fault/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1723/doclit_in/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1723/rpclit_in/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1725/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1801/doclit/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1873/doclit/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws1881/doclit/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws2019/doclit/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws429/doclit_inout/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws429/rpclit_inout/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws429/rpclit_out/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws810/document/wstools-config.xml
stack/native/trunk/src/test/resources/tools/jbws810/rpc/wstools-config.xml
stack/native/trunk/src/test/resources/tools/scripts/wstools-config.xml
Log:
Move resources to test-resources
Modified: stack/native/trunk/src/test/resources/jaxrpc/jbws1384/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/jaxrpc/jbws1384/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/jaxrpc/jbws1384/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -13,7 +13,7 @@
<package-namespace package="org.jboss.test.ws.jaxrpc.jbws1384" namespace="http://org.jboss.test.webservice/samples2"/>
</global>
- <wsdl-java location="resources/jaxrpc/jbws1384/WEB-INF/wsdl/ExampleService.wsdl">
+ <wsdl-java location="test-resources/jaxrpc/jbws1384/WEB-INF/wsdl/ExampleService.wsdl">
<mapping file="jaxrpc-mapping.xml" />
<webservices servlet-link="ExampleService" />
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/jaxrpc/jbws958/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/jaxrpc/jbws958/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/jaxrpc/jbws958/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -12,7 +12,7 @@
<global>
<package-namespace package="org.jboss.test.ws.jaxrpc.jbws958" namespace="http://services.iplsprovisioning.tsi.com"/>
</global>
- <wsdl-java location="resources/jaxrpc/jbws958/WEB-INF/wsdl/IPLSProvisioning.wsdl">
+ <wsdl-java location="test-resources/jaxrpc/jbws958/WEB-INF/wsdl/IPLSProvisioning.wsdl">
<mapping file="jaxrpc-mapping.xml" />
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/config/wsdl2javaconfig.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/config/wsdl2javaconfig.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/config/wsdl2javaconfig.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,6 +1,6 @@
<!--This is the config file used by jbossws-->
<configuration>
- <wsdltojava wsdllocation="resources/tools/jbws-160/wscompile/simple/wsdl/HelloWsService.wsdl"
+ <wsdltojava wsdllocation="test-resources/tools/jbws-160/wscompile/simple/wsdl/HelloWsService.wsdl"
packagename="org.jboss.types"
seidir="output/somedir"
servicename="SomeService" >
Modified: stack/native/trunk/src/test/resources/tools/config/wsdl2javaglobal.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/config/wsdl2javaglobal.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/config/wsdl2javaglobal.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -5,5 +5,5 @@
<global>
<package-namespace package="org.jboss.test.ws" namespace="http://org.jboss.ws"/>
</global>
- <wsdl-java location="resources/tools/wsdlfixture/StandardJavaTypesService_RPC_11.wsdl"/>
+ <wsdl-java location="test-resources/tools/wsdlfixture/StandardJavaTypesService_RPC_11.wsdl"/>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/config/xsd2javaconfig.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/config/xsd2javaconfig.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/config/xsd2javaconfig.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,6 +1,6 @@
<!--This is the config file used by jbossws-->
<configuration>
- <xsdtojava schemafile="resources/somedir/somefile.xsd"
+ <xsdtojava schemafile="test-resources/somedir/somefile.xsd"
packagename="org.jboss.testtypes"
javadir="output/somedir"
createjavadir="true" />
Modified: stack/native/trunk/src/test/resources/tools/jbws-160/jbossws/simple/simplecaseconfig.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws-160/jbossws/simple/simplecaseconfig.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws-160/jbossws/simple/simplecaseconfig.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -3,7 +3,7 @@
<!--This is the config file used by jbossws-->
<!--
<configuration>
- <wsdltojava wsdllocation="resources/tools/jbws-160/wscompile/simple/wsdl/HelloWsService.wsdl"
+ <wsdltojava wsdllocation="test-resources/tools/jbws-160/wscompile/simple/wsdl/HelloWsService.wsdl"
packagename="org.jboss.types"
seidir="output/resources/tools/jbws-160/jbossws/simple/sei"
servicename="HelloWsService" >
@@ -16,7 +16,7 @@
<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">
- <wsdlToJava wsdlLocation="resources/tools/jbws-160/wscompile/simple/wsdl/HelloWsService.wsdl"
+ <wsdlToJava wsdlLocation="test-resources/tools/jbws-160/wscompile/simple/wsdl/HelloWsService.wsdl"
useJavaAnnotations="false">
<mapping fileName="mapping.xml"/>
</wsdlToJava>
Modified: stack/native/trunk/src/test/resources/tools/jbws1079/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1079/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1079/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1079/Anonymous.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1079/Anonymous.wsdl" parameter-style="bare">
<mapping file="anonymous-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1170/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1170/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1170/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1170/HyphenatedElementName.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1170/HyphenatedElementName.wsdl" parameter-style="bare">
<mapping file="wrapper-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1184/scenario_A/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1184/scenario_A/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1184/scenario_A/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1184/scenario_A/TestEndpoint.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1184/scenario_A/TestEndpoint.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1184/scenario_B/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1184/scenario_B/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1184/scenario_B/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1184/scenario_B/TestEndpoint.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1184/scenario_B/TestEndpoint.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1217/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1217/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1217/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -4,7 +4,7 @@
<package-namespace package="org.jboss.test.ws.jbws1217.base" namespace="http://com.other.base"/>
<package-namespace package="org.jboss.test.ws.jbws1217" namespace="http://org.jboss.test.ws.jbws1217"/>
</global>
- <wsdl-java location="resources/tools/jbws1217/MultiplePackageNamespace.wsdl">
+ <wsdl-java location="test-resources/tools/jbws1217/MultiplePackageNamespace.wsdl">
<mapping file="jaxrpc-mapping.xml" />
</wsdl-java>
</configuration>
\ No newline at end of file
Modified: stack/native/trunk/src/test/resources/tools/jbws1253/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1253/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1253/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1253/MyPortTypeService.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1253/MyPortTypeService.wsdl" parameter-style="bare">
<mapping file="myporttype-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1259/scenario_A/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1259/scenario_A/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1259/scenario_A/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1259/scenario_A/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1259/scenario_A/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1259/scenario_B/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1259/scenario_B/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1259/scenario_B/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1259/scenario_B/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1259/scenario_B/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1259/scenario_C/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1259/scenario_C/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1259/scenario_C/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1259/scenario_C/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1259/scenario_C/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1259/scenario_D/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1259/scenario_D/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1259/scenario_D/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1259/scenario_D/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1259/scenario_D/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_A/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_A/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_A/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_A/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_A/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AA/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AA/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AA/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AA/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_AA/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AB/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AB/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AB/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AB/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_AB/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AC/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AC/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AC/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AC/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_AC/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AD/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AD/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AD/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AD/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_AD/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AE/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AE/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AE/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AE/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_AE/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AF/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AF/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AF/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AF/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_AF/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AG/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AG/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AG/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AG/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_AG/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AH/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AH/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_AH/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AH/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_AH/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_B/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_B/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_B/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_B/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_B/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_C/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_C/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_C/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_C/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_C/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_D/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_D/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_D/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_D/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_D/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_E/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_E/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_E/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_E/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_E/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_F/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_F/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_F/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_F/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_F/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_G/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_G/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_G/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_G/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_G/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_H/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_H/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_H/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_H/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_H/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_I/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_I/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_I/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_I/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_I/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_J/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_J/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_J/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_J/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_J/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_K/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_K/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_K/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_K/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_K/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_L/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_L/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_L/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_L/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_L/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_M/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_M/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_M/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_M/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_M/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_N/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_N/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_N/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_N/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_N/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_O/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_O/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_O/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_O/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_O/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_P/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_P/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_P/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_P/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_P/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_Q/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_Q/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_Q/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_Q/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_Q/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_R/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_R/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_R/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_R/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_R/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_S/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_S/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_S/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_S/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_S/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_T/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_T/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_T/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_T/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_T/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_U/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_U/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_U/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_U/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_U/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_V/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_V/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_V/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_V/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_V/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_W/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_W/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_W/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_W/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_W/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_X/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_X/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_X/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_X/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_X/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_Y/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_Y/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_Y/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_Y/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_Y/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1260/scenario_Z/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1260/scenario_Z/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1260/scenario_Z/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_Z/Wrapped.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1260/scenario_Z/Wrapped.wsdl" parameter-style="wrapped">
<mapping file="wrapped-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1278/doclit/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1278/doclit/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1278/doclit/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1278/doclit/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1278/doclit/PhoneBook.wsdl"
parameter-style="bare"
serializable-types="true">
<mapping file="jaxrpc-mapping.xml"/>
Modified: stack/native/trunk/src/test/resources/tools/jbws1441/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1441/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1441/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1441/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1441/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1450/scenario_A/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1450/scenario_A/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1450/scenario_A/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1450/scenario_A/TestEndpoint.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1450/scenario_A/TestEndpoint.wsdl" parameter-style="wrapped">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1450/scenario_B/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1450/scenario_B/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1450/scenario_B/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1450/scenario_B/TestEndpoint.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1450/scenario_B/TestEndpoint.wsdl" parameter-style="wrapped">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1450/scenario_C/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1450/scenario_C/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1450/scenario_C/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1450/scenario_C/TestEndpoint.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1450/scenario_C/TestEndpoint.wsdl" parameter-style="wrapped">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1450/scenario_D/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1450/scenario_D/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1450/scenario_D/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1450/scenario_D/TestEndpoint.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1450/scenario_D/TestEndpoint.wsdl" parameter-style="wrapped">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1453/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1453/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1453/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1453/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1453/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1455/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1455/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1455/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1455/TestEndpoint.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1455/TestEndpoint.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1534/bare/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1534/bare/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1534/bare/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1534/bare/TestEndpoint.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1534/bare/TestEndpoint.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1534/wrapped/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1534/wrapped/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1534/wrapped/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1534/wrapped/TestEndpoint.wsdl" parameter-style="wrapped">
+ <wsdl-java location="test-resources/tools/jbws1534/wrapped/TestEndpoint.wsdl" parameter-style="wrapped">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1536/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1536/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1536/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -4,7 +4,7 @@
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">
- <wsdl-java location="resources/tools/jbws1536/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1536/PhoneBook.wsdl" parameter-style="bare">
<webservices ejb-link="PhoneBook" />
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1597/doclit_in/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1597/doclit_in/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1597/doclit_in/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1597/doclit_in/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1597/doclit_in/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1597/doclit_in_and_out/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1597/doclit_in_and_out/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1597/doclit_in_and_out/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1597/doclit_in_and_out/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1597/doclit_in_and_out/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1597/doclit_inout/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1597/doclit_inout/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1597/doclit_inout/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1597/doclit_inout/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1597/doclit_inout/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1597/doclit_out/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1597/doclit_out/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1597/doclit_out/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1597/doclit_out/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1597/doclit_out/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_in/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_in/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_in/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1597/rpclit_in/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1597/rpclit_in/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_in_and_out/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_in_and_out/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_in_and_out/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1597/rpclit_in_and_out/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1597/rpclit_in_and_out/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_inout/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_inout/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_inout/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1597/rpclit_inout/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1597/rpclit_inout/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_out/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_out/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1597/rpclit_out/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1597/rpclit_out/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1597/rpclit_out/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1607/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1607/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1607/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1607/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1607/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1627/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1627/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1627/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1627/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1627/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1691/lowercase/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1691/lowercase/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1691/lowercase/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1691/lowercase/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1691/lowercase/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1697/doclit_inout/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1697/doclit_inout/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1697/doclit_inout/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1697/doclit_inout/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1697/doclit_inout/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1697/rpclit_inout/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1697/rpclit_inout/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1697/rpclit_inout/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1697/rpclit_inout/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1697/rpclit_inout/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1698/error/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1698/error/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1698/error/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1698/error/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1698/error/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1698/fault/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1698/fault/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1698/fault/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1698/fault/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1698/fault/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws1723/doclit_in/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1723/doclit_in/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1723/doclit_in/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1723/doclit_in/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1723/doclit_in/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1723/rpclit_in/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1723/rpclit_in/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1723/rpclit_in/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1723/rpclit_in/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1723/rpclit_in/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1725/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1725/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1725/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -2,7 +2,7 @@
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">
- <wsdl-java location="resources/tools/jbws1725/Extension.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws1725/Extension.wsdl" parameter-style="bare">
<mapping file="extended-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1801/doclit/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1801/doclit/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1801/doclit/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1801/doclit/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1801/doclit/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1873/doclit/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1873/doclit/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1873/doclit/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1873/doclit/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1873/doclit/PhoneBook.wsdl"
parameter-style="wrapped">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws1881/doclit/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws1881/doclit/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws1881/doclit/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws1881/doclit/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws1881/doclit/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws2019/doclit/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws2019/doclit/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws2019/doclit/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws2019/doclit/PhoneBook.wsdl"
+ <wsdl-java location="test-resources/tools/jbws2019/doclit/PhoneBook.wsdl"
parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
Modified: stack/native/trunk/src/test/resources/tools/jbws429/doclit_inout/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws429/doclit_inout/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws429/doclit_inout/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws429/doclit_inout/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws429/doclit_inout/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws429/rpclit_inout/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws429/rpclit_inout/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws429/rpclit_inout/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws429/rpclit_inout/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws429/rpclit_inout/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws429/rpclit_out/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws429/rpclit_out/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws429/rpclit_out/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws429/rpclit_out/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws429/rpclit_out/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws810/document/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws810/document/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws810/document/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws810/document/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws810/document/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/jbws810/rpc/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/jbws810/rpc/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/jbws810/rpc/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/jbws810/rpc/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/jbws810/rpc/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
Modified: stack/native/trunk/src/test/resources/tools/scripts/wstools-config.xml
===================================================================
--- stack/native/trunk/src/test/resources/tools/scripts/wstools-config.xml 2008-04-22 12:06:12 UTC (rev 6610)
+++ stack/native/trunk/src/test/resources/tools/scripts/wstools-config.xml 2008-04-22 12:09:31 UTC (rev 6611)
@@ -1,5 +1,5 @@
<configuration>
- <wsdl-java location="resources/tools/scripts/PhoneBook.wsdl" parameter-style="bare">
+ <wsdl-java location="test-resources/tools/scripts/PhoneBook.wsdl" parameter-style="bare">
<mapping file="jaxrpc-mapping.xml"/>
</wsdl-java>
</configuration>
18 years
JBossWS SVN: r6610 - in stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc: jbws1384 and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-04-22 08:06:12 -0400 (Tue, 22 Apr 2008)
New Revision: 6610
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc/jbws1316/JBWS1316ConfigurationTestCase.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc/jbws1384/JBWS1384TestCase.java
Log:
Move resources to test-resources
Modified: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc/jbws1316/JBWS1316ConfigurationTestCase.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc/jbws1316/JBWS1316ConfigurationTestCase.java 2008-04-22 10:44:33 UTC (rev 6609)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc/jbws1316/JBWS1316ConfigurationTestCase.java 2008-04-22 12:06:12 UTC (rev 6610)
@@ -42,7 +42,7 @@
private WSSecurityConfiguration load(final String fileName) throws IOException
{
- File configFile = new File(getResourceFile("jaxrpc/jbws1316/config/").getPath() + fileName);
+ File configFile = getResourceFile("jaxrpc/jbws1316/config/" + fileName);
WSSecurityOMFactory factory = WSSecurityOMFactory.newInstance();
return factory.parse(configFile.toURL());
Modified: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc/jbws1384/JBWS1384TestCase.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc/jbws1384/JBWS1384TestCase.java 2008-04-22 10:44:33 UTC (rev 6609)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxrpc/jbws1384/JBWS1384TestCase.java 2008-04-22 12:06:12 UTC (rev 6610)
@@ -71,7 +71,8 @@
public void testWsdlToJava() throws Exception
{
WSTools wstools = new WSTools();
- boolean ret = wstools.generate(getResourceFile("jaxrpc/jbws1384/wstools-config.xml").getPath(), "./wstools/jbws1384");
+ String configPath = getResourceFile("jaxrpc/jbws1384/wstools-config.xml").getPath();
+ boolean ret = wstools.generate(configPath, "./wstools/jbws1384");
assertTrue("wstools success", ret);
}
18 years
JBossWS SVN: r6609 - in stack/cxf/trunk/src/test: resources/jaxws/samples/wsaddressing/WEB-INF/wsdl and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-04-22 06:44:33 -0400 (Tue, 22 Apr 2008)
New Revision: 6609
Added:
stack/cxf/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService.wsdl
Removed:
stack/cxf/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/Service.wsdl
Modified:
stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceImpl.java
Log:
[JBWS-2100] refactoring
Modified: stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceImpl.java
===================================================================
--- stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceImpl.java 2008-04-22 10:13:12 UTC (rev 6608)
+++ stack/cxf/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceImpl.java 2008-04-22 10:44:33 UTC (rev 6609)
@@ -21,21 +21,18 @@
*/
package org.jboss.test.ws.jaxws.samples.wsaddressing;
-import javax.jws.WebMethod;
import javax.jws.WebService;
@WebService
(
- name = "AddressingServiceName",
portName = "AddressingServicePort",
serviceName = "AddressingService",
- wsdlLocation = "WEB-INF/wsdl/Service.wsdl",
+ wsdlLocation = "WEB-INF/wsdl/AddressingService.wsdl",
targetNamespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing",
endpointInterface = "org.jboss.test.ws.jaxws.samples.wsaddressing.ServiceIface"
)
public class ServiceImpl implements ServiceIface
{
- @WebMethod
public String sayHello()
{
return "Hello World!";
Added: stack/cxf/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService.wsdl
===================================================================
--- stack/cxf/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService.wsdl (rev 0)
+++ stack/cxf/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService.wsdl 2008-04-22 10:44:33 UTC (rev 6609)
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<wsdl:definitions name="AddressingService" targetNamespace="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" xmlns:tns="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
+ <wsdl:types>
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://www.jboss.org/jbossws/ws-extensions/wsaddressing">
+<xsd:element name="sayHello" type="tns:sayHello"/>
+<xsd:complexType name="sayHello">
+<xsd:sequence/>
+</xsd:complexType>
+<xsd:element name="sayHelloResponse" type="tns:sayHelloResponse"/>
+<xsd:complexType name="sayHelloResponse">
+<xsd:sequence>
+<xsd:element minOccurs="0" name="return" type="xsd:string"/>
+</xsd:sequence>
+</xsd:complexType>
+</xsd:schema>
+ </wsdl:types>
+ <wsdl:message name="sayHelloResponse">
+ <wsdl:part name="parameters" element="tns:sayHelloResponse">
+ </wsdl:part>
+ </wsdl:message>
+ <wsdl:message name="sayHello">
+ <wsdl:part name="parameters" element="tns:sayHello">
+ </wsdl:part>
+ </wsdl:message>
+ <wsdl:portType name="ServiceIface">
+ <wsdl:operation name="sayHello">
+ <wsdl:input name="sayHello" message="tns:sayHello">
+ </wsdl:input>
+ <wsdl:output name="sayHelloResponse" message="tns:sayHelloResponse">
+ </wsdl:output>
+ </wsdl:operation>
+ </wsdl:portType>
+ <wsdl:binding name="AddressingServiceSoapBinding" type="tns:ServiceIface">
+ <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+ <wsdl:operation name="sayHello">
+ <soap:operation soapAction="" style="document"/>
+ <wsdl:input name="sayHello">
+ <soap:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output name="sayHelloResponse">
+ <soap:body use="literal"/>
+ </wsdl:output>
+ </wsdl:operation>
+ </wsdl:binding>
+ <wsdl:service name="AddressingService">
+ <wsdl:port name="AddressingServicePort" binding="tns:AddressingServiceSoapBinding">
+ <soap:address location="http://localhost:9090/hello"/>
+ <UsingAddressing xmlns="http://www.w3.org/2006/05/addressing/wsdl"/>
+ </wsdl:port>
+ </wsdl:service>
+</wsdl:definitions>
Property changes on: stack/cxf/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService.wsdl
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Deleted: stack/cxf/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/Service.wsdl
===================================================================
--- stack/cxf/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/Service.wsdl 2008-04-22 10:13:12 UTC (rev 6608)
+++ stack/cxf/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/Service.wsdl 2008-04-22 10:44:33 UTC (rev 6609)
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<wsdl:definitions name="AddressingService" targetNamespace="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" xmlns:tns="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
- <wsdl:types>
-<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://www.jboss.org/jbossws/ws-extensions/wsaddressing">
-<xsd:element name="sayHello" type="tns:sayHello"/>
-<xsd:complexType name="sayHello">
-<xsd:sequence/>
-</xsd:complexType>
-<xsd:element name="sayHelloResponse" type="tns:sayHelloResponse"/>
-<xsd:complexType name="sayHelloResponse">
-<xsd:sequence>
-<xsd:element minOccurs="0" name="return" type="xsd:string"/>
-</xsd:sequence>
-</xsd:complexType>
-</xsd:schema>
- </wsdl:types>
- <wsdl:message name="sayHelloResponse">
- <wsdl:part name="parameters" element="tns:sayHelloResponse">
- </wsdl:part>
- </wsdl:message>
- <wsdl:message name="sayHello">
- <wsdl:part name="parameters" element="tns:sayHello">
- </wsdl:part>
- </wsdl:message>
- <wsdl:portType name="ServiceIface">
- <wsdl:operation name="sayHello">
- <wsdl:input name="sayHello" message="tns:sayHello">
- </wsdl:input>
- <wsdl:output name="sayHelloResponse" message="tns:sayHelloResponse">
- </wsdl:output>
- </wsdl:operation>
- </wsdl:portType>
- <wsdl:binding name="AddressingServiceSoapBinding" type="tns:ServiceIface">
- <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
- <wsdl:operation name="sayHello">
- <soap:operation soapAction="" style="document"/>
- <wsdl:input name="sayHello">
- <soap:body use="literal"/>
- </wsdl:input>
- <wsdl:output name="sayHelloResponse">
- <soap:body use="literal"/>
- </wsdl:output>
- </wsdl:operation>
- </wsdl:binding>
- <wsdl:service name="AddressingService">
- <wsdl:port name="AddressingServicePort" binding="tns:AddressingServiceSoapBinding">
- <soap:address location="http://localhost:9090/hello"/>
- <UsingAddressing xmlns="http://www.w3.org/2005/02/addressing/wsdl"/>
- </wsdl:port>
- </wsdl:service>
-</wsdl:definitions>
18 years
JBossWS SVN: r6608 - in stack/metro/trunk: src/test/java/org/jboss/test/ws/jaxws/samples and 6 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-04-22 06:13:12 -0400 (Tue, 22 Apr 2008)
New Revision: 6608
Added:
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/AddressingTestCase.java
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceIface.java
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceImpl.java
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/SayHello.java
stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/SayHelloResponse.java
stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/
stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/
stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/web.xml
stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/
stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService.wsdl
stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService_schema1.xsd
Modified:
stack/metro/trunk/ant-import-tests/build-samples-jaxws.xml
Log:
[JBWS-2100] adding example based on prepared METRO WS-Addressing tutorial
Modified: stack/metro/trunk/ant-import-tests/build-samples-jaxws.xml
===================================================================
--- stack/metro/trunk/ant-import-tests/build-samples-jaxws.xml 2008-04-22 09:34:20 UTC (rev 6607)
+++ stack/metro/trunk/ant-import-tests/build-samples-jaxws.xml 2008-04-22 10:13:12 UTC (rev 6608)
@@ -18,6 +18,19 @@
<mkdir dir="${tests.output.dir}/test-libs"/>
+ <!-- jaxws-samples-wsaddressing -->
+ <war
+ warfile="${tests.output.dir}/test-libs/jaxws-samples-wsaddressing.war"
+ webxml="${tests.output.dir}/test-resources/jaxws/samples/wsaddressing/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/samples/wsaddressing/Service*.class"/>
+ <include name="org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/*.class"/>
+ </classes>
+ <zipfileset
+ dir="${tests.output.dir}/test-resources/jaxws/samples/wsaddressing/WEB-INF/wsdl"
+ prefix="WEB-INF/wsdl"/>
+ </war>
+
<!-- jaxws-samples-wsrm -->
<war
warfile="${tests.output.dir}/test-libs/jaxws-samples-wsrm.war"
Added: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/AddressingTestCase.java
===================================================================
--- stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/AddressingTestCase.java (rev 0)
+++ stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/AddressingTestCase.java 2008-04-22 10:13:12 UTC (rev 6608)
@@ -0,0 +1,55 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.samples.wsaddressing;
+
+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;
+
+/**
+ * Client invoking web service using WS-Addressing
+ *
+ * @author richard.opalka(a)jboss.com
+ */
+public final class AddressingTestCase extends JBossWSTest
+{
+ private final String serviceURL = "http://" + getServerHost() + ":8080/jaxws-samples-wsaddressing/AddressingService";
+
+ public static Test suite()
+ {
+ return new JBossWSTestSetup(AddressingTestCase.class, "jaxws-samples-wsaddressing.war");
+ }
+
+ public void test() throws Exception
+ {
+ QName serviceName = new QName("http://www.jboss.org/jbossws/ws-extensions/wsaddressing", "AddressingService");
+ URL wsdlURL = new URL(serviceURL + "?wsdl");
+ Service service = Service.create(wsdlURL, serviceName);
+ ServiceIface proxy = (ServiceIface)service.getPort(ServiceIface.class);
+
+ assertEquals("Hello World!", proxy.sayHello());
+ }
+
+}
Property changes on: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/AddressingTestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceIface.java
===================================================================
--- stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceIface.java (rev 0)
+++ stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceIface.java 2008-04-22 10:13:12 UTC (rev 6608)
@@ -0,0 +1,35 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.samples.wsaddressing;
+
+import javax.jws.WebMethod;
+import javax.jws.WebService;
+
+@WebService
+(
+ targetNamespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing"
+)
+public interface ServiceIface
+{
+ @WebMethod
+ String sayHello();
+}
Property changes on: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceIface.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceImpl.java
===================================================================
--- stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceImpl.java (rev 0)
+++ stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceImpl.java 2008-04-22 10:13:12 UTC (rev 6608)
@@ -0,0 +1,40 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.samples.wsaddressing;
+
+import javax.jws.WebService;
+
+@WebService
+(
+ portName = "AddressingServicePort",
+ serviceName = "AddressingService",
+ wsdlLocation = "WEB-INF/wsdl/AddressingService.wsdl",
+ targetNamespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing",
+ endpointInterface = "org.jboss.test.ws.jaxws.samples.wsaddressing.ServiceIface"
+)
+public class ServiceImpl implements ServiceIface
+{
+ public String sayHello()
+ {
+ return "Hello World!";
+ }
+}
Property changes on: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/ServiceImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/SayHello.java
===================================================================
--- stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/SayHello.java (rev 0)
+++ stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/SayHello.java 2008-04-22 10:13:12 UTC (rev 6608)
@@ -0,0 +1,15 @@
+
+package org.jboss.test.ws.jaxws.samples.wsaddressing.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+@XmlRootElement(name = "sayHello", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "sayHello", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+public class SayHello {
+
+
+}
Property changes on: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/SayHello.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/SayHelloResponse.java
===================================================================
--- stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/SayHelloResponse.java (rev 0)
+++ stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/SayHelloResponse.java 2008-04-22 10:13:12 UTC (rev 6608)
@@ -0,0 +1,36 @@
+
+package org.jboss.test.ws.jaxws.samples.wsaddressing.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+@XmlRootElement(name = "sayHelloResponse", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+(a)XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "sayHelloResponse", namespace = "http://www.jboss.org/jbossws/ws-extensions/wsaddressing")
+public class SayHelloResponse {
+
+ @XmlElement(name = "return", namespace = "")
+ private String _return;
+
+ /**
+ *
+ * @return
+ * returns String
+ */
+ public String getReturn() {
+ return this._return;
+ }
+
+ /**
+ *
+ * @param _return
+ * the value for the _return property
+ */
+ public void setReturn(String _return) {
+ this._return = _return;
+ }
+
+}
Property changes on: stack/metro/trunk/src/test/java/org/jboss/test/ws/jaxws/samples/wsaddressing/jaxws/SayHelloResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/web.xml
===================================================================
--- stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/web.xml (rev 0)
+++ stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/web.xml 2008-04-22 10:13:12 UTC (rev 6608)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<web-app
+ version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
+ <servlet>
+ <servlet-name>AddressingService</servlet-name>
+ <servlet-class>org.jboss.test.ws.jaxws.samples.wsaddressing.ServiceImpl</servlet-class>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>AddressingService</servlet-name>
+ <url-pattern>/*</url-pattern>
+ </servlet-mapping>
+</web-app>
Property changes on: stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/web.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService.wsdl
===================================================================
--- stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService.wsdl (rev 0)
+++ stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService.wsdl 2008-04-22 10:13:12 UTC (rev 6608)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3-b02-. -->
+<definitions targetNamespace="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" name="AddressingService" xmlns:tns="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/">
+ <types>
+ <xsd:schema>
+ <xsd:import namespace="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" schemaLocation="AddressingService_schema1.xsd"/>
+ </xsd:schema>
+ </types>
+ <message name="sayHello">
+ <part name="parameters" element="tns:sayHello"/>
+ </message>
+ <message name="sayHelloResponse">
+ <part name="parameters" element="tns:sayHelloResponse"/>
+ </message>
+ <portType name="ServiceIface">
+ <operation name="sayHello">
+ <input message="tns:sayHello"/>
+ <output message="tns:sayHelloResponse"/>
+ </operation>
+ </portType>
+ <binding name="AddressingServicePortBinding" type="tns:ServiceIface">
+ <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
+ <operation name="sayHello">
+ <soap:operation soapAction=""/>
+ <input>
+ <soap:body use="literal"/>
+ </input>
+ <output>
+ <soap:body use="literal"/>
+ </output>
+ </operation>
+ </binding>
+ <service name="AddressingService">
+ <port name="AddressingServicePort" binding="tns:AddressingServicePortBinding">
+ <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
+ <UsingAddressing xmlns="http://www.w3.org/2006/05/addressing/wsdl"/>
+ </port>
+ </service>
+</definitions>
Property changes on: stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService.wsdl
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService_schema1.xsd
===================================================================
--- stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService_schema1.xsd (rev 0)
+++ stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService_schema1.xsd 2008-04-22 10:13:12 UTC (rev 6608)
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<xs:schema version="1.0" targetNamespace="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" xmlns:tns="http://www.jboss.org/jbossws/ws-extensions/wsaddressing" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+
+ <xs:element name="sayHello" type="tns:sayHello"/>
+
+ <xs:element name="sayHelloResponse" type="tns:sayHelloResponse"/>
+
+ <xs:complexType name="sayHello">
+ <xs:sequence/>
+ </xs:complexType>
+
+ <xs:complexType name="sayHelloResponse">
+ <xs:sequence>
+ <xs:element name="return" type="xs:string" minOccurs="0"/>
+ </xs:sequence>
+ </xs:complexType>
+</xs:schema>
+
Property changes on: stack/metro/trunk/src/test/resources/jaxws/samples/wsaddressing/WEB-INF/wsdl/AddressingService_schema1.xsd
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
18 years
JBossWS SVN: r6607 - in stack/cxf/branches/tdiesler/trunk: modules/server and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-04-22 05:34:20 -0400 (Tue, 22 Apr 2008)
New Revision: 6607
Added:
stack/cxf/branches/tdiesler/trunk/scripts/
stack/cxf/branches/tdiesler/trunk/scripts/assembly-install-jboss422.xml
Modified:
stack/cxf/branches/tdiesler/trunk/modules/server/pom.xml
stack/cxf/branches/tdiesler/trunk/pom.xml
Log:
assembly
Modified: stack/cxf/branches/tdiesler/trunk/modules/server/pom.xml
===================================================================
--- stack/cxf/branches/tdiesler/trunk/modules/server/pom.xml 2008-04-22 07:44:00 UTC (rev 6606)
+++ stack/cxf/branches/tdiesler/trunk/modules/server/pom.xml 2008-04-22 09:34:20 UTC (rev 6607)
@@ -125,7 +125,6 @@
</resources>
<plugins>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
Modified: stack/cxf/branches/tdiesler/trunk/pom.xml
===================================================================
--- stack/cxf/branches/tdiesler/trunk/pom.xml 2008-04-22 07:44:00 UTC (rev 6606)
+++ stack/cxf/branches/tdiesler/trunk/pom.xml 2008-04-22 09:34:20 UTC (rev 6607)
@@ -35,7 +35,7 @@
<module>modules/management</module>
<module>modules/server</module>
<module>modules/client</module>
- <module>modules/testsuite</module>
+ <!--module>modules/testsuite</module-->
</modules>
<!-- DependencyManagement -->
@@ -185,6 +185,29 @@
</dependencies>
</dependencyManagement>
+ <!-- Plugins -->
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>scripts/assembly-install-jboss422.xml</descriptor>
+ </descriptors>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>install</phase>
+ <goals>
+ <goal>attached</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
<!-- Repositories -->
<repositories>
<repository>
Added: stack/cxf/branches/tdiesler/trunk/scripts/assembly-install-jboss422.xml
===================================================================
--- stack/cxf/branches/tdiesler/trunk/scripts/assembly-install-jboss422.xml (rev 0)
+++ stack/cxf/branches/tdiesler/trunk/scripts/assembly-install-jboss422.xml 2008-04-22 09:34:20 UTC (rev 6607)
@@ -0,0 +1,19 @@
+<assembly 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/xsd/assembly-1.1.0-SNAPSHOT.xsd">
+ <id>deploy-structure-jboss422</id>
+ <formats>
+ <format>dir</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <moduleSets>
+ <moduleSet>
+ <includes>
+ <include>org.jboss.ws:jbossws-cxf-client</include>
+ </includes>
+ <binaries>
+ <outputDirectory>modules/${artifactId}</outputDirectory>
+ <unpack>false</unpack>
+ </binaries>
+ </moduleSet>
+ </moduleSets>
+</assembly>
\ No newline at end of file
Property changes on: stack/cxf/branches/tdiesler/trunk/scripts/assembly-install-jboss422.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
18 years
JBossWS SVN: r6606 - in stack/cxf/branches/tdiesler/trunk/modules/server: scripts and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-04-22 03:44:00 -0400 (Tue, 22 Apr 2008)
New Revision: 6606
Added:
stack/cxf/branches/tdiesler/trunk/modules/server/scripts/antrun-beans-config.xml
Removed:
stack/cxf/branches/tdiesler/trunk/modules/server/scripts/build-concat.xml
Modified:
stack/cxf/branches/tdiesler/trunk/modules/server/pom.xml
Log:
rename ant to scripts
Modified: stack/cxf/branches/tdiesler/trunk/modules/server/pom.xml
===================================================================
--- stack/cxf/branches/tdiesler/trunk/modules/server/pom.xml 2008-04-22 07:41:55 UTC (rev 6605)
+++ stack/cxf/branches/tdiesler/trunk/modules/server/pom.xml 2008-04-22 07:44:00 UTC (rev 6606)
@@ -152,7 +152,7 @@
</goals>
<configuration>
<tasks>
- <ant antfile="ant/build-concat.xml"/>
+ <ant antfile="scripts/antrun-beans-config.xml"/>
</tasks>
</configuration>
</execution>
Added: stack/cxf/branches/tdiesler/trunk/modules/server/scripts/antrun-beans-config.xml
===================================================================
--- stack/cxf/branches/tdiesler/trunk/modules/server/scripts/antrun-beans-config.xml (rev 0)
+++ stack/cxf/branches/tdiesler/trunk/modules/server/scripts/antrun-beans-config.xml 2008-04-22 07:44:00 UTC (rev 6606)
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ====================================================================== -->
+<!-- -->
+<!-- JBoss, the OpenSource J2EE webOS -->
+<!-- -->
+<!-- Distributable under LGPL license. -->
+<!-- See terms of license at http://www.gnu.org. -->
+<!-- -->
+<!-- ====================================================================== -->
+
+<!-- $Id$ -->
+
+<project default="main">
+
+ <property name="project.resources.directory" value="${basedir}/src/main/resources"/>
+ <property name="project.build.directory" value="${basedir}/target"/>
+ <property name="project.build.resources.directory" value="${project.build.directory}/resources"/>
+
+ <property name="thirdparty.dir" value="${project.build.directory}/thirdparty"/>
+
+ <!-- ================================================================== -->
+ <!-- Initialization -->
+ <!-- ================================================================== -->
+
+ <target name="init">
+ </target>
+
+ <!-- Compile resource files -->
+ <target name="main" depends="init">
+
+ <!-- concat jbossws-cxf50-beans.xml -->
+ <echo message="Concat jbossws-cxf50-beans.xml"/>
+ <concat destfile="${project.build.resources.directory}/jbossws-cxf50-beans.xml">
+ <header trimleading="yes">
+ <deployment xmlns="urn:jboss:bean-deployer:2.0"> </header>
+ <fileset file="${project.resources.directory}/jbossws-cxf-config.xml"/>
+ <footer trimleading="yes">
+ </deployment> </footer>
+ </concat>
+
+ <!-- Concat jbossws-cxf42-beans.xml -->
+ <echo message="Concat jbossws-cxf42-beans.xml"/>
+ <unzip dest="${project.build.resources.directory}" src="${thirdparty.dir}/jbossws-jboss42-resources.zip"/>
+ <concat destfile="${project.build.resources.directory}/jbossws-cxf42-beans.xml">
+ <header trimleading="yes">
+ <deployment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:jboss:bean-deployer bean-deployer_1_0.xsd"
+ xmlns="urn:jboss:bean-deployer"> </header>
+ <fileset file="${project.resources.directory}/jbossws-cxf-config.xml"/>
+ <fileset file="${project.build.resources.directory}/jbossws-jboss42-config.xml"/>
+ <footer trimleading="yes">
+ </deployment> </footer>
+ </concat>
+
+ </target>
+
+</project>
Property changes on: stack/cxf/branches/tdiesler/trunk/modules/server/scripts/antrun-beans-config.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Deleted: stack/cxf/branches/tdiesler/trunk/modules/server/scripts/build-concat.xml
===================================================================
--- stack/cxf/branches/tdiesler/trunk/modules/server/scripts/build-concat.xml 2008-04-22 07:41:55 UTC (rev 6605)
+++ stack/cxf/branches/tdiesler/trunk/modules/server/scripts/build-concat.xml 2008-04-22 07:44:00 UTC (rev 6606)
@@ -1,57 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- ====================================================================== -->
-<!-- -->
-<!-- JBoss, the OpenSource J2EE webOS -->
-<!-- -->
-<!-- Distributable under LGPL license. -->
-<!-- See terms of license at http://www.gnu.org. -->
-<!-- -->
-<!-- ====================================================================== -->
-
-<!-- $Id$ -->
-
-<project default="main">
-
- <property name="project.resources.directory" value="${basedir}/src/main/resources"/>
- <property name="project.build.directory" value="${basedir}/target"/>
- <property name="project.build.resources.directory" value="${project.build.directory}/resources"/>
-
- <property name="thirdparty.dir" value="${project.build.directory}/thirdparty"/>
-
- <!-- ================================================================== -->
- <!-- Initialization -->
- <!-- ================================================================== -->
-
- <target name="init">
- </target>
-
- <!-- Compile resource files -->
- <target name="main" depends="init">
-
- <!-- concat jbossws-cxf50-beans.xml -->
- <echo message="Concat jbossws-cxf50-beans.xml"/>
- <concat destfile="${project.build.resources.directory}/jbossws-cxf50-beans.xml">
- <header trimleading="yes">
- <deployment xmlns="urn:jboss:bean-deployer:2.0"> </header>
- <fileset file="${project.resources.directory}/jbossws-cxf-config.xml"/>
- <footer trimleading="yes">
- </deployment> </footer>
- </concat>
-
- <!-- Concat jbossws-cxf42-beans.xml -->
- <echo message="Concat jbossws-cxf42-beans.xml"/>
- <unzip dest="${project.build.resources.directory}" src="${thirdparty.dir}/jbossws-jboss42-resources.zip"/>
- <concat destfile="${project.build.resources.directory}/jbossws-cxf42-beans.xml">
- <header trimleading="yes">
- <deployment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:jboss:bean-deployer bean-deployer_1_0.xsd"
- xmlns="urn:jboss:bean-deployer"> </header>
- <fileset file="${project.resources.directory}/jbossws-cxf-config.xml"/>
- <fileset file="${project.build.resources.directory}/jbossws-jboss42-config.xml"/>
- <footer trimleading="yes">
- </deployment> </footer>
- </concat>
-
- </target>
-
-</project>
18 years
JBossWS SVN: r6605 - stack/cxf/branches/tdiesler/trunk/modules/server.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-04-22 03:41:55 -0400 (Tue, 22 Apr 2008)
New Revision: 6605
Added:
stack/cxf/branches/tdiesler/trunk/modules/server/scripts/
Removed:
stack/cxf/branches/tdiesler/trunk/modules/server/ant/
Log:
rename ant to scripts
Copied: stack/cxf/branches/tdiesler/trunk/modules/server/scripts (from rev 6603, stack/cxf/branches/tdiesler/trunk/modules/server/ant)
18 years