Advertisement
Guest User

Untitled

a guest
May 11th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.81 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.4-b01. -->
  3. <definitions targetNamespace="http://localhost" name="CalculatorService" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:tns="http://localhost" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
  4.   <types>
  5.     <xsd:schema>
  6.       <xsd:import namespace="http://localhost" schemaLocation="test.xsd"/>
  7.     </xsd:schema>
  8.   </types>
  9.   <message name="add">
  10.     <part name="parameters" element="tns:add"/>
  11.   </message>
  12.   <message name="addResponse">
  13.     <part name="parameters" element="tns:addResponse"/>
  14.   </message>
  15.   <portType name="Calculator">
  16.     <operation name="add">
  17.       <input wsam:Action="http://localhost/Calculator/addRequest" message="tns:add"/>
  18.       <output wsam:Action="http://localhost/Calculator/addResponse" message="tns:addResponse"/>
  19.     </operation>
  20.   </portType>
  21.   <binding name="CalculatorPortBinding" type="tns:Calculator">
  22.     <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
  23.     <operation name="add">
  24.       <soap:operation soapAction=""/>
  25.       <input>
  26.         <soap:body use="literal"/>
  27.       </input>
  28.       <output>
  29.         <soap:body use="literal"/>
  30.       </output>
  31.     </operation>
  32.   </binding>
  33.   <service name="CalculatorService">
  34.     <port name="CalculatorPort" binding="tns:CalculatorPortBinding">
  35.       <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
  36.     </port>
  37.   </service>
  38. </definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement