vindata 0.0.1 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +1 -0
- data/lib/vindata/services/edmunds.rb +33 -17
- data/lib/vindata/services/nada.rb +139 -0
- data/lib/vindata/services.rb +2 -1
- data/lib/vindata/version.rb +1 -1
- data/lib/vindata/wsdls/ProdSecureLogin.wsdl +74 -0
- data/lib/vindata/wsdls/ProdVehicle.wsdl +1485 -0
- data/lib/vindata/wsdls/TestSecureLogin.wsdl +74 -0
- data/lib/vindata/wsdls/TestVehicle.wsdl +1485 -0
- data/lib/vindata.rb +1 -1
- metadata +9 -3
@@ -0,0 +1,74 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://webservice.nada.com/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://webservice.nada.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
3
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This is NADA Web Service into its Login methods.</wsdl:documentation>
|
4
|
+
<wsdl:types>
|
5
|
+
<s:schema elementFormDefault="qualified" targetNamespace="http://webservice.nada.com/">
|
6
|
+
<s:element name="getToken">
|
7
|
+
<s:complexType>
|
8
|
+
<s:sequence>
|
9
|
+
<s:element minOccurs="0" maxOccurs="1" name="tokenRequest" type="tns:GetTokenRequest" />
|
10
|
+
</s:sequence>
|
11
|
+
</s:complexType>
|
12
|
+
</s:element>
|
13
|
+
<s:complexType name="GetTokenRequest">
|
14
|
+
<s:sequence>
|
15
|
+
<s:element minOccurs="0" maxOccurs="1" name="Username" type="s:string" />
|
16
|
+
<s:element minOccurs="0" maxOccurs="1" name="Password" type="s:string" />
|
17
|
+
</s:sequence>
|
18
|
+
</s:complexType>
|
19
|
+
<s:element name="getTokenResponse">
|
20
|
+
<s:complexType>
|
21
|
+
<s:sequence>
|
22
|
+
<s:element minOccurs="0" maxOccurs="1" name="getTokenResult" type="s:string" />
|
23
|
+
</s:sequence>
|
24
|
+
</s:complexType>
|
25
|
+
</s:element>
|
26
|
+
</s:schema>
|
27
|
+
</wsdl:types>
|
28
|
+
<wsdl:message name="getTokenSoapIn">
|
29
|
+
<wsdl:part name="parameters" element="tns:getToken" />
|
30
|
+
</wsdl:message>
|
31
|
+
<wsdl:message name="getTokenSoapOut">
|
32
|
+
<wsdl:part name="parameters" element="tns:getTokenResponse" />
|
33
|
+
</wsdl:message>
|
34
|
+
<wsdl:portType name="SecureLoginSoap">
|
35
|
+
<wsdl:operation name="getToken">
|
36
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Logs the user in and returns a valid token.</wsdl:documentation>
|
37
|
+
<wsdl:input message="tns:getTokenSoapIn" />
|
38
|
+
<wsdl:output message="tns:getTokenSoapOut" />
|
39
|
+
</wsdl:operation>
|
40
|
+
</wsdl:portType>
|
41
|
+
<wsdl:binding name="SecureLoginSoap" type="tns:SecureLoginSoap">
|
42
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
43
|
+
<wsdl:operation name="getToken">
|
44
|
+
<soap:operation soapAction="http://webservice.nada.com/getToken" style="document" />
|
45
|
+
<wsdl:input>
|
46
|
+
<soap:body use="literal" />
|
47
|
+
</wsdl:input>
|
48
|
+
<wsdl:output>
|
49
|
+
<soap:body use="literal" />
|
50
|
+
</wsdl:output>
|
51
|
+
</wsdl:operation>
|
52
|
+
</wsdl:binding>
|
53
|
+
<wsdl:binding name="SecureLoginSoap12" type="tns:SecureLoginSoap">
|
54
|
+
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
55
|
+
<wsdl:operation name="getToken">
|
56
|
+
<soap12:operation soapAction="http://webservice.nada.com/getToken" style="document" />
|
57
|
+
<wsdl:input>
|
58
|
+
<soap12:body use="literal" />
|
59
|
+
</wsdl:input>
|
60
|
+
<wsdl:output>
|
61
|
+
<soap12:body use="literal" />
|
62
|
+
</wsdl:output>
|
63
|
+
</wsdl:operation>
|
64
|
+
</wsdl:binding>
|
65
|
+
<wsdl:service name="SecureLogin">
|
66
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This is NADA Web Service into its Login methods.</wsdl:documentation>
|
67
|
+
<wsdl:port name="SecureLoginSoap" binding="tns:SecureLoginSoap">
|
68
|
+
<soap:address location="https://internal.nada.com/NadaVehicle_WS/Secure/SecureLogin.asmx" />
|
69
|
+
</wsdl:port>
|
70
|
+
<wsdl:port name="SecureLoginSoap12" binding="tns:SecureLoginSoap12">
|
71
|
+
<soap12:address location="https://internal.nada.com/NadaVehicle_WS/Secure/SecureLogin.asmx" />
|
72
|
+
</wsdl:port>
|
73
|
+
</wsdl:service>
|
74
|
+
</wsdl:definitions>
|