summaryrefslogtreecommitdiffstats
path: root/sandbox/slaws/axis-jaxws-experiment/src/main/resources
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-03-12 14:17:17 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-03-12 14:17:17 +0000
commit9d13f8bdc031b2df3c551020285248813c91f3db (patch)
tree1a91e15db75f2c8a55bb5f4a363eb8eccf118235 /sandbox/slaws/axis-jaxws-experiment/src/main/resources
parent57814d9f2d8c517657f35caeb461c98ad2d38fd4 (diff)
moving things about
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@922266 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sandbox/slaws/axis-jaxws-experiment/src/main/resources/AddServiceImplService.wsdl39
-rw-r--r--sandbox/slaws/axis-jaxws-experiment/src/main/resources/AddServiceImplService_schema1.xsd21
2 files changed, 0 insertions, 60 deletions
diff --git a/sandbox/slaws/axis-jaxws-experiment/src/main/resources/AddServiceImplService.wsdl b/sandbox/slaws/axis-jaxws-experiment/src/main/resources/AddServiceImplService.wsdl
deleted file mode 100644
index b07f05ad66..0000000000
--- a/sandbox/slaws/axis-jaxws-experiment/src/main/resources/AddServiceImplService.wsdl
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.1 in JDK 6. -->
-<definitions targetNamespace="http://calculator/" name="AddServiceImplService" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://calculator/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
- <types>
- <xsd:schema>
- <xsd:import namespace="http://calculator/" schemaLocation="AddServiceImplService_schema1.xsd"/>
- </xsd:schema>
- </types>
- <message name="add">
- <part name="parameters" element="tns:add"/>
- </message>
- <message name="addResponse">
- <part name="parameters" element="tns:addResponse"/>
- </message>
- <portType name="AddServiceImpl">
- <operation name="add">
- <input message="tns:add"/>
- <output message="tns:addResponse"/>
- </operation>
- </portType>
- <binding name="AddServiceImplPortBinding" type="tns:AddServiceImpl">
- <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
- <operation name="add">
- <soap:operation soapAction=""/>
- <input>
- <soap:body use="literal"/>
- </input>
- <output>
- <soap:body use="literal"/>
- </output>
- </operation>
- </binding>
- <service name="AddServiceImplService">
- <port name="AddServiceImplPort" binding="tns:AddServiceImplPortBinding">
- <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
- </port>
- </service>
-</definitions>
-
diff --git a/sandbox/slaws/axis-jaxws-experiment/src/main/resources/AddServiceImplService_schema1.xsd b/sandbox/slaws/axis-jaxws-experiment/src/main/resources/AddServiceImplService_schema1.xsd
deleted file mode 100644
index 735f19bff3..0000000000
--- a/sandbox/slaws/axis-jaxws-experiment/src/main/resources/AddServiceImplService_schema1.xsd
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<xs:schema version="1.0" targetNamespace="http://calculator/" xmlns:tns="http://calculator/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
-
- <xs:element name="add" type="tns:add"/>
-
- <xs:element name="addResponse" type="tns:addResponse"/>
-
- <xs:complexType name="add">
- <xs:sequence>
- <xs:element name="arg0" type="xs:double"/>
- <xs:element name="arg1" type="xs:double"/>
- </xs:sequence>
- </xs:complexType>
-
- <xs:complexType name="addResponse">
- <xs:sequence>
- <xs:element name="return" type="xs:double"/>
- </xs:sequence>
- </xs:complexType>
-</xs:schema>
-