CAMEL-6739: Camel archetype for CXF contract first for Blueprint
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/e755b55a Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/e755b55a Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/e755b55a Branch: refs/heads/camel-2.12.x Commit: e755b55ac5b13f2875e64a9faef931508ae0626a Parents: 7c0d0ce Author: Claus Ibsen <[email protected]> Authored: Thu Sep 12 16:36:13 2013 +0200 Committer: Claus Ibsen <[email protected]> Committed: Thu Sep 12 16:36:33 2013 +0200 ---------------------------------------------------------------------- .../src/main/resources/wsdl/order.wsdl | 75 -------------------- 1 file changed, 75 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/e755b55a/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/wsdl/order.wsdl ---------------------------------------------------------------------- diff --git a/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/wsdl/order.wsdl b/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/wsdl/order.wsdl deleted file mode 100644 index d475e95..0000000 --- a/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/wsdl/order.wsdl +++ /dev/null @@ -1,75 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!-- - 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:soap="http://schemas.xmlsoap.org/wsdl/soap/" - xmlns:tns="http://order.camelinaction" - xmlns:xs="http://www.w3.org/2001/XMLSchema" - xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" - xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" - targetNamespace="http://order.camelinaction"> - - <!-- Type definitions for input- and output parameters for webservice --> - <wsdl:types> - <xs:schema targetNamespace="http://order.camelinaction"> - <xs:element type="xs:string" name="partName" /> - <xs:element type="xs:int" name="amount" /> - <xs:element type="xs:string" name="customerName" /> - <xs:element type="xs:string" name="resultCode" /> - </xs:schema> - </wsdl:types> - - <!-- Message definitions for input and output --> - <wsdl:message name="purchaseOrder"> - <wsdl:part name="partName" element="tns:partName" /> - <wsdl:part name="amount" element="tns:amount"/> - <wsdl:part name="customerName" element="tns:customerName"/> - </wsdl:message> - <wsdl:message name="orderResult"> - <wsdl:part name="resultCode" element="tns:resultCode" /> - </wsdl:message> - - <!-- Port (interface) definitions --> - <wsdl:portType name="OrderEndpoint"> - <wsdl:operation name="order"> - <wsdl:input message="tns:purchaseOrder" /> - <wsdl:output message="tns:orderResult" /> - </wsdl:operation> - </wsdl:portType> - - <!-- Port bindings to transports and encoding - HTTP, document literal encoding is used --> - <wsdl:binding name="OrderBinding" type="tns:OrderEndpoint"> - <soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> - <wsdl:operation name="order"> - <soap:operation soapAction="http://order.camelinaction/Order" style="document" /> - <wsdl:input> - <soap:body parts="in" use="literal" /> - </wsdl:input> - <wsdl:output> - <soap:body parts="out" use="literal" /> - </wsdl:output> - </wsdl:operation> - </wsdl:binding> - - <!-- Service definition --> - <wsdl:service name="OrderEndpointService"> - <wsdl:port name="OrderService" binding="tns:OrderBinding"> - <soap:address location="http://localhost:9000/order" /> - </wsdl:port> - </wsdl:service> - -</wsdl:definitions>
