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 di...@apache.org on 2008/03/21 03:02:35 UTC

svn commit: r639515 [4/4] - in /webservices/axis2/trunk/java/modules/samples/jaxws-samples: ./ src/ src/main/ src/main/org/ src/main/org/apache/ src/main/org/apache/axis2/ src/main/org/apache/axis2/jaxws/ src/main/org/apache/axis2/jaxws/samples/ src/ma...

Added: webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/ImageDepot.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/ImageDepot.wsdl?rev=639515&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/ImageDepot.wsdl (added)
+++ webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/ImageDepot.wsdl Thu Mar 20 19:02:22 2008
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements. See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership. The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License. You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied. See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+<wsdl:definitions targetNamespace="http://org/apache/axis2/jaxws/samples/mtom/"
+                  xmlns:impl="http://org/apache/axis2/jaxws/samples/mtom/"
+                  xmlns:intf="http://org/apache/axis2/jaxws/samples/mtom/"
+                  xmlns:mtom="http://org/apache/axis2/jaxws/samples/mtom/"
+                  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+                  xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
+                  xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+    <wsdl:types>
+        <xs:schema elementFormDefault="qualified"
+                   xmlns:xs="http://www.w3.org/2001/XMLSchema"
+                   xmlns:xmime="http://www.w3.org/2005/05/xmlmime"
+                   xmlns:tns="http://org/apache/axis2/jaxws/samples/mtom/"
+                   targetNamespace="http://org/apache/axis2/jaxws/samples/mtom/">
+            <xs:complexType name="ImageDepot">
+                <xs:sequence>
+                    <xs:element name="imageData"
+                                type="xs:base64Binary"
+                                xmime:expectedContentTypes="multipart/*"/>
+                </xs:sequence>
+            </xs:complexType>
+
+            <xs:element name="sendImage">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" maxOccurs="1" name="input" type="tns:ImageDepot"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+
+            <xs:element name="sendImageResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" maxOccurs="1" name="output" type="tns:ImageDepot"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+        </xs:schema>
+    </wsdl:types>
+
+    <wsdl:message name="sendImageRequest">
+        <wsdl:part element="mtom:sendImage" name="parameters"/>
+    </wsdl:message>
+
+    <wsdl:message name="sendImageResponse">
+        <wsdl:part element="mtom:sendImageResponse" name="parameters"/>
+    </wsdl:message>
+
+    <wsdl:portType name="MtomSampleService">
+        <wsdl:operation name="sendImage">
+            <wsdl:input message="impl:sendImageRequest" name="sendImageRequest"/>
+            <wsdl:output message="impl:sendImageResponse" name="sendImageResponse"/>
+        </wsdl:operation>
+    </wsdl:portType>
+
+    <wsdl:binding name="MtomSampleSoap" type="impl:MtomSampleService">
+        <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+
+        <wsdl:operation name="sendImage">
+            <wsdlsoap:operation soapAction="sendImage"/>
+            <wsdl:input name="sendImageRequest">
+                <wsdlsoap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output name="sendImageResponse">
+                <wsdlsoap:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+    </wsdl:binding>
+
+    <wsdl:service name="MtomSampleService">
+        <wsdl:port binding="impl:MtomSampleSoap" name="MtomSamplePort">
+            <wsdlsoap:address location="http://localhost:8080/jaxws-samples/services/MtomSampleService"/>
+        </wsdl:port>
+    </wsdl:service>
+
+</wsdl:definitions>
\ No newline at end of file

Added: webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/ImageDepot12.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/ImageDepot12.wsdl?rev=639515&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/ImageDepot12.wsdl (added)
+++ webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/ImageDepot12.wsdl Thu Mar 20 19:02:22 2008
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements. See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership. The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License. You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied. See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:impl="http://org/apache/axis2/jaxws/samples/mtom/"
+                  xmlns:intf="http://org/apache/axis2/jaxws/samples/mtom/"
+                  xmlns:mtom="http://org/apache/axis2/jaxws/samples/mtom/"
+                  xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+                  targetNamespace="http://org/apache/axis2/jaxws/samples/mtom/">
+    <wsdl:types>
+        <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://org/apache/axis2/jaxws/samples/mtom/"
+                   xmlns:xmime="http://www.w3.org/2005/05/xmlmime" elementFormDefault="qualified"
+                   targetNamespace="http://org/apache/axis2/jaxws/samples/mtom/">
+            <xs:complexType name="ImageDepot">
+                <xs:sequence>
+                    <xs:element name="imageData" type="xs:base64Binary" xmime:expectedContentTypes="multipart/*"/>
+                </xs:sequence>
+            </xs:complexType>
+
+            <xs:element name="sendImage">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element maxOccurs="1" minOccurs="0" name="input" type="tns:ImageDepot"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+
+            <xs:element name="sendImageResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element maxOccurs="1" minOccurs="0" name="output" type="tns:ImageDepot"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+        </xs:schema>
+    </wsdl:types>
+
+    <wsdl:message name="sendImageRequest">
+        <wsdl:part element="mtom:sendImage" name="parameters"/>
+    </wsdl:message>
+
+    <wsdl:message name="sendImageResponse">
+        <wsdl:part element="mtom:sendImageResponse" name="parameters"/>
+    </wsdl:message>
+
+    <wsdl:portType name="MtomSampleService12">
+        <wsdl:operation name="sendImage">
+            <wsdl:input message="impl:sendImageRequest" name="sendImageRequest"/>
+            <wsdl:output message="impl:sendImageResponse" name="sendImageResponse"/>
+        </wsdl:operation>
+    </wsdl:portType>
+
+    <wsdl:binding name="MtomSampleSoap" type="impl:MtomSampleService12">
+        <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+
+        <wsdl:operation name="sendImage">
+            <wsdlsoap:operation soapAction="sendImage"/>
+            <wsdl:input name="sendImageRequest">
+                <wsdlsoap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output name="sendImageResponse">
+                <wsdlsoap:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+    </wsdl:binding>
+
+    <wsdl:service name="MtomSampleService12">
+        <wsdl:port binding="impl:MtomSampleSoap" name="MtomSamplePort">
+            <wsdlsoap:address location="http://localhost:8080/jaxws-samples/services/MtomSampleService12"/>
+        </wsdl:port>
+    </wsdl:service>
+
+</wsdl:definitions>

Added: webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/Ping.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/Ping.wsdl?rev=639515&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/Ping.wsdl (added)
+++ webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/Ping.wsdl Thu Mar 20 19:02:22 2008
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements. See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership. The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License. You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied. See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+                  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+                  xmlns:tns="http://org/apache/axis2/jaxws/samples/ping/"
+                  xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="PingService"
+                  targetNamespace="http://org/apache/axis2/jaxws/samples/ping/">
+    <wsdl:types>
+        <xsd:schema
+                targetNamespace="http://org/apache/axis2/jaxws/samples/ping/"
+                xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+
+
+            <xsd:element name="pingStringInput">
+                <xsd:complexType>
+                    <xsd:sequence>
+                        <xsd:element name="pingInput" type="xsd:string"/>
+                    </xsd:sequence>
+                </xsd:complexType>
+            </xsd:element>
+        </xsd:schema>
+    </wsdl:types>
+    <wsdl:message name="pingOperationRequest">
+        <wsdl:part element="tns:pingStringInput" name="parameter"/>
+    </wsdl:message>
+    <wsdl:portType name="PingServicePortType">
+        <wsdl:operation name="pingOperation">
+            <wsdl:input message="tns:pingOperationRequest"/>
+
+        </wsdl:operation>
+    </wsdl:portType>
+    <wsdl:binding name="PingSOAP" type="tns:PingServicePortType">
+        <soap:binding style="document"
+                      transport="http://schemas.xmlsoap.org/soap/http"/>
+        <wsdl:operation name="pingOperation">
+            <soap:operation soapAction="pingOperation" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:service name="PingService">
+        <wsdl:port binding="tns:PingSOAP" name="PingServicePort">
+            <soap:address
+                    location="http://localhost:8080/jaxws-samples/services/PingService"/>
+        </wsdl:port>
+    </wsdl:service>
+</wsdl:definitions>

Added: webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/Ping12.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/Ping12.wsdl?rev=639515&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/Ping12.wsdl (added)
+++ webservices/axis2/trunk/java/modules/samples/jaxws-samples/src/webapp/WEB-INF/wsdl/Ping12.wsdl Thu Mar 20 19:02:22 2008
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements. See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership. The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License. You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied. See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+                  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap12/"
+                  xmlns:tns="http://org/apache/axis2/jaxws/samples/ping/"
+                  xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="PingService12"
+                  targetNamespace="http://org/apache/axis2/jaxws/samples/ping/">
+    <wsdl:types>
+        <xsd:schema
+                targetNamespace="http://org/apache/axis2/jaxws/samples/ping/"
+                xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+
+
+            <xsd:element name="pingStringInput">
+                <xsd:complexType>
+                    <xsd:sequence>
+                        <xsd:element name="pingInput" type="xsd:string"/>
+                    </xsd:sequence>
+                </xsd:complexType>
+            </xsd:element>
+        </xsd:schema>
+    </wsdl:types>
+    <wsdl:message name="pingOperationRequest">
+        <wsdl:part element="tns:pingStringInput" name="parameter"/>
+    </wsdl:message>
+    <wsdl:portType name="PingService12PortType">
+        <wsdl:operation name="pingOperation">
+            <wsdl:input message="tns:pingOperationRequest"/>
+
+        </wsdl:operation>
+    </wsdl:portType>
+    <wsdl:binding name="PingSOAP12" type="tns:PingService12PortType">
+        <soap:binding style="document"
+                      transport="http://schemas.xmlsoap.org/soap/http"/>
+        <wsdl:operation name="pingOperation">
+            <soap:operation soapAction="pingOperation" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:service name="PingService12">
+        <wsdl:port binding="tns:PingSOAP12" name="PingService12Port">
+            <soap:address
+                    location="http://localhost:8080/jaxws-samples/services/PingService12"/>
+        </wsdl:port>
+    </wsdl:service>
+</wsdl:definitions>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org