[jboss-svn-commits] JBossWS SVN: r1062 - in trunk/src/test/resources/interop/microsoft/security: . sep06 sep06/wsse10 sep06/wsse10/WEB-INF sep06/wsse10/WEB-INF/wsdl

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Sep 27 09:57:26 EDT 2006


Author: heiko.braun at jboss.com
Date: 2006-09-27 09:57:20 -0400 (Wed, 27 Sep 2006)
New Revision: 1062

Added:
   trunk/src/test/resources/interop/microsoft/security/sep06/
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/META-INF/
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/jboss-web.xml
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/jboss-wsse-server.xml
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/web.xml
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/webservices.xml
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/WsSecurity10Sign.wsdl
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd0.xsd
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd1.xsd
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd2.xsd
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd3.xsd
   trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/config.xml
Log:
added sep06 security config

Added: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/jboss-web.xml
===================================================================
--- trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/jboss-web.xml	2006-09-27 12:17:46 UTC (rev 1061)
+++ trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/jboss-web.xml	2006-09-27 13:57:20 UTC (rev 1062)
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<jboss-web>
+   <context-root>/wsse10Sign</context-root>
+   <depends>jboss.ws:service=WebServiceDeployerJSE</depends>
+</jboss-web>
\ No newline at end of file


Property changes on: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/jboss-web.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/jboss-wsse-server.xml
===================================================================
--- trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/jboss-wsse-server.xml	2006-09-27 12:17:46 UTC (rev 1061)
+++ trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/jboss-wsse-server.xml	2006-09-27 13:57:20 UTC (rev 1062)
@@ -0,0 +1,17 @@
+<jboss-ws-security xmlns="http://www.jboss.com/ws-security/config"
+                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+                   xsi:schemaLocation="http://www.jboss.com/ws-security/config
+                   http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd">
+   <key-store-file>WEB-INF/alice.jks</key-store-file>
+   <key-store-password>password</key-store-password>
+   <trust-store-file>WEB-INF/wsse10.truststore</trust-store-file>
+   <trust-store-password>password</trust-store-password>
+
+   <config>
+      <sign type="x509v3" alias="1"/>
+      <requires>
+         <signature/>        
+      </requires>
+   </config>
+
+</jboss-ws-security>


Property changes on: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/jboss-wsse-server.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/web.xml
===================================================================
--- trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/web.xml	2006-09-27 12:17:46 UTC (rev 1061)
+++ trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/web.xml	2006-09-27 13:57:20 UTC (rev 1062)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
+
+   <display-name>wsse10SignTestService App</display-name>
+
+   <context-param>
+      <param-name>jbossws-config-name</param-name>
+      <param-value>Standard WSSecurity Endpoint</param-value>
+   </context-param>
+
+   <servlet>
+      <servlet-name>ServiceServlet</servlet-name>
+      <servlet-class>org.jboss.test.ws.interop.microsoft.security.wsse10.TestService</servlet-class>
+      <load-on-startup>0</load-on-startup>
+   </servlet>
+   <servlet-mapping>
+      <servlet-name>ServiceServlet</servlet-name>
+      <url-pattern>/endpoint</url-pattern>
+   </servlet-mapping>
+
+</web-app>
\ No newline at end of file


Property changes on: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/web.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/webservices.xml
===================================================================
--- trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/webservices.xml	2006-09-27 12:17:46 UTC (rev 1061)
+++ trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/webservices.xml	2006-09-27 13:57:20 UTC (rev 1062)
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<webservices xmlns="http://java.sun.com/xml/ns/j2ee"
+             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+             xmlns:wsdl="http://tempuri.org/"
+             xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
+             http://www.ibm.com/webservices/xsd/j2ee_web_services_1_1.xsd"
+             version="1.1">
+
+   <webservice-description>
+
+      <webservice-description-name>wsse10SignTestService</webservice-description-name>
+      <wsdl-file>WEB-INF/wsdl/WsSecurity10Sign.wsdl</wsdl-file>
+      <jaxrpc-mapping-file>WEB-INF/jaxrpc-mapping.xml</jaxrpc-mapping-file>
+
+      <port-component>
+         <port-component-name>signPort</port-component-name>
+         <wsdl-port>wsdl:MutualCertificate10Sign_IPingServiceSign</wsdl-port>
+         <service-endpoint-interface>org.jboss.test.ws.interop.microsoft.security.wsse10.IPingServiceSign</service-endpoint-interface>
+         <service-impl-bean>
+            <servlet-link>ServiceServlet</servlet-link>
+         </service-impl-bean>
+      </port-component>
+
+   </webservice-description>
+</webservices>
\ No newline at end of file


Property changes on: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/webservices.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/WsSecurity10Sign.wsdl
===================================================================
--- trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/WsSecurity10Sign.wsdl	2006-09-27 12:17:46 UTC (rev 1061)
+++ trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/WsSecurity10Sign.wsdl	2006-09-27 13:57:20 UTC (rev 1062)
@@ -0,0 +1,125 @@
+<wsdl:definitions name='PingService10' targetNamespace='http://InteropBaseAddress/interop' xmlns:i0='http://tempuri.org/' xmlns:msc='http://schemas.microsoft.com/ws/2005/12/wsdl/contract' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:soap12='http://schemas.xmlsoap.org/wsdl/soap12/' xmlns:soapenc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://InteropBaseAddress/interop' xmlns:wsa='http://schemas.xmlsoap.org/ws/2004/08/addressing' xmlns:wsa10='http://www.w3.org/2005/08/addressing' xmlns:wsap='http://schemas.xmlsoap.org/ws/2004/08/addressing/policy' xmlns:wsaw='http://www.w3.org/2006/05/addressing/wsdl' xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/' xmlns:wsp='http://schemas.xmlsoap.org/ws/2004/09/policy' xmlns:wsu='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd' xmlns:wsx='http://schemas.xmlsoap.org/ws/2004/09/mex' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
+ <wsdl:import location='wsdl0.wsdl' namespace='http://tempuri.org/'/>
+ <wsdl:types>
+  <xsd:schema targetNamespace='http://InteropBaseAddress/interop/Imports'>
+   <xsd:import namespace='http://InteropBaseAddress/interop' schemaLocation='xsd0.xsd'/>
+   <xsd:import namespace='http://xmlsoap.org/Ping' schemaLocation='xsd1.xsd'/>
+   <xsd:import namespace='http://schemas.microsoft.com/2003/10/Serialization/' schemaLocation='xsd2.xsd'/>
+   <xsd:import schemaLocation='xsd3.xsd'/>
+  </xsd:schema>
+ </wsdl:types>
+ <wsdl:message name='PingRequest'>
+  <wsdl:part element='tns:PingRequest' name='parameters'/>
+ </wsdl:message>
+ <wsdl:message name='PingResponse'>
+  <wsdl:part element='tns:PingResponse' name='parameters'/>
+ </wsdl:message>
+ <wsdl:message name='IPingService_echo_InputMessage'>
+  <wsdl:part element='tns:echo' name='parameters'/>
+ </wsdl:message>
+ <wsdl:message name='IPingService_echo_OutputMessage'>
+  <wsdl:part element='tns:echoResponse' name='parameters'/>
+ </wsdl:message>
+ <wsdl:message name='IPingService_echoXml_InputMessage'>
+  <wsdl:part element='tns:echoXml' name='parameters'/>
+ </wsdl:message>
+ <wsdl:message name='IPingService_echoXml_OutputMessage'>
+  <wsdl:part element='tns:echoXmlResponse' name='parameters'/>
+ </wsdl:message>
+ <wsdl:message name='IPingService_echoDataSet_InputMessage'>
+  <wsdl:part element='tns:echoDataSet' name='parameters'/>
+ </wsdl:message>
+ <wsdl:message name='IPingService_echoDataSet_OutputMessage'>
+  <wsdl:part element='tns:echoDataSetResponse' name='parameters'/>
+ </wsdl:message>
+ <wsdl:message name='headerRequest'>
+  <wsdl:part element='tns:header' name='parameters'/>
+ </wsdl:message>
+ <wsdl:message name='headerRequest_Headers'>
+  <wsdl:part element='tns:CustomHeader' name='CustomHeader'/>
+ </wsdl:message>
+ <wsdl:message name='headerResponse'>
+  <wsdl:part element='tns:headerResponse' name='parameters'/>
+ </wsdl:message>
+ <wsdl:message name='headerResponse_Headers'>
+  <wsdl:part element='tns:CustomHeader' name='CustomHeader'/>
+ </wsdl:message>
+ <wsdl:message name='IPingService_fault_InputMessage'>
+  <wsdl:part element='tns:fault' name='parameters'/>
+ </wsdl:message>
+ <wsdl:message name='IPingService_fault_OutputMessage'>
+  <wsdl:part element='tns:faultResponse' name='parameters'/>
+ </wsdl:message>
+ <wsdl:portType name='IPingService'>
+  <wsdl:operation name='Ping'>
+   <wsdl:input message='tns:PingRequest' name='PingRequest' wsaw:Action='http://xmlsoap.org/Ping'/>
+   <wsdl:output message='tns:PingResponse' name='PingResponse' wsaw:Action='http://xmlsoap.org/Ping'/>
+  </wsdl:operation>
+  <wsdl:operation name='echo'>
+   <wsdl:input message='tns:IPingService_echo_InputMessage' wsaw:Action='http://InteropBaseAddress/interop/echo'/>
+   <wsdl:output message='tns:IPingService_echo_OutputMessage' wsaw:Action='http://InteropBaseAddress/interop/echo'/>
+  </wsdl:operation>
+  <wsdl:operation name='echoXml'>
+   <wsdl:input message='tns:IPingService_echoXml_InputMessage' wsaw:Action='http://InteropBaseAddress/interop/echoXml'/>
+   <wsdl:output message='tns:IPingService_echoXml_OutputMessage' wsaw:Action='http://InteropBaseAddress/interop/echoXml'/>
+  </wsdl:operation>
+  <wsdl:operation name='echoDataSet'>
+   <wsdl:input message='tns:IPingService_echoDataSet_InputMessage' wsaw:Action='http://InteropBaseAddress/interop/echoDataSet'/>
+   <wsdl:output message='tns:IPingService_echoDataSet_OutputMessage' wsaw:Action='http://InteropBaseAddress/interop/echoDataSet'/>
+  </wsdl:operation>
+  <wsdl:operation name='header'>
+   <wsdl:input message='tns:headerRequest' name='headerRequest' wsaw:Action='http://InteropBaseAddress/interop/header'/>
+   <wsdl:output message='tns:headerResponse' name='headerResponse' wsaw:Action='http://InteropBaseAddress/interop/headerResponse'/>
+  </wsdl:operation>
+  <wsdl:operation name='fault'>
+   <wsdl:input message='tns:IPingService_fault_InputMessage' wsaw:Action='http://InteropBaseAddress/interop/fault'/>
+   <wsdl:output message='tns:IPingService_fault_OutputMessage' wsaw:Action='http://InteropBaseAddress/interop/faultResponse'/>
+  </wsdl:operation>
+ </wsdl:portType>
+ <wsdl:service name='PingService10'>
+  <wsdl:port binding='i0:X10_IPingService' name='X10_IPingService'>
+   <soap12:address location='http://131.107.72.15/Security_WsSecurity_Service_Indigo/WsSecurity10.svc/X10'/>
+   <wsa:EndpointReference>
+    <wsa:Address>http://131.107.72.15/Security_WsSecurity_Service_Indigo/WsSecurity10.svc/X10</wsa:Address>
+    <Identity xmlns='http://schemas.xmlsoap.org/ws/2006/02/addressingidentity'>
+     <KeyInfo xmlns='http://www.w3.org/2000/09/xmldsig#'>
+      <X509Data>
+       <X509Certificate>MIIDCjCCAfKgAwIBAgIQYDju2/6sm77InYfTq65x+DANBgkqhkiG9w0BAQUFADAwMQ4wDAYDVQQKDAVPQVNJUzEeMBwGA1UEAwwVT0FTSVMgSW50ZXJvcCBUZXN0IENBMB4XDTA1MDMxOTAwMDAwMFoXDTE4MDMxOTIzNTk1OVowQDEOMAwGA1UECgwFT0FTSVMxIDAeBgNVBAsMF09BU0lTIEludGVyb3AgVGVzdCBDZXJ0MQwwCgYDVQQDDANCb2IwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMCquMva4lFDrv3fXQnKK8CkSU7HvVZ0USyJtlL/yhmHH/FQXHyYY+fTcSyWYItWJYiTZ99PAbD+6EKBGbdfuJNUJCGaTWc5ZDUISqM/SGtacYe/PD/4+g3swNPzTUQAIBLRY1pkr2cm3s5Ch/f+mYVNBR41HnBeIxybw25kkoM7AgMBAAGjgZMwgZAwCQYDVR0TBAIwADAzBgNVHR8ELDAqMCiiJoYkaHR0cDovL2ludGVyb3AuYmJ0ZXN0Lm5ldC9jcmwvY2EuY3JsMA4GA1UdDwEB/wQEAwIEsDAdBgNVHQ4EFgQUXeg55vRyK3ZhAEhEf+YT0z986L0wHwYDVR0jBBgwFoAUwJ0o/MHrNaEd1qqqoBwaTcJJDw8wDQYJKoZIhvcNAQEFBQADggEBAIiVGv2lGLhRvmMAHSlY7rKLVkv+zEUtSyg08FBT8z/RepUbtUQShcIqwWsemDU8JVtsucQLc+g6GCQXgkCkMiC8qhcLAt3BXzFmLxuCEAQeeFe8IATr4wACmEQE37TEqAuWEIanPYIplbxYgwP0OBWBSjcRpKRAxjEzuwObYjbll6vKdFHYIweWhhWPrefquFp7TefTkF4D3rcctTfWJ76I5NrEVld+7PBnnJNpdDEuGsoaiJrwTW3Ixm40RXvG3fYS4hIA!
 PeTCUk3RkYfUkqlaaLQnUrF2hZSgiBNLPe8gGkYORccRIlZCGQDEpcWl1Uf9OHw6fC+3hkqolFd5CVI=</X509Certificate>
+      </X509Data>
+     </KeyInfo>
+    </Identity>
+   </wsa:EndpointReference>
+  </wsdl:port>
+  <wsdl:port binding='i0:X10-NoTimestamp_IPingService' name='X10-NoTimestamp_IPingService'>
+   <soap12:address location='http://131.107.72.15/Security_WsSecurity_Service_Indigo/WsSecurity10.svc/X10-NoTimestamp'/>
+   <wsa:EndpointReference>
+    <wsa:Address>http://131.107.72.15/Security_WsSecurity_Service_Indigo/WsSecurity10.svc/X10-NoTimestamp</wsa:Address>
+    <Identity xmlns='http://schemas.xmlsoap.org/ws/2006/02/addressingidentity'>
+     <KeyInfo xmlns='http://www.w3.org/2000/09/xmldsig#'>
+      <X509Data>
+       <X509Certificate>MIIDCjCCAfKgAwIBAgIQYDju2/6sm77InYfTq65x+DANBgkqhkiG9w0BAQUFADAwMQ4wDAYDVQQKDAVPQVNJUzEeMBwGA1UEAwwVT0FTSVMgSW50ZXJvcCBUZXN0IENBMB4XDTA1MDMxOTAwMDAwMFoXDTE4MDMxOTIzNTk1OVowQDEOMAwGA1UECgwFT0FTSVMxIDAeBgNVBAsMF09BU0lTIEludGVyb3AgVGVzdCBDZXJ0MQwwCgYDVQQDDANCb2IwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMCquMva4lFDrv3fXQnKK8CkSU7HvVZ0USyJtlL/yhmHH/FQXHyYY+fTcSyWYItWJYiTZ99PAbD+6EKBGbdfuJNUJCGaTWc5ZDUISqM/SGtacYe/PD/4+g3swNPzTUQAIBLRY1pkr2cm3s5Ch/f+mYVNBR41HnBeIxybw25kkoM7AgMBAAGjgZMwgZAwCQYDVR0TBAIwADAzBgNVHR8ELDAqMCiiJoYkaHR0cDovL2ludGVyb3AuYmJ0ZXN0Lm5ldC9jcmwvY2EuY3JsMA4GA1UdDwEB/wQEAwIEsDAdBgNVHQ4EFgQUXeg55vRyK3ZhAEhEf+YT0z986L0wHwYDVR0jBBgwFoAUwJ0o/MHrNaEd1qqqoBwaTcJJDw8wDQYJKoZIhvcNAQEFBQADggEBAIiVGv2lGLhRvmMAHSlY7rKLVkv+zEUtSyg08FBT8z/RepUbtUQShcIqwWsemDU8JVtsucQLc+g6GCQXgkCkMiC8qhcLAt3BXzFmLxuCEAQeeFe8IATr4wACmEQE37TEqAuWEIanPYIplbxYgwP0OBWBSjcRpKRAxjEzuwObYjbll6vKdFHYIweWhhWPrefquFp7TefTkF4D3rcctTfWJ76I5NrEVld+7PBnnJNpdDEuGsoaiJrwTW3Ixm40RXvG3fYS4hIA!
 PeTCUk3RkYfUkqlaaLQnUrF2hZSgiBNLPe8gGkYORccRIlZCGQDEpcWl1Uf9OHw6fC+3hkqolFd5CVI=</X509Certificate>
+      </X509Data>
+     </KeyInfo>
+    </Identity>
+   </wsa:EndpointReference>
+  </wsdl:port>
+  <wsdl:port binding='i0:K10_IPingService' name='K10_IPingService'>
+   <soap12:address location='http://131.107.72.15/Security_WsSecurity_Service_Indigo/WsSecurity10.svc/K10'/>
+   <wsa:EndpointReference>
+    <wsa:Address>http://131.107.72.15/Security_WsSecurity_Service_Indigo/WsSecurity10.svc/K10</wsa:Address>
+    <Identity xmlns='http://schemas.xmlsoap.org/ws/2006/02/addressingidentity'>
+     <Spn>host/kirillgdev04</Spn>
+    </Identity>
+   </wsa:EndpointReference>
+  </wsdl:port>
+  <wsdl:port binding='i0:KD10_IPingService' name='KD10_IPingService'>
+   <soap12:address location='http://131.107.72.15/Security_WsSecurity_Service_Indigo/WsSecurity10.svc/KD10'/>
+   <wsa:EndpointReference>
+    <wsa:Address>http://131.107.72.15/Security_WsSecurity_Service_Indigo/WsSecurity10.svc/KD10</wsa:Address>
+    <Identity xmlns='http://schemas.xmlsoap.org/ws/2006/02/addressingidentity'>
+     <Spn>host/kirillgdev04</Spn>
+    </Identity>
+   </wsa:EndpointReference>
+  </wsdl:port>
+ </wsdl:service>
+</wsdl:definitions>


Property changes on: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/WsSecurity10Sign.wsdl
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd0.xsd
===================================================================
--- trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd0.xsd	2006-09-27 12:17:46 UTC (rev 1061)
+++ trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd0.xsd	2006-09-27 13:57:20 UTC (rev 1062)
@@ -0,0 +1,129 @@
+<xs:schema elementFormDefault='qualified' targetNamespace='http://InteropBaseAddress/interop' xmlns:tns='http://InteropBaseAddress/interop' xmlns:xs='http://www.w3.org/2001/XMLSchema'>
+ <!--xs:import namespace='http://xmlsoap.org/Ping' schemaLocation='xsd1.xsd'/-->
+ <xs:element name='PingRequest'>
+  <xs:complexType>
+   <xs:sequence>
+    <xs:element maxOccurs='1' minOccurs='0' ref='q1:Ping' xmlns:q1='http://xmlsoap.org/Ping'/>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+ <xs:element name='PingResponse'>
+  <xs:complexType>
+   <xs:sequence>
+    <xs:element maxOccurs='1' minOccurs='0' ref='q2:PingResponse' xmlns:q2='http://xmlsoap.org/Ping'/>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+ <xs:element name='echo'>
+  <xs:complexType>
+   <xs:sequence>
+    <xs:element minOccurs='0' name='request' nillable='true' type='xs:string'/>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+ <xs:element name='echoResponse'>
+  <xs:complexType>
+   <xs:sequence>
+    <xs:element minOccurs='0' name='echoResult' nillable='true' type='xs:string'/>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+ <xs:element name='echoXml'>
+  <xs:complexType>
+   <xs:sequence>
+    <xs:element minOccurs='0' name='request' nillable='true'>
+     <xs:complexType>
+      <xs:sequence>
+       <xs:any minOccurs='0' processContents='lax'/>
+      </xs:sequence>
+     </xs:complexType>
+    </xs:element>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+ <xs:element name='echoXmlResponse'>
+  <xs:complexType>
+   <xs:sequence>
+    <xs:element minOccurs='0' name='echoXmlResult' nillable='true'>
+     <xs:complexType>
+      <xs:sequence>
+       <xs:any minOccurs='0' processContents='lax'/>
+      </xs:sequence>
+     </xs:complexType>
+    </xs:element>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+ <xs:element name='echoDataSet'>
+  <xs:complexType>
+   <xs:sequence>
+    <xs:element minOccurs='0' name='request' nillable='true'>
+     <xs:complexType>
+      <xs:annotation>
+       <xs:appinfo>
+        <ActualType Name='DataSet' Namespace='http://schemas.datacontract.org/2004/07/System.Data' xmlns='http://schemas.microsoft.com/2003/10/Serialization/'/>
+       </xs:appinfo>
+      </xs:annotation>
+      <xs:sequence>
+       <xs:element ref='xs:schema'/>
+       <xs:any/>
+      </xs:sequence>
+     </xs:complexType>
+    </xs:element>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+ <xs:element name='echoDataSetResponse'>
+  <xs:complexType>
+   <xs:sequence>
+    <xs:element minOccurs='0' name='echoDataSetResult' nillable='true'>
+     <xs:complexType>
+      <xs:annotation>
+       <xs:appinfo>
+        <ActualType Name='DataSet' Namespace='http://schemas.datacontract.org/2004/07/System.Data' xmlns='http://schemas.microsoft.com/2003/10/Serialization/'/>
+       </xs:appinfo>
+      </xs:annotation>
+      <xs:sequence>
+       <xs:element ref='xs:schema'/>
+       <xs:any/>
+      </xs:sequence>
+     </xs:complexType>
+    </xs:element>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+ <xs:element name='header'>
+  <xs:complexType>
+   <xs:sequence>
+    <xs:element maxOccurs='1' minOccurs='0' name='request' type='xs:string'/>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+ <xs:element name='CustomHeader' type='tns:CustomHeader'/>
+ <xs:complexType name='CustomHeader'>
+  <xs:sequence>
+   <xs:element maxOccurs='1' minOccurs='0' name='data' type='xs:string'/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:element name='headerResponse'>
+  <xs:complexType>
+   <xs:sequence>
+    <xs:element maxOccurs='1' minOccurs='0' name='headerResult' type='xs:string'/>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+ <xs:element name='fault'>
+  <xs:complexType>
+   <xs:sequence>
+    <xs:element minOccurs='0' name='request' nillable='true' type='xs:string'/>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+ <xs:element name='faultResponse'>
+  <xs:complexType>
+   <xs:sequence>
+    <xs:element minOccurs='0' name='faultResult' nillable='true' type='xs:string'/>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+</xs:schema>


Property changes on: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd0.xsd
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd1.xsd
===================================================================
--- trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd1.xsd	2006-09-27 12:17:46 UTC (rev 1061)
+++ trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd1.xsd	2006-09-27 13:57:20 UTC (rev 1062)
@@ -0,0 +1,18 @@
+<xs:schema elementFormDefault='qualified' targetNamespace='http://xmlsoap.org/Ping' xmlns:tns='http://xmlsoap.org/Ping' xmlns:xs='http://www.w3.org/2001/XMLSchema'>
+ <xs:element name='Ping' type='tns:ping'/>
+ <xs:complexType name='ping'>
+  <xs:sequence>
+   <xs:element maxOccurs='1' minOccurs='1' name='scenario' nillable='true' type='xs:string'/>
+   <xs:element maxOccurs='1' minOccurs='1' name='origin' nillable='true' type='xs:string'/>
+   <xs:element maxOccurs='1' minOccurs='1' name='text' nillable='true' type='xs:string'/>
+  </xs:sequence>
+ </xs:complexType>
+ <xs:element name='PingResponse' type='tns:PingResponseBody'/>
+ <xs:complexType name='PingResponseBody'>
+  <xs:sequence>
+   <xs:element maxOccurs='1' minOccurs='1' name='scenario' nillable='true' type='xs:string'/>
+   <xs:element maxOccurs='1' minOccurs='1' name='origin' nillable='true' type='xs:string'/>
+   <xs:element maxOccurs='1' minOccurs='1' name='text' nillable='true' type='xs:string'/>
+  </xs:sequence>
+ </xs:complexType>
+</xs:schema>


Property changes on: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd1.xsd
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd2.xsd
===================================================================
--- trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd2.xsd	2006-09-27 12:17:46 UTC (rev 1061)
+++ trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd2.xsd	2006-09-27 13:57:20 UTC (rev 1062)
@@ -0,0 +1,39 @@
+<xs:schema attributeFormDefault='qualified' elementFormDefault='qualified' targetNamespace='http://schemas.microsoft.com/2003/10/Serialization/' xmlns:tns='http://schemas.microsoft.com/2003/10/Serialization/' xmlns:xs='http://www.w3.org/2001/XMLSchema'>
+ <xs:element name='anyType' nillable='true' type='xs:anyType'/>
+ <xs:element name='anyURI' nillable='true' type='xs:anyURI'/>
+ <xs:element name='base64Binary' nillable='true' type='xs:base64Binary'/>
+ <xs:element name='boolean' nillable='true' type='xs:boolean'/>
+ <xs:element name='byte' nillable='true' type='xs:byte'/>
+ <xs:element name='dateTime' nillable='true' type='xs:dateTime'/>
+ <xs:element name='decimal' nillable='true' type='xs:decimal'/>
+ <xs:element name='double' nillable='true' type='xs:double'/>
+ <xs:element name='float' nillable='true' type='xs:float'/>
+ <xs:element name='int' nillable='true' type='xs:int'/>
+ <xs:element name='long' nillable='true' type='xs:long'/>
+ <xs:element name='QName' nillable='true' type='xs:QName'/>
+ <xs:element name='short' nillable='true' type='xs:short'/>
+ <xs:element name='string' nillable='true' type='xs:string'/>
+ <xs:element name='unsignedByte' nillable='true' type='xs:unsignedByte'/>
+ <xs:element name='unsignedInt' nillable='true' type='xs:unsignedInt'/>
+ <xs:element name='unsignedLong' nillable='true' type='xs:unsignedLong'/>
+ <xs:element name='unsignedShort' nillable='true' type='xs:unsignedShort'/>
+ <xs:element name='char' nillable='true' type='tns:char'/>
+ <xs:simpleType name='char'>
+  <xs:restriction base='xs:int'/>
+ </xs:simpleType>
+ <xs:element name='duration' nillable='true' type='tns:duration'/>
+ <xs:simpleType name='duration'>
+  <xs:restriction base='xs:duration'>
+   <xs:pattern value='\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?'/>
+   <xs:minInclusive value='-P10675199DT2H48M5.4775808S'/>
+   <xs:maxInclusive value='P10675199DT2H48M5.4775807S'/>
+  </xs:restriction>
+ </xs:simpleType>
+ <xs:element name='guid' nillable='true' type='tns:guid'/>
+ <xs:simpleType name='guid'>
+  <xs:restriction base='xs:string'>
+   <xs:pattern value='[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}'/>
+  </xs:restriction>
+ </xs:simpleType>
+ <xs:attribute name='FactoryType' type='xs:QName'/>
+</xs:schema>


Property changes on: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd2.xsd
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd3.xsd
===================================================================
--- trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd3.xsd	2006-09-27 12:17:46 UTC (rev 1061)
+++ trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd3.xsd	2006-09-27 13:57:20 UTC (rev 1062)
@@ -0,0 +1,16 @@
+<xs:schema elementFormDefault='qualified' xmlns:xs='http://www.w3.org/2001/XMLSchema'>
+ <xs:element name='DataSet' nillable='true'>
+  <xs:complexType>
+   <xs:annotation>
+    <xs:appinfo>
+     <ActualType Name='DataSet' Namespace='http://schemas.datacontract.org/2004/07/System.Data'
+                 xmlns='http://schemas.microsoft.com/2003/10/Serialization/'/>
+    </xs:appinfo>
+   </xs:annotation>
+   <xs:sequence>
+    <xs:element ref='xs:schema'/>
+    <xs:any/>
+   </xs:sequence>
+  </xs:complexType>
+ </xs:element>
+</xs:schema>


Property changes on: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/xsd3.xsd
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/config.xml
===================================================================
--- trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/config.xml	2006-09-27 12:17:46 UTC (rev 1061)
+++ trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/config.xml	2006-09-27 13:57:20 UTC (rev 1062)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   This file is used from the webservice/test subdirectory
+   therefore the resource references have to be relative to that base directory.
+-->
+<configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
+   <wsdl location="resources/interop/microsoft/security/sep06/wsse10/WEB-INF/wsdl/WsSecurity10Sign.wsdl"
+         packageName="org.jboss.test.ws.interop.microsoft.security.sep06.wsse10"/>
+</configuration>
\ No newline at end of file


Property changes on: trunk/src/test/resources/interop/microsoft/security/sep06/wsse10/config.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF




More information about the jboss-svn-commits mailing list