You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@synapse.apache.org by ve...@apache.org on 2012/09/23 09:36:00 UTC

svn commit: r1388970 - /synapse/branches/SYNAPSE-905/repository/conf/sample/resources/proxy/sample_proxy_1.wsdl

Author: veithen
Date: Sun Sep 23 07:36:00 2012
New Revision: 1388970

URL: http://svn.apache.org/viewvc?rev=1388970&view=rev
Log:
Refreshed sample_proxy_1.wsdl.

Modified:
    synapse/branches/SYNAPSE-905/repository/conf/sample/resources/proxy/sample_proxy_1.wsdl

Modified: synapse/branches/SYNAPSE-905/repository/conf/sample/resources/proxy/sample_proxy_1.wsdl
URL: http://svn.apache.org/viewvc/synapse/branches/SYNAPSE-905/repository/conf/sample/resources/proxy/sample_proxy_1.wsdl?rev=1388970&r1=1388969&r2=1388970&view=diff
==============================================================================
--- synapse/branches/SYNAPSE-905/repository/conf/sample/resources/proxy/sample_proxy_1.wsdl (original)
+++ synapse/branches/SYNAPSE-905/repository/conf/sample/resources/proxy/sample_proxy_1.wsdl Sun Sep 23 07:36:00 2012
@@ -1,3 +1,4 @@
+<?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
@@ -16,10 +17,17 @@
   ~  specific language governing permissions and limitations
   ~  under the License.
   -->
-
-<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:ns1="http://org.apache.axis2/xsd" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:ax21="http://services.samples/xsd" xmlns:ns="http://services.samples" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" targetNamespace="http://services.samples">    <wsdl:documentation>SimpleStockQuoteService</wsdl:documentation>
+<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns1="http://org.apache.axis2/xsd" xmlns:ns="http://services.samples" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://services.samples">
+    <wsdl:documentation>SimpleStockQuoteService</wsdl:documentation>
     <wsdl:types>
-        <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://services.samples/xsd">
+        <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://services.samples">
+            <xs:element name="placeOrder">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="order" nillable="true" type="ns:PlaceOrder"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
             <xs:complexType name="PlaceOrder">
                 <xs:sequence>
                     <xs:element minOccurs="0" name="price" type="xs:double"/>
@@ -27,6 +35,20 @@
                     <xs:element minOccurs="0" name="symbol" nillable="true" type="xs:string"/>
                 </xs:sequence>
             </xs:complexType>
+            <xs:element name="getSimpleQuote">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="symbol" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getSimpleQuoteResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="return" nillable="true" type="ns:GetQuoteResponse"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
             <xs:complexType name="GetQuoteResponse">
                 <xs:sequence>
                     <xs:element minOccurs="0" name="change" type="xs:double"/>
@@ -45,125 +67,101 @@
                     <xs:element minOccurs="0" name="volume" type="xs:int"/>
                 </xs:sequence>
             </xs:complexType>
-            <xs:complexType name="GetQuote">
-                <xs:sequence>
-                    <xs:element minOccurs="0" name="symbol" nillable="true" type="xs:string"/>
-                </xs:sequence>
-            </xs:complexType>
-            <xs:complexType name="GetMarketActivity">
-                <xs:sequence>
-                    <xs:element maxOccurs="unbounded" minOccurs="0" name="symbols" nillable="true" type="xs:string"/>
-                </xs:sequence>
-            </xs:complexType>
-            <xs:complexType name="GetMarketActivityResponse">
-                <xs:sequence>
-                    <xs:element maxOccurs="unbounded" minOccurs="0" name="quotes" nillable="true" type="ax21:GetQuoteResponse"/>
-                </xs:sequence>
-            </xs:complexType>
-            <xs:complexType name="GetFullQuote">
-                <xs:sequence>
-                    <xs:element minOccurs="0" name="symbol" nillable="true" type="xs:string"/>
-                </xs:sequence>
-            </xs:complexType>
-            <xs:complexType name="GetFullQuoteResponse">
-                <xs:sequence>
-                    <xs:element maxOccurs="unbounded" minOccurs="0" name="tradeHistory" nillable="true" type="ax21:TradingDay"/>
-                </xs:sequence>
-            </xs:complexType>
-            <xs:complexType name="TradingDay">
-                <xs:sequence>
-                    <xs:element minOccurs="0" name="day" type="xs:int"/>
-                    <xs:element minOccurs="0" name="quote" nillable="true" type="ax21:GetQuoteResponse"/>
-                </xs:sequence>
-            </xs:complexType>
-        </xs:schema>
-        <xs:schema xmlns:ax22="http://services.samples/xsd" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://services.samples">
-            <xs:import namespace="http://services.samples/xsd"/>
-            <xs:element name="placeOrder">
-                <xs:complexType>
-                    <xs:sequence>
-                        <xs:element minOccurs="0" name="order" nillable="true" type="ax22:PlaceOrder"/>
-                    </xs:sequence>
-                </xs:complexType>
-            </xs:element>
-            <xs:element name="getSimpleQuote">
+            <xs:element name="SimpleStockQuoteServiceException">
                 <xs:complexType>
                     <xs:sequence>
-                        <xs:element minOccurs="0" name="symbol" nillable="true" type="xs:string"/>
-                    </xs:sequence>
-                </xs:complexType>
-            </xs:element>
-            <xs:element name="getSimpleQuoteResponse">
-                <xs:complexType>
-                    <xs:sequence>
-                        <xs:element minOccurs="0" name="return" nillable="true" type="ax22:GetQuoteResponse"/>
+                        <xs:element minOccurs="0" name="SimpleStockQuoteServiceException" nillable="true" type="ns:Exception"/>
                     </xs:sequence>
                 </xs:complexType>
             </xs:element>
             <xs:complexType name="Exception">
                 <xs:sequence>
-                    <xs:element minOccurs="0" name="Exception" nillable="true" type="xs:anyType"/>
+                    <xs:element minOccurs="0" name="Message" nillable="true" type="xs:string"/>
                 </xs:sequence>
             </xs:complexType>
-            <xs:element name="Exception">
-                <xs:complexType>
-                    <xs:sequence>
-                        <xs:element minOccurs="0" name="Exception" nillable="true" type="ns:Exception"/>
-                    </xs:sequence>
-                </xs:complexType>
-            </xs:element>
             <xs:element name="getQuote">
                 <xs:complexType>
                     <xs:sequence>
-                        <xs:element minOccurs="0" name="request" nillable="true" type="ax22:GetQuote"/>
+                        <xs:element minOccurs="0" name="request" nillable="true" type="ns:GetQuote"/>
                     </xs:sequence>
                 </xs:complexType>
             </xs:element>
+            <xs:complexType name="GetQuote">
+                <xs:sequence>
+                    <xs:element minOccurs="0" name="symbol" nillable="true" type="xs:string"/>
+                </xs:sequence>
+            </xs:complexType>
             <xs:element name="getQuoteResponse">
                 <xs:complexType>
                     <xs:sequence>
-                        <xs:element minOccurs="0" name="return" nillable="true" type="ax22:GetQuoteResponse"/>
+                        <xs:element minOccurs="0" name="return" nillable="true" type="ns:GetQuoteResponse"/>
                     </xs:sequence>
                 </xs:complexType>
             </xs:element>
             <xs:element name="getMarketActivity">
                 <xs:complexType>
                     <xs:sequence>
-                        <xs:element minOccurs="0" name="request" nillable="true" type="ax22:GetMarketActivity"/>
+                        <xs:element minOccurs="0" name="request" nillable="true" type="ns:GetMarketActivity"/>
                     </xs:sequence>
                 </xs:complexType>
             </xs:element>
+            <xs:complexType name="GetMarketActivity">
+                <xs:sequence>
+                    <xs:element maxOccurs="unbounded" minOccurs="0" name="symbols" nillable="true" type="xs:string"/>
+                </xs:sequence>
+            </xs:complexType>
             <xs:element name="getMarketActivityResponse">
                 <xs:complexType>
                     <xs:sequence>
-                        <xs:element minOccurs="0" name="return" nillable="true" type="ax22:GetMarketActivityResponse"/>
+                        <xs:element minOccurs="0" name="return" nillable="true" type="ns:GetMarketActivityResponse"/>
                     </xs:sequence>
                 </xs:complexType>
             </xs:element>
+            <xs:complexType name="GetMarketActivityResponse">
+                <xs:sequence>
+                    <xs:element maxOccurs="unbounded" minOccurs="0" name="quotes" nillable="true" type="ns:GetQuoteResponse"/>
+                </xs:sequence>
+            </xs:complexType>
             <xs:element name="getFullQuote">
                 <xs:complexType>
                     <xs:sequence>
-                        <xs:element minOccurs="0" name="request" nillable="true" type="ax22:GetFullQuote"/>
+                        <xs:element minOccurs="0" name="request" nillable="true" type="ns:GetFullQuote"/>
                     </xs:sequence>
                 </xs:complexType>
             </xs:element>
+            <xs:complexType name="GetFullQuote">
+                <xs:sequence>
+                    <xs:element minOccurs="0" name="symbol" nillable="true" type="xs:string"/>
+                </xs:sequence>
+            </xs:complexType>
             <xs:element name="getFullQuoteResponse">
                 <xs:complexType>
                     <xs:sequence>
-                        <xs:element minOccurs="0" name="return" nillable="true" type="ax22:GetFullQuoteResponse"/>
+                        <xs:element minOccurs="0" name="return" nillable="true" type="ns:GetFullQuoteResponse"/>
                     </xs:sequence>
                 </xs:complexType>
             </xs:element>
+            <xs:complexType name="GetFullQuoteResponse">
+                <xs:sequence>
+                    <xs:element maxOccurs="unbounded" minOccurs="0" name="tradeHistory" nillable="true" type="ns:TradingDay"/>
+                </xs:sequence>
+            </xs:complexType>
+            <xs:complexType name="TradingDay">
+                <xs:sequence>
+                    <xs:element minOccurs="0" name="day" type="xs:int"/>
+                    <xs:element minOccurs="0" name="quote" nillable="true" type="ns:GetQuoteResponse"/>
+                </xs:sequence>
+            </xs:complexType>
         </xs:schema>
     </wsdl:types>
-    <wsdl:message name="placeOrderRequest">
-        <wsdl:part name="parameters" element="ns:placeOrder"/>
+    <wsdl:message name="getQuoteRequest">
+        <wsdl:part name="parameters" element="ns:getQuote"/>
     </wsdl:message>
-    <wsdl:message name="getSimpleQuoteRequest">
-        <wsdl:part name="parameters" element="ns:getSimpleQuote"/>
+    <wsdl:message name="getQuoteResponse">
+        <wsdl:part name="parameters" element="ns:getQuoteResponse"/>
     </wsdl:message>
-    <wsdl:message name="getSimpleQuoteResponse">
-        <wsdl:part name="parameters" element="ns:getSimpleQuoteResponse"/>
+    <wsdl:message name="SimpleStockQuoteServiceException">
+        <wsdl:part name="parameters" element="ns:SimpleStockQuoteServiceException"/>
     </wsdl:message>
     <wsdl:message name="getMarketActivityRequest">
         <wsdl:part name="parameters" element="ns:getMarketActivity"/>
@@ -177,22 +175,20 @@
     <wsdl:message name="getFullQuoteResponse">
         <wsdl:part name="parameters" element="ns:getFullQuoteResponse"/>
     </wsdl:message>
-    <wsdl:message name="getQuoteRequest">
-        <wsdl:part name="parameters" element="ns:getQuote"/>
+    <wsdl:message name="getSimpleQuoteRequest">
+        <wsdl:part name="parameters" element="ns:getSimpleQuote"/>
     </wsdl:message>
-    <wsdl:message name="getQuoteResponse">
-        <wsdl:part name="parameters" element="ns:getQuoteResponse"/>
+    <wsdl:message name="getSimpleQuoteResponse">
+        <wsdl:part name="parameters" element="ns:getSimpleQuoteResponse"/>
     </wsdl:message>
-    <wsdl:message name="Exception">
-        <wsdl:part name="parameters" element="ns:Exception"/>
+    <wsdl:message name="placeOrderRequest">
+        <wsdl:part name="parameters" element="ns:placeOrder"/>
     </wsdl:message>
     <wsdl:portType name="SimpleStockQuoteServicePortType">
-        <wsdl:operation name="placeOrder">
-            <wsdl:input message="ns:placeOrderRequest" wsaw:Action="urn:placeOrder"/>
-        </wsdl:operation>
-        <wsdl:operation name="getSimpleQuote">
-            <wsdl:input message="ns:getSimpleQuoteRequest" wsaw:Action="urn:getSimpleQuote"/>
-            <wsdl:output message="ns:getSimpleQuoteResponse" wsaw:Action="urn:getSimpleQuoteResponse"/>
+        <wsdl:operation name="getQuote">
+            <wsdl:input message="ns:getQuoteRequest" wsaw:Action="urn:getQuote"/>
+            <wsdl:output message="ns:getQuoteResponse" wsaw:Action="urn:getQuoteResponse"/>
+            <wsdl:fault message="ns:SimpleStockQuoteServiceException" name="SimpleStockQuoteServiceException" wsaw:Action="urn:getQuoteSimpleStockQuoteServiceException"/>
         </wsdl:operation>
         <wsdl:operation name="getMarketActivity">
             <wsdl:input message="ns:getMarketActivityRequest" wsaw:Action="urn:getMarketActivity"/>
@@ -202,22 +198,18 @@
             <wsdl:input message="ns:getFullQuoteRequest" wsaw:Action="urn:getFullQuote"/>
             <wsdl:output message="ns:getFullQuoteResponse" wsaw:Action="urn:getFullQuoteResponse"/>
         </wsdl:operation>
-        <wsdl:operation name="getQuote">
-            <wsdl:input message="ns:getQuoteRequest" wsaw:Action="urn:getQuote"/>
-            <wsdl:output message="ns:getQuoteResponse" wsaw:Action="urn:getQuoteResponse"/>
-            <wsdl:fault message="ns:Exception" name="Exception" wsaw:Action="urn:getQuoteException"/>
+        <wsdl:operation name="getSimpleQuote">
+            <wsdl:input message="ns:getSimpleQuoteRequest" wsaw:Action="urn:getSimpleQuote"/>
+            <wsdl:output message="ns:getSimpleQuoteResponse" wsaw:Action="urn:getSimpleQuoteResponse"/>
+        </wsdl:operation>
+        <wsdl:operation name="placeOrder">
+            <wsdl:input message="ns:placeOrderRequest" wsaw:Action="urn:placeOrder"/>
         </wsdl:operation>
     </wsdl:portType>
     <wsdl:binding name="SimpleStockQuoteServiceSoap11Binding" type="ns:SimpleStockQuoteServicePortType">
         <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
-        <wsdl:operation name="placeOrder">
-            <soap:operation soapAction="urn:placeOrder" style="document"/>
-            <wsdl:input>
-                <soap:body use="literal"/>
-            </wsdl:input>
-        </wsdl:operation>
-        <wsdl:operation name="getSimpleQuote">
-            <soap:operation soapAction="urn:getSimpleQuote" style="document"/>
+        <wsdl:operation name="getMarketActivity">
+            <soap:operation soapAction="urn:getMarketActivity" style="document"/>
             <wsdl:input>
                 <soap:body use="literal"/>
             </wsdl:input>
@@ -225,14 +217,17 @@
                 <soap:body use="literal"/>
             </wsdl:output>
         </wsdl:operation>
-        <wsdl:operation name="getMarketActivity">
-            <soap:operation soapAction="urn:getMarketActivity" style="document"/>
+        <wsdl:operation name="getQuote">
+            <soap:operation soapAction="urn:getQuote" style="document"/>
             <wsdl:input>
                 <soap:body use="literal"/>
             </wsdl:input>
             <wsdl:output>
                 <soap:body use="literal"/>
             </wsdl:output>
+            <wsdl:fault name="SimpleStockQuoteServiceException">
+                <soap:fault use="literal" name="SimpleStockQuoteServiceException"/>
+            </wsdl:fault>
         </wsdl:operation>
         <wsdl:operation name="getFullQuote">
             <soap:operation soapAction="urn:getFullQuote" style="document"/>
@@ -243,29 +238,26 @@
                 <soap:body use="literal"/>
             </wsdl:output>
         </wsdl:operation>
-        <wsdl:operation name="getQuote">
-            <soap:operation soapAction="urn:getQuote" style="document"/>
+        <wsdl:operation name="getSimpleQuote">
+            <soap:operation soapAction="urn:getSimpleQuote" style="document"/>
             <wsdl:input>
                 <soap:body use="literal"/>
             </wsdl:input>
             <wsdl:output>
                 <soap:body use="literal"/>
             </wsdl:output>
-            <wsdl:fault name="Exception">
-                <soap:fault use="literal" name="Exception"/>
-            </wsdl:fault>
         </wsdl:operation>
-    </wsdl:binding>
-    <wsdl:binding name="SimpleStockQuoteServiceSoap12Binding" type="ns:SimpleStockQuoteServicePortType">
-        <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
         <wsdl:operation name="placeOrder">
-            <soap12:operation soapAction="urn:placeOrder" style="document"/>
+            <soap:operation soapAction="urn:placeOrder" style="document"/>
             <wsdl:input>
-                <soap12:body use="literal"/>
+                <soap:body use="literal"/>
             </wsdl:input>
         </wsdl:operation>
-        <wsdl:operation name="getSimpleQuote">
-            <soap12:operation soapAction="urn:getSimpleQuote" style="document"/>
+    </wsdl:binding>
+    <wsdl:binding name="SimpleStockQuoteServiceSoap12Binding" type="ns:SimpleStockQuoteServicePortType">
+        <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
+        <wsdl:operation name="getMarketActivity">
+            <soap12:operation soapAction="urn:getMarketActivity" style="document"/>
             <wsdl:input>
                 <soap12:body use="literal"/>
             </wsdl:input>
@@ -273,14 +265,17 @@
                 <soap12:body use="literal"/>
             </wsdl:output>
         </wsdl:operation>
-        <wsdl:operation name="getMarketActivity">
-            <soap12:operation soapAction="urn:getMarketActivity" style="document"/>
+        <wsdl:operation name="getQuote">
+            <soap12:operation soapAction="urn:getQuote" style="document"/>
             <wsdl:input>
                 <soap12:body use="literal"/>
             </wsdl:input>
             <wsdl:output>
                 <soap12:body use="literal"/>
             </wsdl:output>
+            <wsdl:fault name="SimpleStockQuoteServiceException">
+                <soap12:fault use="literal" name="SimpleStockQuoteServiceException"/>
+            </wsdl:fault>
         </wsdl:operation>
         <wsdl:operation name="getFullQuote">
             <soap12:operation soapAction="urn:getFullQuote" style="document"/>
@@ -291,82 +286,86 @@
                 <soap12:body use="literal"/>
             </wsdl:output>
         </wsdl:operation>
-        <wsdl:operation name="getQuote">
-            <soap12:operation soapAction="urn:getQuote" style="document"/>
+        <wsdl:operation name="getSimpleQuote">
+            <soap12:operation soapAction="urn:getSimpleQuote" style="document"/>
             <wsdl:input>
                 <soap12:body use="literal"/>
             </wsdl:input>
             <wsdl:output>
                 <soap12:body use="literal"/>
             </wsdl:output>
-            <wsdl:fault name="Exception">
-                <soap12:fault use="literal" name="Exception"/>
-            </wsdl:fault>
         </wsdl:operation>
-    </wsdl:binding>
-    <wsdl:binding name="SimpleStockQuoteServiceHttpBinding" type="ns:SimpleStockQuoteServicePortType">
-        <http:binding verb="POST"/>
         <wsdl:operation name="placeOrder">
-            <http:operation location="SimpleStockQuoteService/placeOrder"/>
+            <soap12:operation soapAction="urn:placeOrder" style="document"/>
             <wsdl:input>
-                <mime:content type="text/xml" part="placeOrder"/>
+                <soap12:body use="literal"/>
             </wsdl:input>
         </wsdl:operation>
-        <wsdl:operation name="getSimpleQuote">
-            <http:operation location="SimpleStockQuoteService/getSimpleQuote"/>
+    </wsdl:binding>
+    <wsdl:binding name="SimpleStockQuoteServiceHttpBinding" type="ns:SimpleStockQuoteServicePortType">
+        <http:binding verb="POST"/>
+        <wsdl:operation name="getMarketActivity">
+            <http:operation location="getMarketActivity"/>
             <wsdl:input>
-                <mime:content type="text/xml" part="getSimpleQuote"/>
+                <mime:content type="application/xml" part="parameters"/>
             </wsdl:input>
             <wsdl:output>
-                <mime:content type="text/xml" part="getSimpleQuote"/>
+                <mime:content type="application/xml" part="parameters"/>
             </wsdl:output>
         </wsdl:operation>
-        <wsdl:operation name="getMarketActivity">
-            <http:operation location="SimpleStockQuoteService/getMarketActivity"/>
+        <wsdl:operation name="getQuote">
+            <http:operation location="getQuote"/>
             <wsdl:input>
-                <mime:content type="text/xml" part="getMarketActivity"/>
+                <mime:content type="application/xml" part="parameters"/>
             </wsdl:input>
             <wsdl:output>
-                <mime:content type="text/xml" part="getMarketActivity"/>
+                <mime:content type="application/xml" part="parameters"/>
             </wsdl:output>
+            <wsdl:fault name="SimpleStockQuoteServiceException"/>
         </wsdl:operation>
         <wsdl:operation name="getFullQuote">
-            <http:operation location="SimpleStockQuoteService/getFullQuote"/>
+            <http:operation location="getFullQuote"/>
             <wsdl:input>
-                <mime:content type="text/xml" part="getFullQuote"/>
+                <mime:content type="application/xml" part="parameters"/>
             </wsdl:input>
             <wsdl:output>
-                <mime:content type="text/xml" part="getFullQuote"/>
+                <mime:content type="application/xml" part="parameters"/>
             </wsdl:output>
         </wsdl:operation>
-        <wsdl:operation name="getQuote">
-            <http:operation location="SimpleStockQuoteService/getQuote"/>
+        <wsdl:operation name="getSimpleQuote">
+            <http:operation location="getSimpleQuote"/>
             <wsdl:input>
-                <mime:content type="text/xml" part="getQuote"/>
+                <mime:content type="application/xml" part="parameters"/>
             </wsdl:input>
             <wsdl:output>
-                <mime:content type="text/xml" part="getQuote"/>
+                <mime:content type="application/xml" part="parameters"/>
             </wsdl:output>
         </wsdl:operation>
+        <wsdl:operation name="placeOrder">
+            <http:operation location="placeOrder"/>
+            <wsdl:input>
+                <mime:content type="application/xml" part="parameters"/>
+            </wsdl:input>
+        </wsdl:operation>
     </wsdl:binding>
     <wsdl:service name="SimpleStockQuoteService">
-        <wsdl:port name="SimpleStockQuoteServiceHttpsSoap11Endpoint" binding="ns:SimpleStockQuoteServiceSoap11Binding">
-            <soap:address location="https://localhost:9002/services/SimpleStockQuoteService.SimpleStockQuoteServiceHttpsSoap11Endpoint"/>
-        </wsdl:port>
         <wsdl:port name="SimpleStockQuoteServiceHttpSoap11Endpoint" binding="ns:SimpleStockQuoteServiceSoap11Binding">
             <soap:address location="http://localhost:9000/services/SimpleStockQuoteService.SimpleStockQuoteServiceHttpSoap11Endpoint"/>
         </wsdl:port>
+        <wsdl:port name="SimpleStockQuoteServiceHttpsSoap11Endpoint" binding="ns:SimpleStockQuoteServiceSoap11Binding">
+            <soap:address location="https://localhost:9002/services/SimpleStockQuoteService.SimpleStockQuoteServiceHttpsSoap11Endpoint"/>
+        </wsdl:port>
         <wsdl:port name="SimpleStockQuoteServiceHttpSoap12Endpoint" binding="ns:SimpleStockQuoteServiceSoap12Binding">
             <soap12:address location="http://localhost:9000/services/SimpleStockQuoteService.SimpleStockQuoteServiceHttpSoap12Endpoint"/>
         </wsdl:port>
         <wsdl:port name="SimpleStockQuoteServiceHttpsSoap12Endpoint" binding="ns:SimpleStockQuoteServiceSoap12Binding">
             <soap12:address location="https://localhost:9002/services/SimpleStockQuoteService.SimpleStockQuoteServiceHttpsSoap12Endpoint"/>
         </wsdl:port>
-        <wsdl:port name="SimpleStockQuoteServiceHttpsEndpoint" binding="ns:SimpleStockQuoteServiceHttpBinding">
-            <http:address location="https://localhost:9002/services/SimpleStockQuoteService.SimpleStockQuoteServiceHttpsEndpoint"/>
-        </wsdl:port>
         <wsdl:port name="SimpleStockQuoteServiceHttpEndpoint" binding="ns:SimpleStockQuoteServiceHttpBinding">
             <http:address location="http://localhost:9000/services/SimpleStockQuoteService.SimpleStockQuoteServiceHttpEndpoint"/>
         </wsdl:port>
+        <wsdl:port name="SimpleStockQuoteServiceHttpsEndpoint" binding="ns:SimpleStockQuoteServiceHttpBinding">
+            <http:address location="https://localhost:9002/services/SimpleStockQuoteService.SimpleStockQuoteServiceHttpsEndpoint"/>
+        </wsdl:port>
     </wsdl:service>
 </wsdl:definitions>
\ No newline at end of file