Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <wsdl:definitions targetNamespace="http://example" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://example" xmlns:intf="http://example" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  3. <!--WSDL created by Apache Axis version: 1.4
  4. Built on Apr 22, 2006 (06:55:48 PDT)-->
  5. <wsdl:types>
  6. <schema targetNamespace="http://example" xmlns="http://www.w3.org/2001/XMLSchema">
  7. <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
  8. <complexType name="StudentInfo">
  9. <sequence/>
  10. </complexType>
  11. </schema>
  12. </wsdl:types>
  13.  
  14. <wsdl:message name="policzWyplateResponse">
  15.  
  16. <wsdl:part name="policzWyplateReturn" type="xsd:float"/>
  17.  
  18. </wsdl:message>
  19.  
  20. <wsdl:message name="policzWyplateRequest">
  21.  
  22. <wsdl:part name="wyplata" type="xsd:int"/>
  23.  
  24. </wsdl:message>
  25.  
  26. <wsdl:message name="dodajUzytkownikaResponse">
  27.  
  28. <wsdl:part name="dodajUzytkownikaReturn" type="xsd:int"/>
  29.  
  30. </wsdl:message>
  31.  
  32. <wsdl:message name="dodajUzytkownikaRequest">
  33.  
  34. <wsdl:part name="tmp" type="impl:StudentInfo"/>
  35.  
  36. <wsdl:part name="kwota" type="xsd:int"/>
  37.  
  38. </wsdl:message>
  39.  
  40. <wsdl:portType name="Exam">
  41.  
  42. <wsdl:operation name="dodajUzytkownika" parameterOrder="tmp kwota">
  43.  
  44. <wsdl:input message="impl:dodajUzytkownikaRequest" name="dodajUzytkownikaRequest"/>
  45.  
  46. <wsdl:output message="impl:dodajUzytkownikaResponse" name="dodajUzytkownikaResponse"/>
  47.  
  48. </wsdl:operation>
  49.  
  50. <wsdl:operation name="policzWyplate" parameterOrder="wyplata">
  51.  
  52. <wsdl:input message="impl:policzWyplateRequest" name="policzWyplateRequest"/>
  53.  
  54. <wsdl:output message="impl:policzWyplateResponse" name="policzWyplateResponse"/>
  55.  
  56. </wsdl:operation>
  57.  
  58. </wsdl:portType>
  59.  
  60. <wsdl:binding name="ExamSoapBinding" type="impl:Exam">
  61.  
  62. <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
  63.  
  64. <wsdl:operation name="dodajUzytkownika">
  65.  
  66. <wsdlsoap:operation soapAction=""/>
  67.  
  68. <wsdl:input name="dodajUzytkownikaRequest">
  69.  
  70. <wsdlsoap:body namespace="http://example" use="literal"/>
  71.  
  72. </wsdl:input>
  73.  
  74. <wsdl:output name="dodajUzytkownikaResponse">
  75.  
  76. <wsdlsoap:body namespace="http://example" use="literal"/>
  77.  
  78. </wsdl:output>
  79.  
  80. </wsdl:operation>
  81.  
  82. <wsdl:operation name="policzWyplate">
  83.  
  84. <wsdlsoap:operation soapAction=""/>
  85.  
  86. <wsdl:input name="policzWyplateRequest">
  87.  
  88. <wsdlsoap:body namespace="http://example" use="literal"/>
  89.  
  90. </wsdl:input>
  91.  
  92. <wsdl:output name="policzWyplateResponse">
  93.  
  94. <wsdlsoap:body namespace="http://example" use="literal"/>
  95.  
  96. </wsdl:output>
  97.  
  98. </wsdl:operation>
  99.  
  100. </wsdl:binding>
  101.  
  102. <wsdl:service name="ExamService">
  103.  
  104. <wsdl:port binding="impl:ExamSoapBinding" name="Exam">
  105.  
  106. <wsdlsoap:address location="http://localhost:8080/soa_lab9_war_exploded/services/Exam"/>
  107.  
  108. </wsdl:port>
  109.  
  110. </wsdl:service>
  111.  
  112. </wsdl:definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement