Advertisement
Guest User

Untitled

a guest
Jan 9th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.34 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <definitions xmlns:tns="http://oap/services/checkHolderBillingSynDonorRequestService" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:data="http://oap/services/checkHolderBillingSynDonorRequestService/types" xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:WSDL="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" name="checkHolderBillingSynDonorRequest" targetNamespace="http://oap/services/checkHolderBillingSynDonorRequestService">
  4.  
  5. <WSDL:types>
  6.  
  7. <schema targetNamespace="http://oap/services/checkHolderBillingSynDonorRequestService/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:data="http://oap/services/checkHolderBillingSynDonorRequestService/types" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="unqualified" attributeFormDefault="unqualified">
  8.  
  9. <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
  10.  
  11. <!-- generic type -->
  12.  
  13. <complexType name="RequestMessageHeader">
  14.  
  15. <sequence>
  16.  
  17. <element name="OAPPrevTrxId" type="data:OAPTxnIdType" minOccurs="1"/>
  18.  
  19. <element name="messageTimeStamp" type="data:DateFormatType" minOccurs="1"/>
  20.  
  21. </sequence>
  22.  
  23. </complexType>
  24.  
  25. <complexType name="ResponseMessageHeader">
  26.  
  27. <sequence>
  28.  
  29. <element name="OAPPrevTrxId" type="data:OAPTxnIdType" minOccurs="1"/>
  30.  
  31. <element name="messageTimeStamp" type="data:DateFormatType" minOccurs="1"/>
  32.  
  33. </sequence>
  34.  
  35. </complexType>
  36.  
  37. <complexType name="checkHolderBillingSynDonorRequestBody">
  38.  
  39. <sequence>
  40.  
  41. <element name="requesterUserRUT" type="data:RUTType" minOccurs="1" default="" maxOccurs="1"/>
  42.  
  43. <element name="holderUserRUT" type="data:RUTType" minOccurs="1" default="" maxOccurs="1"/>
  44.  
  45. <element name="modalityId" type="xsd:int" minOccurs="1"/>
  46.  
  47. <element name="serviceType" type="xsd:int" minOccurs="1"/>
  48.  
  49. <element name="serviceTypeTo" type="xsd:int" minOccurs="1"/>
  50.  
  51. <element name="TNDetails" type="data:TNDetailsList" minOccurs="1" maxOccurs="10"/>
  52.  
  53. </sequence>
  54.  
  55. </complexType>
  56.  
  57. <complexType name="checkHolderBillingSynDonorResponseBody">
  58.  
  59. <sequence>
  60.  
  61. <element name="responseDetails" type="data:ResponseDetailsList" minOccurs="1" maxOccurs="10"/>
  62.  
  63. <element name="responseCode" type="xsd:int" minOccurs="1" nillable="false"/>
  64.  
  65. <element name="responseCodeDescription" type="data:CodeDescriptionType" minOccurs="1" default=""/>
  66.  
  67. </sequence>
  68.  
  69. </complexType>
  70.  
  71. <complexType name="ResponseDetailsList">
  72.  
  73. <sequence>
  74.  
  75. <element name="telephoneNumber" type="data:TNDataType" minOccurs="1"/>
  76.  
  77. <element name="status" type="xsd:int" minOccurs="1"/>
  78.  
  79. <element name="holder" type="xsd:int" minOccurs="1"/>
  80.  
  81. <element name="modalityId" type="xsd:int" minOccurs="1"/>
  82.  
  83. <element name="serviceType" type="xsd:int" minOccurs="1"/>
  84.  
  85. <element name="outstandingTNAmount" type="xsd:long" minOccurs="1" default="0"/>
  86.  
  87. <element name="outstandingBillingId" type="data:BillingIDType" minOccurs="1" default=""/>
  88.  
  89. <element name="outstandingBillingDate" type="data:BillingDateType" minOccurs="0"/>
  90.  
  91. <element name="specialServiceType" type="xsd:int" minOccurs="1"/>
  92.  
  93. </sequence>
  94.  
  95. </complexType>
  96.  
  97. <complexType name="TNDetailsList">
  98.  
  99. <sequence>
  100.  
  101. <element name="telephoneNumber" type="data:TNDataType" minOccurs="1"/>
  102.  
  103. </sequence>
  104.  
  105. </complexType>
  106.  
  107. <simpleType name="RequestTransactionType">
  108.  
  109. <restriction base="xsd:string">
  110.  
  111. <xsd:minLength value="1"/>
  112.  
  113. <xsd:maxLength value="23"/>
  114.  
  115. </restriction>
  116.  
  117. </simpleType>
  118.  
  119. <simpleType name="TNDataType">
  120.  
  121. <restriction base="xsd:string">
  122.  
  123. <xsd:minLength value="0"/>
  124.  
  125. <xsd:maxLength value="12"/>
  126.  
  127. <pattern value="[0-9]*"/>
  128.  
  129. </restriction>
  130.  
  131. </simpleType>
  132.  
  133. <simpleType name="CodeDescriptionType">
  134.  
  135. <restriction base="xsd:string">
  136.  
  137. <xsd:minLength value="0"/>
  138.  
  139. <xsd:maxLength value="50"/>
  140.  
  141. </restriction>
  142.  
  143. </simpleType>
  144.  
  145. <simpleType name="BillingIDType">
  146.  
  147. <restriction base="xsd:string">
  148.  
  149. <xsd:minLength value="0"/>
  150.  
  151. <xsd:maxLength value="20"/>
  152.  
  153. </restriction>
  154.  
  155. </simpleType>
  156.  
  157. <simpleType name="RUTType">
  158.  
  159. <restriction base="xsd:string">
  160.  
  161. <xsd:minLength value="0"/>
  162.  
  163. <xsd:maxLength value="12"/>
  164.  
  165. </restriction>
  166.  
  167. </simpleType>
  168.  
  169. <simpleType name="OAPTxnIdType">
  170.  
  171. <restriction base="xsd:string">
  172.  
  173. <xsd:minLength value="1"/>
  174.  
  175. <xsd:maxLength value="23"/>
  176.  
  177. </restriction>
  178.  
  179. </simpleType>
  180.  
  181. <simpleType name="DateFormatType">
  182.  
  183. <restriction base="xsd:string">
  184.  
  185. <length value="14" fixed="true"/>
  186.  
  187. <pattern value="[0-9]*"/>
  188.  
  189. </restriction>
  190.  
  191. </simpleType>
  192.  
  193. <simpleType name="BillingDateType">
  194.  
  195. <restriction base="xsd:string">
  196.  
  197. <length value="8" fixed="true"/>
  198.  
  199. <pattern value="[0-9]*"/>
  200.  
  201. </restriction>
  202.  
  203. </simpleType>
  204.  
  205. <!-- operation request element -->
  206.  
  207. <element name="checkHolderBillingSynDonorRequest">
  208.  
  209. <complexType>
  210.  
  211. <sequence>
  212.  
  213. <element name="RequestMessageHeader" type="data:RequestMessageHeader"/>
  214.  
  215. <element name="checkHolderBillingSynDonorRequestBody" type="data:checkHolderBillingSynDonorRequestBody"/>
  216.  
  217. </sequence>
  218.  
  219. </complexType>
  220.  
  221. </element>
  222.  
  223. <!-- operation response element -->
  224.  
  225. <element name="checkHolderBillingSynDonorResponse">
  226.  
  227. <complexType>
  228.  
  229. <sequence>
  230.  
  231. <element name="ResponseMessageHeader" type="data:ResponseMessageHeader"/>
  232.  
  233. <element name="checkHolderBillingSynDonorResponseBody" type="data:checkHolderBillingSynDonorResponseBody"/>
  234.  
  235. </sequence>
  236.  
  237. </complexType>
  238.  
  239. </element>
  240.  
  241. </schema>
  242.  
  243. </WSDL:types>
  244.  
  245. <message name="checkHolderBillingSynDonorRequest">
  246.  
  247. <part name="parameters" element="data:checkHolderBillingSynDonorRequest"/>
  248.  
  249. </message>
  250.  
  251. <message name="checkHolderBillingSynDonorResponse">
  252.  
  253. <part name="parameters" element="data:checkHolderBillingSynDonorResponse"/>
  254.  
  255. </message>
  256.  
  257. <portType name="checkHolderBillingSynDonorRequestPortType">
  258.  
  259. <operation name="checkHolderBillingSynDonorRequest">
  260.  
  261. <documentation>Service definition of function
  262.  
  263. checkHolderBillingSynDonorRequest
  264.  
  265. </documentation>
  266.  
  267. <input message="tns:checkHolderBillingSynDonorRequest"/>
  268.  
  269. <output message="tns:checkHolderBillingSynDonorResponse"/>
  270.  
  271. </operation>
  272.  
  273. </portType>
  274.  
  275. <binding name="checkHolderBillingSynDonorRequestBinding" type="tns:checkHolderBillingSynDonorRequestPortType">
  276.  
  277. <SOAP:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
  278.  
  279. <operation name="checkHolderBillingSynDonorRequest">
  280.  
  281. <SOAP:operation soapAction="http://oap/services/checkHolderBillingSynDonorRequestService/checkHolderBillingSynDonorRequest"/>
  282.  
  283. <input>
  284.  
  285. <SOAP:body parts="parameters" use="literal"/>
  286.  
  287. </input>
  288.  
  289. <output>
  290.  
  291. <SOAP:body parts="parameters" use="literal"/>
  292.  
  293. </output>
  294.  
  295. </operation>
  296.  
  297. </binding>
  298.  
  299. <service name="checkHolderBillingSynDonorRequest">
  300.  
  301. <port name="checkHolderBillingSynDonorRequest" binding="tns:checkHolderBillingSynDonorRequestBinding">
  302.  
  303. <SOAP:address location="http://OAP:8081/OAP_CHECK_HOLDER_BILLING_SYNC_REQUEST/oapservice"/>
  304.  
  305. </port>
  306.  
  307. </service>
  308.  
  309. </definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement