[jbossws-commits] JBossWS SVN: r1319 - in branches/jbossws-1.0/src/test: java/org/jboss/test/ws/jaxrpc/xop/doclit java/org/jboss/test/ws/jaxrpc/xop/rpclit resources/jaxrpc/xop/doclit/WEB-INF/wsdl resources/jaxrpc/xop/rpclit/WEB-INF/wsdl

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri Oct 27 07:44:24 EDT 2006


Author: heiko.braun at jboss.com
Date: 2006-10-27 07:44:08 -0400 (Fri, 27 Oct 2006)
New Revision: 1319

Added:
   branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/XOPPing.java
   branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/XOPPingImpl.java
   branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/XOPPingService.java
   branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPing.java
   branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPingImpl.java
   branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPingService.java
   branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/service-doclit.wsdl
   branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/wsdl0.wsdl
   branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/xsd0.xsd
   branches/jbossws-1.0/src/test/resources/jaxrpc/xop/rpclit/WEB-INF/wsdl/service-rpclit.wsdl
Removed:
   branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestServiceImpl.java
   branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestService_PortType.java
   branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestService_Service.java
   branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/TestServiceImpl.java
   branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/TestService_PortType.java
   branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/TestService_Service.java
   branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/TestService.wsdl
   branches/jbossws-1.0/src/test/resources/jaxrpc/xop/rpclit/WEB-INF/wsdl/TestService.wsdl
Log:
renamed files

Deleted: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestServiceImpl.java
===================================================================
--- branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestServiceImpl.java	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestServiceImpl.java	2006-10-27 11:44:08 UTC (rev 1319)
@@ -1,35 +0,0 @@
-package org.jboss.test.ws.jaxrpc.xop.doclit;
-
-import org.jboss.test.ws.jaxrpc.xop.shared.*;
-
-import java.rmi.RemoteException;
-
-/**
- * MTOM test service impl.
- * The 'message' param value determines wether or not the response should be XOP encoded.
- *
- * @author Heiko Braun, <heiko at openj.net>
- * @since 11-Apr-2006
- */
-public class TestServiceImpl extends MTOMServiceBase implements TestService_PortType {
-
-   public PingMsgResponse ping(PingMsg pingMsg) throws RemoteException {
-      toggleXOP(pingMsg.getMessage());
-      return new PingMsgResponse(pingMsg.getXopContent());
-   }
-
-   public PingImageResponse pingImage(PingImage pingImage) throws RemoteException {
-      toggleXOP(pingImage.getMessage());
-      return new PingImageResponse(pingImage.getXopContent());
-   }
-
-   public PingSourceResponse pingSource(PingSource pingSource) throws RemoteException {
-      toggleXOP(pingSource.getMessage());
-      return new PingSourceResponse(pingSource.getXopContent());
-   }
-
-   public PingDataHandlerResponse pingDataHandler(PingDataHandler pingDataHandler) throws RemoteException {
-      toggleXOP(pingDataHandler.getMessage());
-      return new PingDataHandlerResponse(pingDataHandler.getXopContent());
-   }
-}

Deleted: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestService_PortType.java
===================================================================
--- branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestService_PortType.java	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestService_PortType.java	2006-10-27 11:44:08 UTC (rev 1319)
@@ -1,17 +0,0 @@
-/*  
- * JBoss, the OpenSource EJB server
- * Distributable under LGPL license. See terms of license at gnu.org. 
- */
-//Auto Generated by jbossws - Please do not edit!!!
-
-package org.jboss.test.ws.jaxrpc.xop.doclit;
-
-import org.jboss.test.ws.jaxrpc.xop.shared.*;
-
-public interface TestService_PortType extends java.rmi.Remote
-{
-   public PingMsgResponse ping(PingMsg pingMsg) throws java.rmi.RemoteException;
-   public PingImageResponse pingImage(PingImage pingImage) throws java.rmi.RemoteException;
-   public PingSourceResponse pingSource(PingSource pingSource) throws java.rmi.RemoteException;
-   public PingDataHandlerResponse pingDataHandler(PingDataHandler pingDataHandler) throws java.rmi.RemoteException;
-}

Deleted: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestService_Service.java
===================================================================
--- branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestService_Service.java	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestService_Service.java	2006-10-27 11:44:08 UTC (rev 1319)
@@ -1,19 +0,0 @@
-/*  
-* JBoss, the OpenSource EJB server
-* Distributable under LGPL license. See terms of license at gnu.org.
-*/
-
-//Auto Generated by jbossws - Please do not edit!!!
-
-package org.jboss.test.ws.jaxrpc.xop.doclit;
-
-
-import javax.xml.rpc.ServiceException;
-
-
-public interface  TestService_Service extends  javax.xml.rpc.Service
-{
-
-     public org.jboss.test.ws.jaxrpc.xop.doclit.TestService_PortType getTestServicePort() throws ServiceException;
-
-}

Copied: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/XOPPing.java (from rev 1296, branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestService_PortType.java)
===================================================================
--- branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestService_PortType.java	2006-10-24 14:06:00 UTC (rev 1296)
+++ branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/XOPPing.java	2006-10-27 11:44:08 UTC (rev 1319)
@@ -0,0 +1,17 @@
+/*  
+ * JBoss, the OpenSource EJB server
+ * Distributable under LGPL license. See terms of license at gnu.org. 
+ */
+//Auto Generated by jbossws - Please do not edit!!!
+
+package org.jboss.test.ws.jaxrpc.xop.doclit;
+
+import org.jboss.test.ws.jaxrpc.xop.shared.*;
+
+public interface XOPPing extends java.rmi.Remote
+{
+   public PingMsgResponse ping(PingMsg pingMsg) throws java.rmi.RemoteException;
+   public PingImageResponse pingImage(PingImage pingImage) throws java.rmi.RemoteException;
+   public PingSourceResponse pingSource(PingSource pingSource) throws java.rmi.RemoteException;
+   public PingDataHandlerResponse pingDataHandler(PingDataHandler pingDataHandler) throws java.rmi.RemoteException;
+}

Copied: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/XOPPingImpl.java (from rev 1296, branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestServiceImpl.java)
===================================================================
--- branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestServiceImpl.java	2006-10-24 14:06:00 UTC (rev 1296)
+++ branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/XOPPingImpl.java	2006-10-27 11:44:08 UTC (rev 1319)
@@ -0,0 +1,36 @@
+package org.jboss.test.ws.jaxrpc.xop.doclit;
+
+import org.jboss.test.ws.jaxrpc.xop.doclit.XOPPing;
+import org.jboss.test.ws.jaxrpc.xop.shared.*;
+
+import java.rmi.RemoteException;
+
+/**
+ * MTOM test service impl.
+ * The 'message' param value determines wether or not the response should be XOP encoded.
+ *
+ * @author Heiko Braun, <heiko at openj.net>
+ * @since 11-Apr-2006
+ */
+public class XOPPingImpl extends MTOMServiceBase implements XOPPing {
+
+   public PingMsgResponse ping(PingMsg pingMsg) throws RemoteException {
+      toggleXOP(pingMsg.getMessage());
+      return new PingMsgResponse(pingMsg.getXopContent());
+   }
+
+   public PingImageResponse pingImage(PingImage pingImage) throws RemoteException {
+      toggleXOP(pingImage.getMessage());
+      return new PingImageResponse(pingImage.getXopContent());
+   }
+
+   public PingSourceResponse pingSource(PingSource pingSource) throws RemoteException {
+      toggleXOP(pingSource.getMessage());
+      return new PingSourceResponse(pingSource.getXopContent());
+   }
+
+   public PingDataHandlerResponse pingDataHandler(PingDataHandler pingDataHandler) throws RemoteException {
+      toggleXOP(pingDataHandler.getMessage());
+      return new PingDataHandlerResponse(pingDataHandler.getXopContent());
+   }
+}

Copied: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/XOPPingService.java (from rev 1296, branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestService_Service.java)
===================================================================
--- branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/TestService_Service.java	2006-10-24 14:06:00 UTC (rev 1296)
+++ branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/doclit/XOPPingService.java	2006-10-27 11:44:08 UTC (rev 1319)
@@ -0,0 +1,19 @@
+/*  
+* JBoss, the OpenSource EJB server
+* Distributable under LGPL license. See terms of license at gnu.org.
+*/
+
+//Auto Generated by jbossws - Please do not edit!!!
+
+package org.jboss.test.ws.jaxrpc.xop.doclit;
+
+
+import javax.xml.rpc.ServiceException;
+
+
+public interface  XOPPingService extends  javax.xml.rpc.Service
+{
+
+     public org.jboss.test.ws.jaxrpc.xop.doclit.XOPPing getTestServicePort() throws ServiceException;
+
+}

Deleted: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/TestServiceImpl.java
===================================================================
--- branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/TestServiceImpl.java	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/TestServiceImpl.java	2006-10-27 11:44:08 UTC (rev 1319)
@@ -1,32 +0,0 @@
-package org.jboss.test.ws.jaxrpc.xop.rpclit;
-
-import org.jboss.ws.soap.MessageContextAssociation;
-import org.jboss.ws.common.CommonMessageContext;
-import org.jboss.ws.jaxrpc.StubExt;
-import org.jboss.test.ws.jaxrpc.xop.shared.PingMsg;
-import org.jboss.test.ws.jaxrpc.xop.shared.PingMsgResponse;
-import org.jboss.test.ws.jaxrpc.xop.shared.MTOMServiceBase;
-
-import java.rmi.RemoteException;
-import java.util.StringTokenizer;
-
-/**
- * @author Heiko Braun, <heiko at openj.net>
- * @since 11-Apr-2006
- */
-public class TestServiceImpl extends MTOMServiceBase implements TestService_PortType {
-
-   public PingMsgResponse pingComplex(PingMsg pingMsg) throws RemoteException {
-
-      String message = pingMsg.getMessage();      
-      toggleXOP(message);
-
-      return new PingMsgResponse(pingMsg.getXopContent());
-   }
-
-   public byte[] pingSimple(String parameters, byte[] xopContent) throws RemoteException { 
-      toggleXOP(parameters);
-      return xopContent;
-   }
-
-}

Deleted: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/TestService_PortType.java
===================================================================
--- branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/TestService_PortType.java	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/TestService_PortType.java	2006-10-27 11:44:08 UTC (rev 1319)
@@ -1,12 +0,0 @@
-/*  
- * JBoss, the OpenSource EJB server
- * Distributable under LGPL license. See terms of license at gnu.org. 
- */
-//Auto Generated by jbossws - Please do not edit!!!
-
-package org.jboss.test.ws.jaxrpc.xop.rpclit;
-public interface TestService_PortType extends java.rmi.Remote
-{
-   public org.jboss.test.ws.jaxrpc.xop.shared.PingMsgResponse pingComplex(org.jboss.test.ws.jaxrpc.xop.shared.PingMsg pingMsg) throws java.rmi.RemoteException;
-   public byte[] pingSimple(String parameters, byte[] xopContent) throws java.rmi.RemoteException;
-}

Deleted: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/TestService_Service.java
===================================================================
--- branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/TestService_Service.java	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/TestService_Service.java	2006-10-27 11:44:08 UTC (rev 1319)
@@ -1,17 +0,0 @@
-/*  
-* JBoss, the OpenSource EJB server
-* Distributable under LGPL license. See terms of license at gnu.org.
-*/
-
-//Auto Generated by jbossws - Please do not edit!!!
-
-package org.jboss.test.ws.jaxrpc.xop.rpclit;
-
-
-import javax.xml.rpc.ServiceException;
-
-
-public interface  TestService_Service extends  javax.xml.rpc.Service
-{
-   public org.jboss.test.ws.jaxrpc.xop.rpclit.TestService_PortType getTestServicePort() throws ServiceException;
-}

Added: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPing.java
===================================================================
--- branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPing.java	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPing.java	2006-10-27 11:44:08 UTC (rev 1319)
@@ -0,0 +1,18 @@
+/*  
+ * JBoss, the OpenSource EJB server
+ * Distributable under LGPL license. See terms of license at gnu.org. 
+ */
+//Auto Generated by jbossws - Please do not edit!!!
+
+package org.jboss.test.ws.jaxrpc.xop.rpclit;
+
+import org.jboss.test.ws.jaxrpc.xop.shared.*;
+
+public interface XOPPing extends java.rmi.Remote
+{
+   public org.jboss.test.ws.jaxrpc.xop.shared.PingMsgResponse ping(org.jboss.test.ws.jaxrpc.xop.shared.PingMsg pingMsg) throws java.rmi.RemoteException;
+   public byte[] pingSimple(String parameters, byte[] xopContent) throws java.rmi.RemoteException;
+   public PingImageResponse pingImage(PingImage pingImage) throws java.rmi.RemoteException;
+   public PingSourceResponse pingSource(PingSource pingSource) throws java.rmi.RemoteException;
+   public PingDataHandlerResponse pingDataHandler(PingDataHandler pingDataHandler) throws java.rmi.RemoteException;
+}


Property changes on: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPing.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPingImpl.java
===================================================================
--- branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPingImpl.java	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPingImpl.java	2006-10-27 11:44:08 UTC (rev 1319)
@@ -0,0 +1,41 @@
+package org.jboss.test.ws.jaxrpc.xop.rpclit;
+
+import org.jboss.test.ws.jaxrpc.xop.shared.*;
+
+import java.rmi.RemoteException;
+
+/**
+ * @author Heiko Braun, <heiko at openj.net>
+ * @since 11-Apr-2006
+ */
+public class XOPPingImpl extends MTOMServiceBase implements XOPPing {
+
+   public PingMsgResponse ping(PingMsg pingMsg) throws RemoteException {
+
+      String message = pingMsg.getMessage();
+      toggleXOP(message);
+
+      return new PingMsgResponse(pingMsg.getXopContent());
+   }
+
+   public byte[] pingSimple(String parameters, byte[] xopContent) throws RemoteException {
+      toggleXOP(parameters);
+      return xopContent;
+   }
+
+   public PingImageResponse pingImage(PingImage pingImage) throws RemoteException {
+      toggleXOP(pingImage.getMessage());
+      return new PingImageResponse(pingImage.getXopContent());
+   }
+
+   public PingSourceResponse pingSource(PingSource pingSource) throws RemoteException {
+      toggleXOP(pingSource.getMessage());
+      return new PingSourceResponse(pingSource.getXopContent());
+   }
+
+   public PingDataHandlerResponse pingDataHandler(PingDataHandler pingDataHandler) throws RemoteException {
+      toggleXOP(pingDataHandler.getMessage());
+      return new PingDataHandlerResponse(pingDataHandler.getXopContent());
+   }
+
+}


Property changes on: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPingImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPingService.java
===================================================================
--- branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPingService.java	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPingService.java	2006-10-27 11:44:08 UTC (rev 1319)
@@ -0,0 +1,17 @@
+/*  
+* JBoss, the OpenSource EJB server
+* Distributable under LGPL license. See terms of license at gnu.org.
+*/
+
+//Auto Generated by jbossws - Please do not edit!!!
+
+package org.jboss.test.ws.jaxrpc.xop.rpclit;
+
+
+import javax.xml.rpc.ServiceException;
+
+
+public interface  XOPPingService extends  javax.xml.rpc.Service
+{
+   public org.jboss.test.ws.jaxrpc.xop.rpclit.XOPPing getTestServicePort() throws ServiceException;
+}


Property changes on: branches/jbossws-1.0/src/test/java/org/jboss/test/ws/jaxrpc/xop/rpclit/XOPPingService.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Deleted: branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/TestService.wsdl
===================================================================
--- branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/TestService.wsdl	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/TestService.wsdl	2006-10-27 11:44:08 UTC (rev 1319)
@@ -1,214 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<definitions
-    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
-    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
-    xmlns:s="http://www.w3.org/2001/XMLSchema"
-    xmlns:s0="http://jboss.org/test/ws/xop/doclit"
-    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
-    xmlns:tns="http://jboss.org/test/ws/xop/doclit"
-    targetNamespace="http://jboss.org/test/ws/xop/doclit"
-    xmlns="http://schemas.xmlsoap.org/wsdl/">
-
-   <types>
-      <s:schema xmlns="http://www.w3.org/2001/XMLSchema"
-                targetNamespace="http://jboss.org/test/ws/xop/doclit"
-                xmlns:xmime="http://www.w3.org/2005/05/xmlmime" >
-
-         <import namespace="http://www.w3.org/2005/05/xmlmime"/>
-
-         <!--
-            the xmime:expectedContentType is missing.
-            this maps to byte[]
-         -->
-         <s:element name="PingMsg">
-            <s:complexType>
-               <s:sequence>
-                  <s:element name="message" minOccurs="0" maxOccurs="1" type="s:string" />
-                  <s:element name="xopContent" minOccurs="0" maxOccurs="1" type="s:base64Binary"/>
-               </s:sequence>
-            </s:complexType>
-         </s:element>
-
-         <!--
-            a known media type maps to specific java type.
-            in this case a byte[] as well
-         -->
-         <s:element name="PingMsgResponse">
-            <s:complexType>
-               <s:sequence>
-                  <s:element name="xopContent" minOccurs="0" maxOccurs="1"
-                             xmime:expectedContentTypes="application/octet-stream"
-                             type="xmime:base64Binary"/>
-               </s:sequence>
-            </s:complexType>
-         </s:element>
-
-         <!--
-            a known media type that maps to java.awt.Image
-         -->
-         <s:element name="PingImage">
-            <s:complexType>
-               <s:sequence>
-                  <s:element name="message" minOccurs="0" maxOccurs="1" type="s:string" />
-                  <s:element name="xopContent" minOccurs="0" maxOccurs="1"
-                             xmime:expectedContentTypes="image/jpeg"
-                             type="xmime:base64Binary"/>
-               </s:sequence>
-            </s:complexType>
-         </s:element>
-
-         <s:element name="PingImageResponse">
-            <s:complexType>
-               <s:sequence>
-                  <s:element name="xopContent" minOccurs="0" maxOccurs="1"
-                             xmime:expectedContentTypes="image/jpeg"
-                             type="xmime:base64Binary"/>
-               </s:sequence>
-            </s:complexType>
-         </s:element>
-
-         <!--
-            a preferred media type specified through xmime:contentType.
-            this would map to javax.transform.Source
-         -->
-         <s:element name="PingSource">
-            <s:complexType>
-               <s:sequence>
-                  <s:element name="message" minOccurs="0" maxOccurs="1" type="s:string" />
-                  <s:element name="xopContent" minOccurs="0" maxOccurs="1"
-                             xmime:expectedContentTypes="image/jpeg,text/xml"
-                             xmime:contentType="text/xml"
-                             type="xmime:base64Binary"/>
-               </s:sequence>
-            </s:complexType>
-         </s:element>
-
-         <s:element name="PingSourceResponse">
-            <s:complexType>
-               <s:sequence>
-                  <s:element name="xopContent" minOccurs="0" maxOccurs="1"
-                      xmime:expectedContentTypes="text/xml"
-                      type="xmime:base64Binary"/>
-               </s:sequence>
-            </s:complexType>
-         </s:element>
-
-         <!--
-           the preferred media type is not declared
-           binaries will be mapped to javax.activation.DataHandler
-         -->
-         <s:element name="PingDataHandler">
-            <s:complexType>
-               <s:sequence>
-                  <s:element name="message" minOccurs="0" maxOccurs="1" type="s:string" />
-                  <s:element name="xopContent" minOccurs="0" maxOccurs="1"
-                             xmime:expectedContentTypes="image/jpeg,text/xml"
-                             type="xmime:base64Binary"/>
-               </s:sequence>
-            </s:complexType>
-         </s:element>
-
-         <s:element name="PingDataHandlerResponse">
-            <s:complexType>
-               <s:sequence>
-                  <s:element name="xopContent" minOccurs="0" maxOccurs="1" type="s:base64Binary"/>
-               </s:sequence>
-            </s:complexType>
-         </s:element>
-
-      </s:schema>
-   </types>
-
-   <message name="PingIn">
-      <part name="parameters" element="s0:PingMsg" />
-   </message>
-   <message name="PingOut">
-      <part name="parameters" element="s0:PingMsgResponse" />
-   </message>
-
-   <message name="PingImageIn">
-      <part name="parameters" element="s0:PingImage" />
-   </message>
-   <message name="PingImageOut">
-      <part name="parameters" element="s0:PingImageResponse" />
-   </message>
-
-   <message name="PingSourceIn">
-      <part name="parameters" element="s0:PingSource" />
-   </message>
-   <message name="PingSourceOut">
-      <part name="parameters" element="s0:PingSourceResponse" />
-   </message>
-
-   <message name="PingDataHandlerIn">
-      <part name="parameters" element="s0:PingDataHandler" />
-   </message>
-   <message name="PingDataHandlerOut">
-      <part name="parameters" element="s0:PingDataHandlerResponse" />
-   </message>
-
-   <portType name="TestService">
-      <operation name="ping">
-         <input message="s0:PingIn" />
-         <output message="s0:PingOut" />
-      </operation>
-      <operation name="pingImage">
-         <input message="s0:PingImageIn" />
-         <output message="s0:PingImageOut" />
-      </operation>
-       <operation name="pingSource">
-         <input message="s0:PingSourceIn" />
-         <output message="s0:PingSourceOut" />
-      </operation>
-      <operation name="pingDataHandler">
-         <input message="s0:PingDataHandlerIn" />
-         <output message="s0:PingDataHandlerOut" />
-      </operation>
-   </portType>
-
-   <binding name="TestServiceBinding" type="s0:TestService">
-      <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
-      <operation name="ping">
-         <soap:operation soapAction="http://jboss.org/test/ws/xop/doclit/Ping" style="document" />
-         <input>
-            <soap:body use="literal" />
-         </input>
-         <output>
-            <soap:body use="literal" />
-         </output>
-      </operation>
-      <operation name="pingImage">
-         <soap:operation soapAction="http://jboss.org/test/ws/xop/doclit/PingImage" style="document" />
-         <input>
-            <soap:body use="literal" />
-         </input>
-         <output>
-            <soap:body use="literal" />
-         </output>
-      </operation>
-      <operation name="pingSource">
-         <soap:operation soapAction="http://jboss.org/test/ws/xop/doclit/PingSource" style="document" />
-         <input>
-            <soap:body use="literal" />
-         </input>
-         <output>
-            <soap:body use="literal" />
-         </output>
-      </operation>
-      <operation name="pingDataHandler">
-         <soap:operation soapAction="http://jboss.org/test/ws/xop/doclit/PingDataHandler" style="document" />
-         <input>
-            <soap:body use="literal" />
-         </input>
-         <output>
-            <soap:body use="literal" />
-         </output>
-      </operation>
-   </binding>
-
-   <service name="TestService">
-      <port name="TestServicePort" binding="s0:TestServiceBinding">
-         <soap:address location="REPLACE_WITH_ACTUAL_URL" />
-      </port>
-   </service>
-</definitions>
\ No newline at end of file

Copied: branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/service-doclit.wsdl (from rev 1296, branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/TestService.wsdl)
===================================================================
--- branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/TestService.wsdl	2006-10-24 14:06:00 UTC (rev 1296)
+++ branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/service-doclit.wsdl	2006-10-27 11:44:08 UTC (rev 1319)
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="utf-8"?>
+<wsdl:definitions
+    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
+    xmlns:tns="http://jboss.org/test/ws/xop"
+    targetNamespace="http://jboss.org/test/ws/xop"
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
+
+   <wsdl:types>
+      <xsd:import schemaLocation="xsd0.xsd"/>
+   </wsdl:types>
+
+   <wsdl:import namespace="http://jboss.org/test/ws/xop" location="wsdl0.wsdl"/>
+
+   <wsdl:binding name="TestServiceBinding" type="tns:TestService">
+      <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
+      <wsdl:operation name="ping">
+         <soap:operation soapAction="http://jboss.org/test/ws/xop/Ping" style="document" />
+         <wsdl:input>
+            <soap:body use="literal" />
+         </wsdl:input>
+         <wsdl:output>
+            <soap:body use="literal" />
+         </wsdl:output>
+      </wsdl:operation>
+      <wsdl:operation name="pingImage">
+         <soap:operation soapAction="http://jboss.org/test/ws/xop/PingImage" style="document" />
+         <wsdl:input>
+            <soap:body use="literal" />
+         </wsdl:input>
+         <wsdl:output>
+            <soap:body use="literal" />
+         </wsdl:output>
+      </wsdl:operation>
+      <wsdl:operation name="pingSource">
+         <soap:operation soapAction="http://jboss.org/test/ws/xop/PingSource" style="document" />
+         <wsdl:input>
+            <soap:body use="literal" />
+         </wsdl:input>
+         <wsdl:output>
+            <soap:body use="literal" />
+         </wsdl:output>
+      </wsdl:operation>
+      <wsdl:operation name="pingDataHandler">
+         <soap:operation soapAction="http://jboss.org/test/ws/xop/PingDataHandler" style="document" />
+         <wsdl:input>
+            <soap:body use="literal" />
+         </wsdl:input>
+         <wsdl:output>
+            <soap:body use="literal" />
+         </wsdl:output>
+      </wsdl:operation>
+   </wsdl:binding>
+
+   <wsdl:service name="TestService">
+      <wsdl:port name="TestServicePort" binding="tns:TestServiceBinding">
+         <soap:address location="REPLACE_WITH_ACTUAL_URL" />
+      </wsdl:port>
+   </wsdl:service>
+</wsdl:definitions>
\ No newline at end of file

Added: branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/wsdl0.wsdl
===================================================================
--- branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/wsdl0.wsdl	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/wsdl0.wsdl	2006-10-27 11:44:08 UTC (rev 1319)
@@ -0,0 +1,60 @@
+<?xml version="1.0" ?>
+
+<wsdl:definitions
+    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
+    xmlns:tns="http://jboss.org/test/ws/xop"
+    targetNamespace="http://jboss.org/test/ws/xop"
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
+
+   <wsdl:message name="PingIn">
+      <wsdl:part name="parameters" element="tns:PingMsg" />
+   </wsdl:message>
+
+   <wsdl:message name="PingOut">
+      <wsdl:part name="parameters" element="tns:PingMsgResponse" />
+   </wsdl:message>
+
+   <wsdl:message name="PingImageIn">
+      <wsdl:part name="parameters" element="tns:PingImage" />
+   </wsdl:message>
+   <wsdl:message name="PingImageOut">
+      <wsdl:part name="parameters" element="tns:PingImageResponse" />
+   </wsdl:message>
+
+   <wsdl:message name="PingSourceIn">
+      <wsdl:part name="parameters" element="tns:PingSource" />
+   </wsdl:message>
+   <wsdl:message name="PingSourceOut">
+      <wsdl:part name="parameters" element="tns:PingSourceResponse" />
+   </wsdl:message>
+
+   <wsdl:message name="PingDataHandlerIn">
+      <wsdl:part name="parameters" element="tns:PingDataHandler" />
+   </wsdl:message>
+   <wsdl:message name="PingDataHandlerOut">
+      <wsdl:part name="parameters" element="tns:PingDataHandlerResponse" />
+   </wsdl:message>
+
+   <wsdl:portType name="TestService">
+      <wsdl:operation name="ping">
+         <wsdl:input message="tns:PingIn" />
+         <wsdl:output message="tns:PingOut" />
+      </wsdl:operation>
+      <wsdl:operation name="pingImage">
+         <wsdl:input message="tns:PingImageIn" />
+         <wsdl:output message="tns:PingImageOut" />
+      </wsdl:operation>
+      <wsdl:operation name="pingSource">
+         <wsdl:input message="tns:PingSourceIn" />
+         <wsdl:output message="tns:PingSourceOut" />
+      </wsdl:operation>
+      <wsdl:operation name="pingDataHandler">
+         <wsdl:input message="tns:PingDataHandlerIn" />
+         <wsdl:output message="tns:PingDataHandlerOut" />
+      </wsdl:operation>
+   </wsdl:portType>
+
+</wsdl:definitions>
\ No newline at end of file


Property changes on: branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/wsdl0.wsdl
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/xsd0.xsd
===================================================================
--- branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/xsd0.xsd	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/xsd0.xsd	2006-10-27 11:44:08 UTC (rev 1319)
@@ -0,0 +1,108 @@
+<?xml version="1.0" ?>
+<s:schema xmlns:s="http://www.w3.org/2001/XMLSchema"
+          targetNamespace="http://jboss.org/test/ws/xop"
+          xmlns:xmime="http://www.w3.org/2005/05/xmlmime" >
+
+   <s:import namespace="http://www.w3.org/2005/05/xmlmime"/>
+
+   <!--
+      the xmime:expectedContentType is missing.
+      this maps to byte[]
+   -->
+   <s:element name="PingMsg">
+      <s:complexType>
+         <s:sequence>
+            <s:element name="message" minOccurs="0" maxOccurs="1" type="s:string" />
+            <s:element name="xopContent" minOccurs="0" maxOccurs="1" type="s:base64Binary"/>
+         </s:sequence>
+      </s:complexType>
+   </s:element>
+
+   <!--
+      a known media type maps to specific java type.
+      in this case a byte[] as well
+   -->
+   <s:element name="PingMsgResponse">
+      <s:complexType>
+         <s:sequence>
+            <s:element name="xopContent" minOccurs="0" maxOccurs="1"
+                       xmime:expectedContentTypes="application/octet-stream"
+                       type="xmime:base64Binary"/>
+         </s:sequence>
+      </s:complexType>
+   </s:element>
+
+   <!--
+      a known media type that maps to java.awt.Image
+   -->
+   <s:element name="PingImage">
+      <s:complexType>
+         <s:sequence>
+            <s:element name="message" minOccurs="0" maxOccurs="1" type="s:string" />
+            <s:element name="xopContent" minOccurs="0" maxOccurs="1"
+                       xmime:expectedContentTypes="image/jpeg"
+                       type="xmime:base64Binary"/>
+         </s:sequence>
+      </s:complexType>
+   </s:element>
+
+   <s:element name="PingImageResponse">
+      <s:complexType>
+         <s:sequence>
+            <s:element name="xopContent" minOccurs="0" maxOccurs="1"
+                       xmime:expectedContentTypes="image/jpeg"
+                       type="xmime:base64Binary"/>
+         </s:sequence>
+      </s:complexType>
+   </s:element>
+
+   <!--
+      a preferred media type specified through xmime:contentType.
+      this would map to javax.transform.Source
+   -->
+   <s:element name="PingSource">
+      <s:complexType>
+         <s:sequence>
+            <s:element name="message" minOccurs="0" maxOccurs="1" type="s:string" />
+            <s:element name="xopContent" minOccurs="0" maxOccurs="1"
+                       xmime:expectedContentTypes="image/jpeg,text/xml"
+                       xmime:contentType="text/xml"
+                       type="xmime:base64Binary"/>
+         </s:sequence>
+      </s:complexType>
+   </s:element>
+
+   <s:element name="PingSourceResponse">
+      <s:complexType>
+         <s:sequence>
+            <s:element name="xopContent" minOccurs="0" maxOccurs="1"
+                       xmime:expectedContentTypes="text/xml"
+                       type="xmime:base64Binary"/>
+         </s:sequence>
+      </s:complexType>
+   </s:element>
+
+   <!--
+     the preferred media type is not declared
+     binaries will be mapped to javax.activation.DataHandler
+   -->
+   <s:element name="PingDataHandler">
+      <s:complexType>
+         <s:sequence>
+            <s:element name="message" minOccurs="0" maxOccurs="1" type="s:string" />
+            <s:element name="xopContent" minOccurs="0" maxOccurs="1"
+                       xmime:expectedContentTypes="image/jpeg,text/xml"
+                       type="xmime:base64Binary"/>
+         </s:sequence>
+      </s:complexType>
+   </s:element>
+
+   <s:element name="PingDataHandlerResponse">
+      <s:complexType>
+         <s:sequence>
+            <s:element name="xopContent" minOccurs="0" maxOccurs="1" type="s:base64Binary"/>
+         </s:sequence>
+      </s:complexType>
+   </s:element>
+
+</s:schema>
\ No newline at end of file


Property changes on: branches/jbossws-1.0/src/test/resources/jaxrpc/xop/doclit/WEB-INF/wsdl/xsd0.xsd
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Deleted: branches/jbossws-1.0/src/test/resources/jaxrpc/xop/rpclit/WEB-INF/wsdl/TestService.wsdl
===================================================================
--- branches/jbossws-1.0/src/test/resources/jaxrpc/xop/rpclit/WEB-INF/wsdl/TestService.wsdl	2006-10-27 11:43:42 UTC (rev 1318)
+++ branches/jbossws-1.0/src/test/resources/jaxrpc/xop/rpclit/WEB-INF/wsdl/TestService.wsdl	2006-10-27 11:44:08 UTC (rev 1319)
@@ -1,89 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<definitions
-    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
-    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
-    xmlns:s="http://www.w3.org/2001/XMLSchema"
-    xmlns:s0="http://jboss.org/test/ws/xop/rpclit"
-    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
-    xmlns:tns="http://jboss.org/test/ws/xop/rpclit"
-    targetNamespace="http://jboss.org/test/ws/xop/rpclit"
-    xmlns="http://schemas.xmlsoap.org/wsdl/">
-
-   <types>
-      <s:schema xmlns="http://www.w3.org/2001/XMLSchema"
-                targetNamespace="http://jboss.org/test/ws/xop/rpclit"
-                xmlns:xmime="http://www.w3.org/2005/05/xmlmime" >
-
-         <import namespace="http://www.w3.org/2005/05/xmlmime"/>
-
-         <s:complexType name="PingInType">
-            <s:sequence>
-               <s:element name="message" minOccurs="0" maxOccurs="1" type="s:string" />
-               <s:element name="xopContent" minOccurs="0" maxOccurs="1" xmime:expectedContentTypes="text/plain" type="xmime:base64Binary"/>               
-            </s:sequence>
-         </s:complexType>
-
-         <s:complexType name="PingOutType">
-            <s:sequence>
-               <s:element name="xopContent" minOccurs="0" maxOccurs="1" xmime:expectedContentTypes="text/plain" type="s:base64Binary"/>
-            </s:sequence>
-         </s:complexType>
-
-      </s:schema>
-   </types>
-
-   <message name="PingIn">
-      <part name="parameters" type="tns:PingInType" />
-   </message>
-   <message name="PingOut">
-      <part name="result" type="tns:PingOutType" />
-   </message>
-
-   <message name="OctetsIn">
-      <part name="message" type="s:string" />
-      <part name="xopContent" type="s:base64Binary" />
-   </message>
-   <message name="OctetsOut">
-      <part name="result" type="s:base64Binary" />
-   </message>
-
-   <portType name="TestService">
-      <operation name="pingComplex" parameterOrder='parameters'>
-         <input message="tns:PingIn" />
-         <output message="tns:PingOut" />
-      </operation>
-
-      <operation name="pingSimple">
-         <input message="tns:OctetsIn" />
-         <output message="tns:OctetsOut" />
-      </operation>
-   </portType>
-
-   <binding name="TestServiceBinding" type="tns:TestService">
-      <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc" />
-      <operation name="pingComplex">
-         <soap:operation soapAction="" style="rpc" />
-         <input>
-            <soap:body use="literal" />
-         </input>
-         <output>
-            <soap:body use="literal" />
-         </output>
-      </operation>
-       <operation name="pingSimple">
-         <soap:operation soapAction="http://jboss.org/test/ws/xop/rpclit/PingSimple" style="rpc" />
-         <input>
-            <soap:body use="literal" />
-         </input>
-         <output>
-            <soap:body use="literal" />
-         </output>
-      </operation>
-   </binding>
-
-   <service name="TestService">
-      <port name="TestServicePort" binding="tns:TestServiceBinding">
-         <soap:address location="REPLACE_WITH_ACTUAL_URL" />
-      </port>
-   </service>
-</definitions>
\ No newline at end of file

Copied: branches/jbossws-1.0/src/test/resources/jaxrpc/xop/rpclit/WEB-INF/wsdl/service-rpclit.wsdl (from rev 1296, branches/jbossws-1.0/src/test/resources/jaxrpc/xop/rpclit/WEB-INF/wsdl/TestService.wsdl)
===================================================================
--- branches/jbossws-1.0/src/test/resources/jaxrpc/xop/rpclit/WEB-INF/wsdl/TestService.wsdl	2006-10-24 14:06:00 UTC (rev 1296)
+++ branches/jbossws-1.0/src/test/resources/jaxrpc/xop/rpclit/WEB-INF/wsdl/service-rpclit.wsdl	2006-10-27 11:44:08 UTC (rev 1319)
@@ -0,0 +1,190 @@
+<?xml version="1.0" encoding="utf-8"?>
+<wsdl:definitions
+    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
+    xmlns:tns="http://jboss.org/test/ws/xop"
+    targetNamespace="http://jboss.org/test/ws/xop"
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
+
+   <wsdl:types>
+      <xsd:schema targetNamespace="http://jboss.org/test/ws/xop"
+                  xmlns:xmime="http://www.w3.org/2005/05/xmlmime" >
+
+         <xsd:import namespace="http://www.w3.org/2005/05/xmlmime"/>
+
+         <xsd:complexType name="PingInType">
+            <xsd:sequence>
+               <xsd:element name="message" minOccurs="0" maxOccurs="1" type="xsd:string" />
+               <xsd:element name="xopContent" minOccurs="0" maxOccurs="1" type="xsd:base64Binary"/>
+            </xsd:sequence>
+         </xsd:complexType>
+
+         <xsd:complexType name="PingOutType">
+            <xsd:sequence>
+               <xsd:element name="xopContent" minOccurs="0" maxOccurs="1" type="xsd:base64Binary"/>
+            </xsd:sequence>
+         </xsd:complexType>
+
+         <xsd:complexType name="PingImageType">
+            <xsd:sequence>
+               <xsd:element name="message" minOccurs="0" maxOccurs="1" type="xsd:string" />
+               <xsd:element name="xopContent" minOccurs="0" maxOccurs="1" type="xsd:base64Binary"/>
+            </xsd:sequence>
+         </xsd:complexType>
+
+         <xsd:complexType name="PingImageOutType">
+            <xsd:sequence>
+               <xsd:element name="xopContent" minOccurs="0" maxOccurs="1" type="xsd:base64Binary"/>
+            </xsd:sequence>
+         </xsd:complexType>
+
+         <xsd:complexType name="PingSourceType">
+            <xsd:sequence>
+               <xsd:element name="message" minOccurs="0" maxOccurs="1" type="xsd:string" />
+               <xsd:element name="xopContent" minOccurs="0" maxOccurs="1" type="xsd:base64Binary"/>
+            </xsd:sequence>
+         </xsd:complexType>
+
+         <xsd:complexType name="PingSourceOutType">
+            <xsd:sequence>
+               <xsd:element name="xopContent" minOccurs="0" maxOccurs="1" type="xsd:base64Binary"/>
+            </xsd:sequence>
+         </xsd:complexType>
+
+         <xsd:complexType name="PingDataHandlerType">
+            <xsd:sequence>
+               <xsd:element name="message" minOccurs="0" maxOccurs="1" type="xsd:string" />
+               <xsd:element name="xopContent" minOccurs="0" maxOccurs="1" type="xsd:base64Binary"/>
+            </xsd:sequence>
+         </xsd:complexType>
+
+         <xsd:complexType name="PingDataHandlerOutType">
+            <xsd:sequence>
+               <xsd:element name="xopContent" minOccurs="0" maxOccurs="1" type="xsd:base64Binary"/>
+            </xsd:sequence>
+         </xsd:complexType>
+      </xsd:schema>
+
+   </wsdl:types>
+
+   <wsdl:message name="PingIn">
+      <wsdl:part name="parameters" type="tns:PingInType" />
+   </wsdl:message>
+
+   <wsdl:message name="PingOut">
+      <wsdl:part name="result" type="tns:PingOutType" />
+   </wsdl:message>
+
+   <wsdl:message name="OctetsIn">
+      <wsdl:part name="message" type="xsd:string" />
+      <wsdl:part name="xopContent" type="xsd:base64Binary" />
+   </wsdl:message>
+
+   <wsdl:message name="OctetsOut">
+      <wsdl:part name="result" type="xsd:base64Binary" />
+   </wsdl:message>
+
+   <wsdl:message name="PingImageIn">
+      <wsdl:part name="parameters" type="tns:PingImageType" />
+   </wsdl:message>
+   <wsdl:message name="PingImageOut">
+      <wsdl:part name="result" type="tns:PingImageOutType" />
+   </wsdl:message>
+
+   <wsdl:message name="PingSourceIn">
+      <wsdl:part name="parameters" type="tns:PingSourceType" />
+   </wsdl:message>
+   <wsdl:message name="PingSourceOut">
+      <wsdl:part name="result" type="tns:PingSourceOutType" />
+   </wsdl:message>
+
+   <wsdl:message name="PingDataHandlerIn">
+      <wsdl:part name="parameters" type="tns:PingDataHandlerType" />
+   </wsdl:message>
+   <wsdl:message name="PingDataHandlerOut">
+      <wsdl:part name="result" type="tns:PingDataHandlerOutType" />
+   </wsdl:message>
+
+   <wsdl:portType name="TestService">
+      <wsdl:operation name="ping">
+         <wsdl:input message="tns:PingIn" />
+         <wsdl:output message="tns:PingOut" />
+      </wsdl:operation>
+      <wsdl:operation name="pingSimple">
+         <wsdl:input message="tns:OctetsIn" />
+         <wsdl:output message="tns:OctetsOut" />
+      </wsdl:operation>
+      <wsdl:operation name="pingImage">
+         <wsdl:input message="tns:PingImageIn" />
+         <wsdl:output message="tns:PingImageOut" />
+      </wsdl:operation>
+      <wsdl:operation name="pingSource">
+         <wsdl:input message="tns:PingSourceIn" />
+         <wsdl:output message="tns:PingSourceOut" />
+      </wsdl:operation>
+      <wsdl:operation name="pingDataHandler">
+         <wsdl:input message="tns:PingDataHandlerIn" />
+         <wsdl:output message="tns:PingDataHandlerOut" />
+      </wsdl:operation>
+   </wsdl:portType>
+
+
+   <wsdl:binding name="TestServiceBinding" type="tns:TestService">
+      <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc" />
+      <wsdl:operation name="ping">
+         <soap:operation soapAction="" style="rpc" />
+         <wsdl:input>
+            <soap:body use="literal" />
+         </wsdl:input>
+         <wsdl:output>
+            <soap:body use="literal" />
+         </wsdl:output>
+      </wsdl:operation>
+      <wsdl:operation name="pingSimple">
+         <soap:operation soapAction="http://jboss.org/test/ws/xop/PingSimple" style="rpc" />
+         <wsdl:input>
+            <soap:body use="literal" />
+         </wsdl:input>
+         <wsdl:output>
+            <soap:body use="literal" />
+         </wsdl:output>
+      </wsdl:operation>
+
+      <wsdl:operation name="pingImage">
+         <soap:operation soapAction="" style="rpc" />
+         <wsdl:input>
+            <soap:body use="literal" />
+         </wsdl:input>
+         <wsdl:output>
+            <soap:body use="literal" />
+         </wsdl:output>
+      </wsdl:operation>
+      <wsdl:operation name="pingSource">
+         <soap:operation soapAction="" style="rpc" />
+         <wsdl:input>
+            <soap:body use="literal" />
+         </wsdl:input>
+         <wsdl:output>
+            <soap:body use="literal" />
+         </wsdl:output>
+      </wsdl:operation>
+      <wsdl:operation name="pingDataHandler">
+         <soap:operation soapAction="" style="rpc" />
+         <wsdl:input>
+            <soap:body use="literal" />
+         </wsdl:input>
+         <wsdl:output>
+            <soap:body use="literal" />
+         </wsdl:output>
+      </wsdl:operation>
+
+   </wsdl:binding>
+
+   <wsdl:service name="TestService">
+      <wsdl:port name="TestServicePort" binding="tns:TestServiceBinding">
+         <soap:address location="REPLACE_WITH_ACTUAL_URL" />
+      </wsdl:port>
+   </wsdl:service>
+</wsdl:definitions>
\ No newline at end of file


Property changes on: branches/jbossws-1.0/src/test/resources/jaxrpc/xop/rpclit/WEB-INF/wsdl/service-rpclit.wsdl
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF




More information about the jbossws-commits mailing list