You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

144 lines
7.5 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <wsdl:definitions xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://ws.cdyne.com/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://ws.cdyne.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  3. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Our system uses a multiple sources for resolution. Including a host database, trace route information, and other systems. Resolves IP addresses to Organization, Country, City, and State/Province, Latitude, Longitude. In most US cities it will also provide some extra information such as Area Code, and more.</wsdl:documentation>
  4. <wsdl:types>
  5. <s:schema elementFormDefault="qualified" targetNamespace="http://ws.cdyne.com/">
  6. <s:element name="ResolveIP">
  7. <s:complexType>
  8. <s:sequence>
  9. <s:element minOccurs="0" maxOccurs="1" name="ipAddress" type="s:string" />
  10. <s:element minOccurs="0" maxOccurs="1" name="licenseKey" type="s:string" />
  11. </s:sequence>
  12. </s:complexType>
  13. </s:element>
  14. <s:element name="ResolveIPResponse">
  15. <s:complexType>
  16. <s:sequence>
  17. <s:element minOccurs="0" maxOccurs="1" name="ResolveIPResult" type="tns:IPInformation" />
  18. </s:sequence>
  19. </s:complexType>
  20. </s:element>
  21. <s:complexType name="IPInformation">
  22. <s:sequence>
  23. <s:element minOccurs="0" maxOccurs="1" name="City" type="s:string" />
  24. <s:element minOccurs="0" maxOccurs="1" name="StateProvince" type="s:string" />
  25. <s:element minOccurs="0" maxOccurs="1" name="Country" type="s:string" />
  26. <s:element minOccurs="0" maxOccurs="1" name="Organization" type="s:string" />
  27. <s:element minOccurs="1" maxOccurs="1" name="Latitude" type="s:double" />
  28. <s:element minOccurs="1" maxOccurs="1" name="Longitude" type="s:double" />
  29. <s:element minOccurs="0" maxOccurs="1" name="AreaCode" type="s:string" />
  30. <s:element minOccurs="0" maxOccurs="1" name="TimeZone" type="s:string" />
  31. <s:element minOccurs="1" maxOccurs="1" name="HasDaylightSavings" type="s:boolean" />
  32. <s:element minOccurs="1" maxOccurs="1" name="Certainty" type="s:short" />
  33. <s:element minOccurs="0" maxOccurs="1" name="RegionName" type="s:string" />
  34. <s:element minOccurs="0" maxOccurs="1" name="CountryCode" type="s:string" />
  35. </s:sequence>
  36. </s:complexType>
  37. <s:element name="IPInformation" nillable="true" type="tns:IPInformation" />
  38. </s:schema>
  39. </wsdl:types>
  40. <wsdl:message name="ResolveIPSoapIn">
  41. <wsdl:part name="parameters" element="tns:ResolveIP" />
  42. </wsdl:message>
  43. <wsdl:message name="ResolveIPSoapOut">
  44. <wsdl:part name="parameters" element="tns:ResolveIPResponse" />
  45. </wsdl:message>
  46. <wsdl:message name="ResolveIPHttpGetIn">
  47. <wsdl:part name="ipAddress" type="s:string" />
  48. <wsdl:part name="licenseKey" type="s:string" />
  49. </wsdl:message>
  50. <wsdl:message name="ResolveIPHttpGetOut">
  51. <wsdl:part name="Body" element="tns:IPInformation" />
  52. </wsdl:message>
  53. <wsdl:message name="ResolveIPHttpPostIn">
  54. <wsdl:part name="ipAddress" type="s:string" />
  55. <wsdl:part name="licenseKey" type="s:string" />
  56. </wsdl:message>
  57. <wsdl:message name="ResolveIPHttpPostOut">
  58. <wsdl:part name="Body" element="tns:IPInformation" />
  59. </wsdl:message>
  60. <wsdl:portType name="IP2GeoSoap">
  61. <wsdl:operation name="ResolveIP">
  62. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Use a License Key of 0 for Testing</wsdl:documentation>
  63. <wsdl:input message="tns:ResolveIPSoapIn" />
  64. <wsdl:output message="tns:ResolveIPSoapOut" />
  65. </wsdl:operation>
  66. </wsdl:portType>
  67. <wsdl:portType name="IP2GeoHttpGet">
  68. <wsdl:operation name="ResolveIP">
  69. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Use a License Key of 0 for Testing</wsdl:documentation>
  70. <wsdl:input message="tns:ResolveIPHttpGetIn" />
  71. <wsdl:output message="tns:ResolveIPHttpGetOut" />
  72. </wsdl:operation>
  73. </wsdl:portType>
  74. <wsdl:portType name="IP2GeoHttpPost">
  75. <wsdl:operation name="ResolveIP">
  76. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Use a License Key of 0 for Testing</wsdl:documentation>
  77. <wsdl:input message="tns:ResolveIPHttpPostIn" />
  78. <wsdl:output message="tns:ResolveIPHttpPostOut" />
  79. </wsdl:operation>
  80. </wsdl:portType>
  81. <wsdl:binding name="IP2GeoSoap" type="tns:IP2GeoSoap">
  82. <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
  83. <wsdl:operation name="ResolveIP">
  84. <soap:operation soapAction="http://ws.cdyne.com/ResolveIP" style="document" />
  85. <wsdl:input>
  86. <soap:body use="literal" />
  87. </wsdl:input>
  88. <wsdl:output>
  89. <soap:body use="literal" />
  90. </wsdl:output>
  91. </wsdl:operation>
  92. </wsdl:binding>
  93. <wsdl:binding name="IP2GeoSoap12" type="tns:IP2GeoSoap">
  94. <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
  95. <wsdl:operation name="ResolveIP">
  96. <soap12:operation soapAction="http://ws.cdyne.com/ResolveIP" style="document" />
  97. <wsdl:input>
  98. <soap12:body use="literal" />
  99. </wsdl:input>
  100. <wsdl:output>
  101. <soap12:body use="literal" />
  102. </wsdl:output>
  103. </wsdl:operation>
  104. </wsdl:binding>
  105. <wsdl:binding name="IP2GeoHttpGet" type="tns:IP2GeoHttpGet">
  106. <http:binding verb="GET" />
  107. <wsdl:operation name="ResolveIP">
  108. <http:operation location="/ResolveIP" />
  109. <wsdl:input>
  110. <http:urlEncoded />
  111. </wsdl:input>
  112. <wsdl:output>
  113. <mime:mimeXml part="Body" />
  114. </wsdl:output>
  115. </wsdl:operation>
  116. </wsdl:binding>
  117. <wsdl:binding name="IP2GeoHttpPost" type="tns:IP2GeoHttpPost">
  118. <http:binding verb="POST" />
  119. <wsdl:operation name="ResolveIP">
  120. <http:operation location="/ResolveIP" />
  121. <wsdl:input>
  122. <mime:content type="application/x-www-form-urlencoded" />
  123. </wsdl:input>
  124. <wsdl:output>
  125. <mime:mimeXml part="Body" />
  126. </wsdl:output>
  127. </wsdl:operation>
  128. </wsdl:binding>
  129. <wsdl:service name="IP2Geo">
  130. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Our system uses a multiple sources for resolution. Including a host database, trace route information, and other systems. Resolves IP addresses to Organization, Country, City, and State/Province, Latitude, Longitude. In most US cities it will also provide some extra information such as Area Code, and more.</wsdl:documentation>
  131. <wsdl:port name="IP2GeoSoap" binding="tns:IP2GeoSoap">
  132. <soap:address location="http://ws.cdyne.com/ip2geo/ip2geo.asmx" />
  133. </wsdl:port>
  134. <wsdl:port name="IP2GeoSoap12" binding="tns:IP2GeoSoap12">
  135. <soap12:address location="http://ws.cdyne.com/ip2geo/ip2geo.asmx" />
  136. </wsdl:port>
  137. <wsdl:port name="IP2GeoHttpGet" binding="tns:IP2GeoHttpGet">
  138. <http:address location="http://ws.cdyne.com/ip2geo/ip2geo.asmx" />
  139. </wsdl:port>
  140. <wsdl:port name="IP2GeoHttpPost" binding="tns:IP2GeoHttpPost">
  141. <http:address location="http://ws.cdyne.com/ip2geo/ip2geo.asmx" />
  142. </wsdl:port>
  143. </wsdl:service>
  144. </wsdl:definitions>