You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2006/01/18 04:10:53 UTC

svn commit: r370027 [1/3] - in /webservices/axis2/trunk/c/test/xml/soap: ./ badsoap/ soap11/

Author: nandika
Date: Tue Jan 17 19:10:34 2006
New Revision: 370027

URL: http://svn.apache.org/viewcvs?rev=370027&view=rev
Log:
xml files added to test folder 

Added:
    webservices/axis2/trunk/c/test/xml/soap/OMElementTest.xml
    webservices/axis2/trunk/c/test/xml/soap/badsoap/
    webservices/axis2/trunk/c/test/xml/soap/badsoap/bodyNotQualified.xml
    webservices/axis2/trunk/c/test/xml/soap/badsoap/envelopeMissing.xml
    webservices/axis2/trunk/c/test/xml/soap/badsoap/haederBodyWrongOrder.xml
    webservices/axis2/trunk/c/test/xml/soap/badsoap/notnamespaceQualified.xml
    webservices/axis2/trunk/c/test/xml/soap/badsoap/twoBodymessage.xml
    webservices/axis2/trunk/c/test/xml/soap/badsoap/twoheaders.xml
    webservices/axis2/trunk/c/test/xml/soap/badsoap/wrongSoapNs.xml
    webservices/axis2/trunk/c/test/xml/soap/emtyBodymessage.xml
    webservices/axis2/trunk/c/test/xml/soap/invalidMustUnderstandSOAP12.xml
    webservices/axis2/trunk/c/test/xml/soap/minimalMessage.xml
    webservices/axis2/trunk/c/test/xml/soap/reallyReallyBigMessage.xml
    webservices/axis2/trunk/c/test/xml/soap/sample1.xml
    webservices/axis2/trunk/c/test/xml/soap/security2-soap.xml
    webservices/axis2/trunk/c/test/xml/soap/soap11/
    webservices/axis2/trunk/c/test/xml/soap/soap11/soap11fault.xml
    webservices/axis2/trunk/c/test/xml/soap/soap11/soap11message.xml
    webservices/axis2/trunk/c/test/xml/soap/soap12message.xml
    webservices/axis2/trunk/c/test/xml/soap/soapmessage.xml
    webservices/axis2/trunk/c/test/xml/soap/soapmessage1.xml
    webservices/axis2/trunk/c/test/xml/soap/whitespacedMessage.xml
    webservices/axis2/trunk/c/test/xml/soap/wrongEnvelopeNamespace.xml

Added: webservices/axis2/trunk/c/test/xml/soap/OMElementTest.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/OMElementTest.xml?rev=370027&view=auto
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/OMElementTest.xml (added)
+++ webservices/axis2/trunk/c/test/xml/soap/OMElementTest.xml Tue Jan 17 19:10:34 2006
@@ -0,0 +1,22 @@
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+    <soapenv:Header>
+        <wsa:MessageID soapenv:mustUnderstand="0">
+            uuid:920C5190-0B8F-11D9-8CED-F22EDEEBF7E5</wsa:MessageID>
+        <wsa:To soapenv:mustUnderstand="0">
+            http://localhost:8081/axis/services/BankPort</wsa:To>
+        <wsa:From soapenv:mustUnderstand="0">
+            <Address xmlns="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+                http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous
+            </Address>
+        </wsa:From>
+    </soapenv:Header>
+    <soapenv:Body>
+        <axis2:echoVoid xmlns:axis2="http://ws.apache.org/axis2">This is some text
+            <axis2:input>2</axis2:input>
+            Some Other Text
+        </axis2:echoVoid>
+    </soapenv:Body>
+</soapenv:Envelope>
\ No newline at end of file

Added: webservices/axis2/trunk/c/test/xml/soap/badsoap/bodyNotQualified.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/badsoap/bodyNotQualified.xml?rev=370027&view=auto
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/badsoap/bodyNotQualified.xml (added)
+++ webservices/axis2/trunk/c/test/xml/soap/badsoap/bodyNotQualified.xml Tue Jan 17 19:10:34 2006
@@ -0,0 +1,19 @@
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+    <soapenv:Header>
+        <wsa:MessageID soapenv:mustUnderstand="0">
+            uuid:920C5190-0B8F-11D9-8CED-F22EDEEBF7E5</wsa:MessageID>
+        <wsa:To soapenv:mustUnderstand="0">
+            http://localhost:8081/axis/services/BankPort</wsa:To>
+        <wsa:From soapenv:mustUnderstand="0">
+            <Address xmlns="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+                http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous
+            </Address>
+        </wsa:From>
+    </soapenv:Header>
+    <soapenv:Body>
+        <echoVoid></echoVoid>
+    </soapenv:Body>
+</soapenv:Envelope>
\ No newline at end of file

Added: webservices/axis2/trunk/c/test/xml/soap/badsoap/envelopeMissing.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/badsoap/envelopeMissing.xml?rev=370027&view=auto
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/badsoap/envelopeMissing.xml (added)
+++ webservices/axis2/trunk/c/test/xml/soap/badsoap/envelopeMissing.xml Tue Jan 17 19:10:34 2006
@@ -0,0 +1,20 @@
+<soapenv:Body xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+    <soapenv:Header>
+        <wsa:MessageID soapenv:mustUnderstand="0">
+            uuid:920C5190-0B8F-11D9-8CED-F22EDEEBF7E5</wsa:MessageID>
+        <wsa:To soapenv:mustUnderstand="0">
+            http://localhost:8081/axis/services/BankPort</wsa:To>
+        <wsa:From soapenv:mustUnderstand="0">
+            <Address xmlns="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+                http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous
+            </Address>
+        </wsa:From>
+    </soapenv:Header>
+    <soapenv:Body>
+        <axis2:echoVoid xmlns:axis2="http://ws.apache.org/axis2">
+        </axis2:echoVoid>
+    </soapenv:Body>
+</soapenv:Body>
\ No newline at end of file

Added: webservices/axis2/trunk/c/test/xml/soap/badsoap/haederBodyWrongOrder.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/badsoap/haederBodyWrongOrder.xml?rev=370027&view=auto
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/badsoap/haederBodyWrongOrder.xml (added)
+++ webservices/axis2/trunk/c/test/xml/soap/badsoap/haederBodyWrongOrder.xml Tue Jan 17 19:10:34 2006
@@ -0,0 +1,20 @@
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+    <soapenv:Body>
+        <axis2:echoVoid xmlns:axis2="http://ws.apache.org/axis2">
+        </axis2:echoVoid>
+    </soapenv:Body>
+    <soapenv:Header>
+        <wsa:MessageID soapenv:mustUnderstand="0">
+            uuid:920C5190-0B8F-11D9-8CED-F22EDEEBF7E5</wsa:MessageID>
+        <wsa:To soapenv:mustUnderstand="0">
+            http://localhost:8081/axis/services/BankPort</wsa:To>
+        <wsa:From soapenv:mustUnderstand="0">
+            <Address xmlns="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+                http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous
+            </Address>
+        </wsa:From>
+    </soapenv:Header>
+</soapenv:Envelope>
\ No newline at end of file

Added: webservices/axis2/trunk/c/test/xml/soap/badsoap/notnamespaceQualified.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/badsoap/notnamespaceQualified.xml?rev=370027&view=auto
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/badsoap/notnamespaceQualified.xml (added)
+++ webservices/axis2/trunk/c/test/xml/soap/badsoap/notnamespaceQualified.xml Tue Jan 17 19:10:34 2006
@@ -0,0 +1,15 @@
+<Envelope>
+    <Header>
+        <MessageID mustUnderstand="0">uuid:920C5190-0B8F-11D9-8CED-F22EDEEBF7E5
+        </MessageID>
+        <To mustUnderstand="0">http://localhost:8081/axis/services/BankPort</To>
+        <From mustUnderstand="0">
+            <Address>
+                http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous
+            </Address>
+        </From>
+    </Header>
+    <Body>
+        <echoVoid></echoVoid>
+    </Body>
+</Envelope>
\ No newline at end of file

Added: webservices/axis2/trunk/c/test/xml/soap/badsoap/twoBodymessage.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/badsoap/twoBodymessage.xml?rev=370027&view=auto
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/badsoap/twoBodymessage.xml (added)
+++ webservices/axis2/trunk/c/test/xml/soap/badsoap/twoBodymessage.xml Tue Jan 17 19:10:34 2006
@@ -0,0 +1,24 @@
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+    <soapenv:Header>
+        <wsa:MessageID soapenv:mustUnderstand="0">
+            uuid:920C5190-0B8F-11D9-8CED-F22EDEEBF7E5</wsa:MessageID>
+        <wsa:To soapenv:mustUnderstand="0">
+            http://localhost:8081/axis/services/BankPort</wsa:To>
+        <wsa:From soapenv:mustUnderstand="0">
+            <Address xmlns="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+                http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous
+            </Address>
+        </wsa:From>
+    </soapenv:Header>
+    <soapenv:Body>
+        <axis2:echoVoid xmlns:axis2="http://ws.apache.org/axis2">
+        </axis2:echoVoid>
+    </soapenv:Body>
+    <soapenv:Body>
+        <axis2:echoVoid xmlns:axis2="http://ws.apache.org/axis2">
+        </axis2:echoVoid>
+    </soapenv:Body>
+</soapenv:Envelope>
\ No newline at end of file

Added: webservices/axis2/trunk/c/test/xml/soap/badsoap/twoheaders.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/badsoap/twoheaders.xml?rev=370027&view=auto
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/badsoap/twoheaders.xml (added)
+++ webservices/axis2/trunk/c/test/xml/soap/badsoap/twoheaders.xml Tue Jan 17 19:10:34 2006
@@ -0,0 +1,29 @@
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+    <soapenv:Header>
+        <wsa:MessageID soapenv:mustUnderstand="0">
+            uuid:920C5190-0B8F-11D9-8CED-F22EDEEBF7E5</wsa:MessageID>
+        <wsa:To soapenv:mustUnderstand="0">
+            http://localhost:8081/axis/services/BankPort</wsa:To>
+        <wsa:From soapenv:mustUnderstand="0">
+            <Address xmlns="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+                http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous
+            </Address>
+        </wsa:From>
+    </soapenv:Header>
+    <soapenv:Header>
+        <wsa:MessageID soapenv:mustUnderstand="0">
+            uuid:920C5190-0B8F-11D9-8CED-F22EDEEBF7E5</wsa:MessageID>
+        <wsa:To soapenv:mustUnderstand="0">
+            http://localhost:8081/axis/services/BankPort</wsa:To>
+        <wsa:From soapenv:mustUnderstand="0">
+            <Address xmlns="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+                http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous
+            </Address>
+        </wsa:From>
+    </soapenv:Header>
+    <soapenv:Body>
+    </soapenv:Body>
+</soapenv:Envelope>
\ No newline at end of file

Added: webservices/axis2/trunk/c/test/xml/soap/badsoap/wrongSoapNs.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/badsoap/wrongSoapNs.xml?rev=370027&view=auto
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/badsoap/wrongSoapNs.xml (added)
+++ webservices/axis2/trunk/c/test/xml/soap/badsoap/wrongSoapNs.xml Tue Jan 17 19:10:34 2006
@@ -0,0 +1,20 @@
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/badsoap/envelope/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+    <soapenv:Header>
+        <wsa:MessageID soapenv:mustUnderstand="0">
+            uuid:920C5190-0B8F-11D9-8CED-F22EDEEBF7E5</wsa:MessageID>
+        <wsa:To soapenv:mustUnderstand="0">
+            http://localhost:8081/axis/services/BankPort</wsa:To>
+        <wsa:From soapenv:mustUnderstand="0">
+            <Address xmlns="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+                http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous
+            </Address>
+        </wsa:From>
+    </soapenv:Header>
+    <soapenv:Body>
+        <axis2:echoVoid xmlns:axis2="http://ws.apache.org/axis2">
+        </axis2:echoVoid>
+    </soapenv:Body>
+</soapenv:Envelope>
\ No newline at end of file

Added: webservices/axis2/trunk/c/test/xml/soap/emtyBodymessage.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/emtyBodymessage.xml?rev=370027&view=auto
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/emtyBodymessage.xml (added)
+++ webservices/axis2/trunk/c/test/xml/soap/emtyBodymessage.xml Tue Jan 17 19:10:34 2006
@@ -0,0 +1,18 @@
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+    <soapenv:Header>
+        <wsa:MessageID soapenv:mustUnderstand="0">
+            uuid:920C5190-0B8F-11D9-8CED-F22EDEEBF7E5</wsa:MessageID>
+        <wsa:To soapenv:mustUnderstand="0">
+            http://localhost:8081/axis/services/BankPort</wsa:To>
+        <wsa:From soapenv:mustUnderstand="0">
+            <Address xmlns="http://schemas.xmlsoap.org/ws/2004/03/addressing">
+                http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous
+            </Address>
+        </wsa:From>
+    </soapenv:Header>
+    <soapenv:Body>
+    </soapenv:Body>
+</soapenv:Envelope>
\ No newline at end of file

Added: webservices/axis2/trunk/c/test/xml/soap/invalidMustUnderstandSOAP12.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/invalidMustUnderstandSOAP12.xml?rev=370027&view=auto
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/invalidMustUnderstandSOAP12.xml (added)
+++ webservices/axis2/trunk/c/test/xml/soap/invalidMustUnderstandSOAP12.xml Tue Jan 17 19:10:34 2006
@@ -0,0 +1,13 @@
+<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:xml="http://www.w3.org/XML/1998/namespace">
+    <env:Header>
+        <test2:echoOk2 xmlns:test2="http://example2.org/ts-tests"
+            env:role="http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver"
+            env:mustUnderstand="someOtherValue"
+            env:anyAttribute="any value">
+            foo
+        </test2:echoOk2>
+    </env:Header>
+    <env:Body>
+
+    </env:Body>
+</env:Envelope>
\ No newline at end of file

Added: webservices/axis2/trunk/c/test/xml/soap/minimalMessage.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/minimalMessage.xml?rev=370027&view=auto
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/minimalMessage.xml (added)
+++ webservices/axis2/trunk/c/test/xml/soap/minimalMessage.xml Tue Jan 17 19:10:34 2006
@@ -0,0 +1,4 @@
+<?xml version='1.0' ?>
+<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
+    <env:Body/>
+</env:Envelope>
\ No newline at end of file