sekken 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.travis.yml +11 -0
- data/.yardopts +6 -0
- data/CONTRIBUTING.md +46 -0
- data/Gemfile +27 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +21 -0
- data/donate.png +0 -0
- data/lib/sekken.rb +75 -0
- data/lib/sekken/envelope.rb +92 -0
- data/lib/sekken/errors.rb +9 -0
- data/lib/sekken/example_message.rb +41 -0
- data/lib/sekken/httpclient.rb +35 -0
- data/lib/sekken/importer.rb +77 -0
- data/lib/sekken/message.rb +135 -0
- data/lib/sekken/operation.rb +100 -0
- data/lib/sekken/resolver.rb +20 -0
- data/lib/sekken/response.rb +50 -0
- data/lib/sekken/version.rb +5 -0
- data/lib/sekken/wsdl.rb +86 -0
- data/lib/sekken/wsdl/binding.rb +64 -0
- data/lib/sekken/wsdl/binding_operation.rb +85 -0
- data/lib/sekken/wsdl/document.rb +83 -0
- data/lib/sekken/wsdl/document_collection.rb +61 -0
- data/lib/sekken/wsdl/input_output.rb +84 -0
- data/lib/sekken/wsdl/message.rb +38 -0
- data/lib/sekken/wsdl/operation.rb +47 -0
- data/lib/sekken/wsdl/port.rb +29 -0
- data/lib/sekken/wsdl/port_type.rb +38 -0
- data/lib/sekken/wsdl/port_type_operation.rb +42 -0
- data/lib/sekken/wsdl/service.rb +55 -0
- data/lib/sekken/xml/attribute.rb +13 -0
- data/lib/sekken/xml/element.rb +82 -0
- data/lib/sekken/xml/element_builder.rb +220 -0
- data/lib/sekken/xs/schema.rb +57 -0
- data/lib/sekken/xs/schema_collection.rb +49 -0
- data/lib/sekken/xs/types.rb +272 -0
- data/sekken.gemspec +42 -0
- data/spec/fixtures/response/another_soap_fault.xml +14 -0
- data/spec/fixtures/response/authentication.xml +14 -0
- data/spec/fixtures/response/header.xml +13 -0
- data/spec/fixtures/response/list.xml +18 -0
- data/spec/fixtures/response/multi_ref.xml +39 -0
- data/spec/fixtures/response/soap_fault.xml +8 -0
- data/spec/fixtures/response/soap_fault12.xml +18 -0
- data/spec/fixtures/response/taxcloud.xml +1 -0
- data/spec/fixtures/wsdl/amazon.wsdl +1920 -0
- data/spec/fixtures/wsdl/arrays_with_attributes.wsdl +117 -0
- data/spec/fixtures/wsdl/authentication.wsdl +63 -0
- data/spec/fixtures/wsdl/awse.wsdl +1510 -0
- data/spec/fixtures/wsdl/betfair.wsdl +2981 -0
- data/spec/fixtures/wsdl/blz_service.wsdl +88 -0
- data/spec/fixtures/wsdl/bookt/bookt.wsdl +11 -0
- data/spec/fixtures/wsdl/bookt/bookt0.xsd +433 -0
- data/spec/fixtures/wsdl/bookt/bookt1.xsd +42 -0
- data/spec/fixtures/wsdl/bookt/bookt10.xsd +38 -0
- data/spec/fixtures/wsdl/bookt/bookt11.xsd +17 -0
- data/spec/fixtures/wsdl/bookt/bookt12.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt13.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt14.xsd +27 -0
- data/spec/fixtures/wsdl/bookt/bookt15.xsd +28 -0
- data/spec/fixtures/wsdl/bookt/bookt2.wsdl +243 -0
- data/spec/fixtures/wsdl/bookt/bookt2.xsd +81 -0
- data/spec/fixtures/wsdl/bookt/bookt3.wsdl +286 -0
- data/spec/fixtures/wsdl/bookt/bookt3.xsd +61 -0
- data/spec/fixtures/wsdl/bookt/bookt4.xsd +35 -0
- data/spec/fixtures/wsdl/bookt/bookt5.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt6.xsd +26 -0
- data/spec/fixtures/wsdl/bookt/bookt7.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt8.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt9.xsd +29 -0
- data/spec/fixtures/wsdl/bronto.wsdl +3285 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange.wsdl +104 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange0.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange1.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.wsdl +119 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange3.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange4.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange5.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange6.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange7.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange8.xsd +1 -0
- data/spec/fixtures/wsdl/crowd.wsdl +2437 -0
- data/spec/fixtures/wsdl/data_exchange.wsdl +98 -0
- data/spec/fixtures/wsdl/document_literal_wrapped.wsdl +153 -0
- data/spec/fixtures/wsdl/economic.wsdl +65660 -0
- data/spec/fixtures/wsdl/edialog.wsdl +13148 -0
- data/spec/fixtures/wsdl/email_verification.wsdl +394 -0
- data/spec/fixtures/wsdl/equifax.wsdl +794 -0
- data/spec/fixtures/wsdl/geotrust.wsdl +156 -0
- data/spec/fixtures/wsdl/interhome.wsdl +2137 -0
- data/spec/fixtures/wsdl/iws.wsdl +695 -0
- data/spec/fixtures/wsdl/jetairways.wsdl +156 -0
- data/spec/fixtures/wsdl/jira.wsdl +3890 -0
- data/spec/fixtures/wsdl/juniper.wsdl +215 -0
- data/spec/fixtures/wsdl/namespaced_actions.wsdl +307 -0
- data/spec/fixtures/wsdl/oracle.wsdl +3629 -0
- data/spec/fixtures/wsdl/ratp.wsdl +955 -0
- data/spec/fixtures/wsdl/rio2/rio2.wsdl +74 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.wsdl +55 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.xsd +58 -0
- data/spec/fixtures/wsdl/rio2/rio2_1.xsd +41 -0
- data/spec/fixtures/wsdl/rio2/rio2_2.xsd +222 -0
- data/spec/fixtures/wsdl/rio2/rio2_3.xsd +10 -0
- data/spec/fixtures/wsdl/rpc_literal.wsdl +105 -0
- data/spec/fixtures/wsdl/spyne.wsdl +70 -0
- data/spec/fixtures/wsdl/stockquote.wsdl +124 -0
- data/spec/fixtures/wsdl/taxcloud.wsdl +934 -0
- data/spec/fixtures/wsdl/team_software/team_software.wsdl +542 -0
- data/spec/fixtures/wsdl/team_software/team_software0.xsd +448 -0
- data/spec/fixtures/wsdl/team_software/team_software1.xsd +41 -0
- data/spec/fixtures/wsdl/team_software/team_software2.xsd +258 -0
- data/spec/fixtures/wsdl/team_software/team_software3.xsd +14 -0
- data/spec/fixtures/wsdl/telefonkatalogen.wsdl +45 -0
- data/spec/fixtures/wsdl/temperature.wsdl +136 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth.wsdl +157 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth1.xsd +210 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth2.xsd +549 -0
- data/spec/fixtures/wsdl/xignite.wsdl +3470 -0
- data/spec/fixtures/wsdl/yahoo.wsdl +2425 -0
- data/spec/fixtures/wsdl/zanox_export_service.xml +520 -0
- data/spec/integration/amazon_spec.rb +51 -0
- data/spec/integration/authentication_spec.rb +38 -0
- data/spec/integration/awse_spec.rb +95 -0
- data/spec/integration/betfair_spec.rb +179 -0
- data/spec/integration/blz_service_spec.rb +46 -0
- data/spec/integration/bookt_spec.rb +59 -0
- data/spec/integration/bronto_spec.rb +178 -0
- data/spec/integration/bydexchange_spec.rb +40 -0
- data/spec/integration/crowd_spec.rb +44 -0
- data/spec/integration/data_exchange_spec.rb +27 -0
- data/spec/integration/document_literal_spec.rb +104 -0
- data/spec/integration/economic_spec.rb +64 -0
- data/spec/integration/email_verification_spec.rb +82 -0
- data/spec/integration/equifax_spec.rb +216 -0
- data/spec/integration/geotrust_spec.rb +17 -0
- data/spec/integration/interhome_spec.rb +156 -0
- data/spec/integration/iws_spec.rb +27 -0
- data/spec/integration/jetairways_spec.rb +142 -0
- data/spec/integration/jira_spec.rb +27 -0
- data/spec/integration/juniper_spec.rb +20 -0
- data/spec/integration/namespaced_actions_spec.rb +37 -0
- data/spec/integration/oracle_spec.rb +61 -0
- data/spec/integration/ratp_spec.rb +178 -0
- data/spec/integration/rio2_spec.rb +56 -0
- data/spec/integration/rpc_literal_spec.rb +101 -0
- data/spec/integration/spyne_spec.rb +60 -0
- data/spec/integration/stockquote_spec.rb +46 -0
- data/spec/integration/taxcloud_spec.rb +45 -0
- data/spec/integration/team_software_spec.rb +51 -0
- data/spec/integration/telefonkatalogen_spec.rb +42 -0
- data/spec/integration/temperature_spec.rb +71 -0
- data/spec/integration/wasmuth_spec.rb +47 -0
- data/spec/integration/xignite_spec.rb +112 -0
- data/spec/integration/yahoo_spec.rb +116 -0
- data/spec/sekken/httpclient_spec.rb +41 -0
- data/spec/sekken/operation/build_spec.rb +308 -0
- data/spec/sekken/operation/document_literal_spec.rb +53 -0
- data/spec/sekken/operation/example_body_spec.rb +95 -0
- data/spec/sekken/operation/rpc_literal_spec.rb +50 -0
- data/spec/sekken/operation_spec.rb +169 -0
- data/spec/sekken/resolver_spec.rb +38 -0
- data/spec/sekken/response_spec.rb +17 -0
- data/spec/sekken/wsdl/document_spec.rb +191 -0
- data/spec/sekken/wsdl_spec.rb +46 -0
- data/spec/sekken/xs/complex_type_spec.rb +197 -0
- data/spec/sekken/xs/element_spec.rb +82 -0
- data/spec/sekken/xs/simple_type_spec.rb +39 -0
- data/spec/sekken_spec.rb +128 -0
- data/spec/spec_helper.rb +37 -0
- data/spec/support/fixture.rb +19 -0
- data/spec/support/http_mock.rb +43 -0
- metadata +344 -0
@@ -0,0 +1,695 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="IWSIntegERPservice" targetNamespace="http://tempuri.org/" xmlns:tns="http://tempuri.org/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:ns1="urn:WSIntegERPIntf" xmlns:ns2="urn:">
|
3
|
+
<types>
|
4
|
+
<xs:schema targetNamespace="urn:WSIntegERPIntf" xmlns="urn:WSIntegERPIntf">
|
5
|
+
<xs:complexType name="TLogin">
|
6
|
+
<xs:sequence>
|
7
|
+
<xs:element name="Usu_Codigo" type="xs:int"/>
|
8
|
+
<xs:element name="Usu_Login" type="xs:string"/>
|
9
|
+
<xs:element name="Usu_Senha" type="xs:string"/>
|
10
|
+
<xs:element name="IP" type="xs:string"/>
|
11
|
+
<xs:element name="Apl_Codigo" type="xs:int"/>
|
12
|
+
<xs:element name="Mensagem" type="ns1:TMensagem"/>
|
13
|
+
<xs:element name="Pes_Codigo_Principal" type="xs:int"/>
|
14
|
+
</xs:sequence>
|
15
|
+
</xs:complexType>
|
16
|
+
<xs:complexType name="TMensagem">
|
17
|
+
<xs:sequence>
|
18
|
+
<xs:element name="Men_Codigo" type="xs:int"/>
|
19
|
+
<xs:element name="Men_Descricao" type="xs:string"/>
|
20
|
+
</xs:sequence>
|
21
|
+
</xs:complexType>
|
22
|
+
<xs:complexType name="TTrajeto">
|
23
|
+
<xs:sequence>
|
24
|
+
<xs:element name="Condutor" type="ns1:TLista_Condutor"/>
|
25
|
+
<xs:element name="Entidade" type="ns1:TEntidade"/>
|
26
|
+
<xs:element name="Reboque" type="ns1:TLista_Entidade"/>
|
27
|
+
<xs:element name="Origem" type="ns1:TTrajeto_Ponto_Controle"/>
|
28
|
+
<xs:element name="Coleta" type="ns1:TLista_Trajeto_Ponto_Controle"/>
|
29
|
+
<xs:element name="Entrega" type="ns1:TLista_Trajeto_Ponto_Controle"/>
|
30
|
+
<xs:element name="Destino" type="ns1:TTrajeto_Ponto_Controle"/>
|
31
|
+
<xs:element name="TSt_Codigo" type="xs:int"/>
|
32
|
+
<xs:element name="TAt_Vin_Externo" type="xs:string"/>
|
33
|
+
<xs:element name="MGR_Codigo" type="xs:int"/>
|
34
|
+
<xs:element name="Login" type="ns1:TLogin"/>
|
35
|
+
<xs:element name="Embarcador" type="ns1:TPessoa"/>
|
36
|
+
<xs:element name="Fre_Nome" type="xs:string"/>
|
37
|
+
<xs:element name="Servico" type="ns1:TLista_Servico"/>
|
38
|
+
<xs:element name="Carga" type="ns1:TCarga"/>
|
39
|
+
<xs:element name="TAt_Vin_Externo2" type="xs:string"/>
|
40
|
+
<xs:element name="Operacao" type="ns1:TLista_Operacao"/>
|
41
|
+
<xs:element name="Usuario" type="ns1:TUsuario"/>
|
42
|
+
<xs:element name="TAt_Tra_Time" type="xs:double"/>
|
43
|
+
</xs:sequence>
|
44
|
+
</xs:complexType>
|
45
|
+
<xs:complexType name="TLista_Condutor">
|
46
|
+
<xs:complexContent>
|
47
|
+
<xs:restriction base="soapenc:Array">
|
48
|
+
<xs:sequence/>
|
49
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TCondutor[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
50
|
+
</xs:restriction>
|
51
|
+
</xs:complexContent>
|
52
|
+
</xs:complexType>
|
53
|
+
<xs:complexType name="TEntidade">
|
54
|
+
<xs:sequence>
|
55
|
+
<xs:element name="Ent_Identificador" type="xs:string"/>
|
56
|
+
<xs:element name="Ent_Numero" type="xs:string"/>
|
57
|
+
<xs:element name="TEn_Codigo" type="xs:int"/>
|
58
|
+
<xs:element name="Mar_Descricao" type="xs:string"/>
|
59
|
+
<xs:element name="Mod_Descricao" type="xs:string"/>
|
60
|
+
<xs:element name="TiR_Descricao" type="xs:string"/>
|
61
|
+
<xs:element name="EAt_Cor" type="xs:string"/>
|
62
|
+
<xs:element name="EAt_Ano" type="xs:int"/>
|
63
|
+
<xs:element name="EAt_Ano_Modelo" type="xs:int"/>
|
64
|
+
<xs:element name="EAt_Qtd_Eixo" type="xs:int"/>
|
65
|
+
<xs:element name="EAt_Renavan" type="xs:string"/>
|
66
|
+
<xs:element name="EAt_Observacao" type="xs:string"/>
|
67
|
+
<xs:element name="Pessoa" type="ns1:TPessoa"/>
|
68
|
+
<xs:element name="Equipamento" type="ns1:TLista_Equipamento"/>
|
69
|
+
<xs:element name="Grupo" type="ns1:TLista_Grupo"/>
|
70
|
+
<xs:element name="Grupo_Operacao" type="ns1:TLista_Grupo"/>
|
71
|
+
<xs:element name="Operacao" type="ns1:TOperacao"/>
|
72
|
+
<xs:element name="Entidade_Pessoa" type="ns1:TEntidade_Pessoa"/>
|
73
|
+
<xs:element name="Medida" type="ns1:TLista_Medida"/>
|
74
|
+
<xs:element name="MGR_Codigo_Default" type="xs:int"/>
|
75
|
+
<xs:element name="Status" type="ns1:TLista_Status"/>
|
76
|
+
<xs:element name="ERe_Sequencia" type="xs:int"/>
|
77
|
+
</xs:sequence>
|
78
|
+
</xs:complexType>
|
79
|
+
<xs:complexType name="TPessoa">
|
80
|
+
<xs:sequence>
|
81
|
+
<xs:element name="Pes_Nome" type="xs:string"/>
|
82
|
+
<xs:element name="PAt_Email" type="xs:string"/>
|
83
|
+
<xs:element name="PAt_Obs" type="xs:string"/>
|
84
|
+
<xs:element name="PAF_CPF" type="xs:string"/>
|
85
|
+
<xs:element name="PAJ_CNPJ" type="xs:string"/>
|
86
|
+
<xs:element name="Parametro" type="ns1:TParametro"/>
|
87
|
+
<xs:element name="Endereco" type="ns1:TEndereco"/>
|
88
|
+
<xs:element name="Usuario" type="ns1:TUsuario"/>
|
89
|
+
</xs:sequence>
|
90
|
+
</xs:complexType>
|
91
|
+
<xs:complexType name="TParametro">
|
92
|
+
<xs:sequence>
|
93
|
+
<xs:element name="Par_Codigo" type="xs:int"/>
|
94
|
+
<xs:element name="PVa_Vlr_Principal" type="xs:string"/>
|
95
|
+
</xs:sequence>
|
96
|
+
</xs:complexType>
|
97
|
+
<xs:complexType name="TEndereco">
|
98
|
+
<xs:sequence>
|
99
|
+
<xs:element name="End_Telefone" type="xs:string"/>
|
100
|
+
<xs:element name="End_Celular" type="xs:string"/>
|
101
|
+
<xs:element name="End_Rua" type="xs:string"/>
|
102
|
+
<xs:element name="End_Numero" type="xs:string"/>
|
103
|
+
<xs:element name="End_Complemento" type="xs:string"/>
|
104
|
+
<xs:element name="End_Bairro" type="xs:string"/>
|
105
|
+
<xs:element name="End_Cid_Nome" type="xs:string"/>
|
106
|
+
<xs:element name="End_Est_Sigla" type="xs:string"/>
|
107
|
+
<xs:element name="End_CEP" type="xs:string"/>
|
108
|
+
<xs:element name="End_Latitude" type="xs:double"/>
|
109
|
+
<xs:element name="End_Longitude" type="xs:double"/>
|
110
|
+
</xs:sequence>
|
111
|
+
</xs:complexType>
|
112
|
+
<xs:complexType name="TUsuario">
|
113
|
+
<xs:sequence>
|
114
|
+
<xs:element name="Usu_Nome" type="xs:string"/>
|
115
|
+
<xs:element name="Login" type="ns1:TLogin"/>
|
116
|
+
<xs:element name="Per_Codigo" type="xs:int"/>
|
117
|
+
</xs:sequence>
|
118
|
+
</xs:complexType>
|
119
|
+
<xs:complexType name="TLista_Equipamento">
|
120
|
+
<xs:complexContent>
|
121
|
+
<xs:restriction base="soapenc:Array">
|
122
|
+
<xs:sequence/>
|
123
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TEquipamento[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
124
|
+
</xs:restriction>
|
125
|
+
</xs:complexContent>
|
126
|
+
</xs:complexType>
|
127
|
+
<xs:complexType name="TLista_Grupo">
|
128
|
+
<xs:complexContent>
|
129
|
+
<xs:restriction base="soapenc:Array">
|
130
|
+
<xs:sequence/>
|
131
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TGrupo[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
132
|
+
</xs:restriction>
|
133
|
+
</xs:complexContent>
|
134
|
+
</xs:complexType>
|
135
|
+
<xs:complexType name="TOperacao">
|
136
|
+
<xs:sequence>
|
137
|
+
<xs:element name="Ope_Descricao" type="xs:string"/>
|
138
|
+
<xs:element name="Ope_Cod_Externo" type="xs:int"/>
|
139
|
+
</xs:sequence>
|
140
|
+
</xs:complexType>
|
141
|
+
<xs:complexType name="TEntidade_Pessoa">
|
142
|
+
<xs:sequence>
|
143
|
+
<xs:element name="TEP_Codigo" type="xs:int"/>
|
144
|
+
<xs:element name="TEP_Descricao" type="xs:string"/>
|
145
|
+
</xs:sequence>
|
146
|
+
</xs:complexType>
|
147
|
+
<xs:complexType name="TLista_Medida">
|
148
|
+
<xs:complexContent>
|
149
|
+
<xs:restriction base="soapenc:Array">
|
150
|
+
<xs:sequence/>
|
151
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TMedida[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
152
|
+
</xs:restriction>
|
153
|
+
</xs:complexContent>
|
154
|
+
</xs:complexType>
|
155
|
+
<xs:complexType name="TLista_Status">
|
156
|
+
<xs:complexContent>
|
157
|
+
<xs:restriction base="soapenc:Array">
|
158
|
+
<xs:sequence/>
|
159
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TStatus[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
160
|
+
</xs:restriction>
|
161
|
+
</xs:complexContent>
|
162
|
+
</xs:complexType>
|
163
|
+
<xs:complexType name="TLista_Entidade">
|
164
|
+
<xs:complexContent>
|
165
|
+
<xs:restriction base="soapenc:Array">
|
166
|
+
<xs:sequence/>
|
167
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TEntidade[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
168
|
+
</xs:restriction>
|
169
|
+
</xs:complexContent>
|
170
|
+
</xs:complexType>
|
171
|
+
<xs:complexType name="TTrajeto_Ponto_Controle">
|
172
|
+
<xs:sequence>
|
173
|
+
<xs:element name="Ponto_Controle" type="ns1:TPonto_Controle"/>
|
174
|
+
<xs:element name="TPC_Sequencia" type="xs:int"/>
|
175
|
+
<xs:element name="TPC_Dat_Pre_Chegada" type="xs:dateTime"/>
|
176
|
+
<xs:element name="TPC_Dat_Pre_Saida" type="xs:dateTime"/>
|
177
|
+
<xs:element name="TPC_Dat_Chegada" type="xs:dateTime"/>
|
178
|
+
<xs:element name="TPC_Dat_Saida" type="xs:dateTime"/>
|
179
|
+
<xs:element name="Entrega_Coleta" type="ns1:TEntrega_Coleta"/>
|
180
|
+
</xs:sequence>
|
181
|
+
</xs:complexType>
|
182
|
+
<xs:complexType name="TPonto_Controle">
|
183
|
+
<xs:sequence>
|
184
|
+
<xs:element name="PPC_Codigo" type="xs:int"/>
|
185
|
+
<xs:element name="PPC_Descricao" type="xs:string"/>
|
186
|
+
<xs:element name="PPC_Raio" type="xs:double"/>
|
187
|
+
<xs:element name="TPO_Codigo" type="xs:int"/>
|
188
|
+
<xs:element name="Cliente" type="ns1:TCliente"/>
|
189
|
+
<xs:element name="Janela" type="ns1:TListaJanela"/>
|
190
|
+
</xs:sequence>
|
191
|
+
</xs:complexType>
|
192
|
+
<xs:complexType name="TCliente">
|
193
|
+
<xs:sequence>
|
194
|
+
<xs:element name="Cli_CNPJ" type="xs:string"/>
|
195
|
+
<xs:element name="Cli_Nome" type="xs:string"/>
|
196
|
+
<xs:element name="Endereco" type="ns1:TEndereco"/>
|
197
|
+
</xs:sequence>
|
198
|
+
</xs:complexType>
|
199
|
+
<xs:complexType name="TListaJanela">
|
200
|
+
<xs:complexContent>
|
201
|
+
<xs:restriction base="soapenc:Array">
|
202
|
+
<xs:sequence/>
|
203
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TJanela[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
204
|
+
</xs:restriction>
|
205
|
+
</xs:complexContent>
|
206
|
+
</xs:complexType>
|
207
|
+
<xs:complexType name="TEntrega_Coleta">
|
208
|
+
<xs:sequence>
|
209
|
+
<xs:element name="Documento" type="ns1:TListaDocumento"/>
|
210
|
+
</xs:sequence>
|
211
|
+
</xs:complexType>
|
212
|
+
<xs:complexType name="TListaDocumento">
|
213
|
+
<xs:complexContent>
|
214
|
+
<xs:restriction base="soapenc:Array">
|
215
|
+
<xs:sequence/>
|
216
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TDocumento[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
217
|
+
</xs:restriction>
|
218
|
+
</xs:complexContent>
|
219
|
+
</xs:complexType>
|
220
|
+
<xs:complexType name="TLista_Trajeto_Ponto_Controle">
|
221
|
+
<xs:complexContent>
|
222
|
+
<xs:restriction base="soapenc:Array">
|
223
|
+
<xs:sequence/>
|
224
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TTrajeto_Ponto_Controle[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
225
|
+
</xs:restriction>
|
226
|
+
</xs:complexContent>
|
227
|
+
</xs:complexType>
|
228
|
+
<xs:complexType name="TLista_Servico">
|
229
|
+
<xs:complexContent>
|
230
|
+
<xs:restriction base="soapenc:Array">
|
231
|
+
<xs:sequence/>
|
232
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TServico[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
233
|
+
</xs:restriction>
|
234
|
+
</xs:complexContent>
|
235
|
+
</xs:complexType>
|
236
|
+
<xs:complexType name="TCarga">
|
237
|
+
<xs:sequence>
|
238
|
+
<xs:element name="TCa_Carga" type="xs:string"/>
|
239
|
+
</xs:sequence>
|
240
|
+
</xs:complexType>
|
241
|
+
<xs:complexType name="TLista_Operacao">
|
242
|
+
<xs:complexContent>
|
243
|
+
<xs:restriction base="soapenc:Array">
|
244
|
+
<xs:sequence/>
|
245
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TOperacao[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
246
|
+
</xs:restriction>
|
247
|
+
</xs:complexContent>
|
248
|
+
</xs:complexType>
|
249
|
+
<xs:complexType name="TCondutor">
|
250
|
+
<xs:sequence>
|
251
|
+
<xs:element name="Pes_Nome" type="xs:string"/>
|
252
|
+
<xs:element name="PAF_CPF" type="xs:string"/>
|
253
|
+
<xs:element name="PAF_RG" type="xs:string"/>
|
254
|
+
<xs:element name="PAF_CNH" type="xs:string"/>
|
255
|
+
<xs:element name="Endereco" type="ns1:TEndereco"/>
|
256
|
+
<xs:element name="PessoaRelacao" type="ns1:TPessoa_Relacao"/>
|
257
|
+
<xs:element name="PMo_Senha" type="xs:string"/>
|
258
|
+
<xs:element name="PMo_Dat_Treinamento" type="ns2:TDate"/>
|
259
|
+
<xs:element name="PMo_Ult_Folga" type="ns2:TDate"/>
|
260
|
+
<xs:element name="PMo_Matricula" type="xs:string"/>
|
261
|
+
</xs:sequence>
|
262
|
+
</xs:complexType>
|
263
|
+
<xs:complexType name="TPessoa_Relacao">
|
264
|
+
<xs:sequence>
|
265
|
+
<xs:element name="TPR_Codigo" type="xs:int"/>
|
266
|
+
<xs:element name="TPR_Descricao" type="xs:string"/>
|
267
|
+
</xs:sequence>
|
268
|
+
</xs:complexType>
|
269
|
+
<xs:complexType name="TEquipamento">
|
270
|
+
<xs:sequence>
|
271
|
+
<xs:element name="Equ_Nome" type="xs:string"/>
|
272
|
+
<xs:element name="EqV_Descricao" type="xs:string"/>
|
273
|
+
<xs:element name="EEV_MCT" type="xs:long"/>
|
274
|
+
<xs:element name="EEV_Seq_Prioridade" type="xs:int"/>
|
275
|
+
<xs:element name="EEV_Nro_Chip" type="xs:int"/>
|
276
|
+
</xs:sequence>
|
277
|
+
</xs:complexType>
|
278
|
+
<xs:complexType name="TGrupo">
|
279
|
+
<xs:sequence>
|
280
|
+
<xs:element name="Gru_Nome" type="xs:string"/>
|
281
|
+
<xs:element name="Gru_Cod_Externo" type="xs:int"/>
|
282
|
+
<xs:element name="TGr_Codigo" type="xs:int"/>
|
283
|
+
</xs:sequence>
|
284
|
+
</xs:complexType>
|
285
|
+
<xs:complexType name="TMedida">
|
286
|
+
<xs:sequence/>
|
287
|
+
</xs:complexType>
|
288
|
+
<xs:complexType name="TStatus">
|
289
|
+
<xs:sequence>
|
290
|
+
<xs:element name="Sta_Codigo" type="xs:int"/>
|
291
|
+
<xs:element name="Sta_Descricao" type="xs:string"/>
|
292
|
+
<xs:element name="ESt_Dat_Inicio" type="xs:dateTime"/>
|
293
|
+
<xs:element name="ESt_Dat_Fim" type="xs:dateTime"/>
|
294
|
+
</xs:sequence>
|
295
|
+
</xs:complexType>
|
296
|
+
<xs:complexType name="TJanela">
|
297
|
+
<xs:sequence>
|
298
|
+
<xs:element name="Hor_Inicio" type="xs:double"/>
|
299
|
+
<xs:element name="Hor_Fim" type="xs:double"/>
|
300
|
+
<xs:element name="Rota" type="ns1:TRota"/>
|
301
|
+
</xs:sequence>
|
302
|
+
</xs:complexType>
|
303
|
+
<xs:complexType name="TRota">
|
304
|
+
<xs:sequence>
|
305
|
+
<xs:element name="Rot_Nome" type="xs:string"/>
|
306
|
+
<xs:element name="PPC_Codigo_Origem" type="xs:int"/>
|
307
|
+
<xs:element name="PPC_Codigo_Destino" type="xs:int"/>
|
308
|
+
<xs:element name="Usu_Codigo" type="xs:int"/>
|
309
|
+
</xs:sequence>
|
310
|
+
</xs:complexType>
|
311
|
+
<xs:complexType name="TDocumento">
|
312
|
+
<xs:sequence>
|
313
|
+
<xs:element name="Pedido" type="ns1:TListaPedido"/>
|
314
|
+
</xs:sequence>
|
315
|
+
</xs:complexType>
|
316
|
+
<xs:complexType name="TListaPedido">
|
317
|
+
<xs:complexContent>
|
318
|
+
<xs:restriction base="soapenc:Array">
|
319
|
+
<xs:sequence/>
|
320
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TPedido[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
321
|
+
</xs:restriction>
|
322
|
+
</xs:complexContent>
|
323
|
+
</xs:complexType>
|
324
|
+
<xs:complexType name="TPedido">
|
325
|
+
<xs:sequence>
|
326
|
+
<xs:element name="Ped_Cod_Externo" type="xs:string"/>
|
327
|
+
<xs:element name="Nota_Fiscal" type="ns1:TListaNota_Fiscal"/>
|
328
|
+
<xs:element name="Ped_Cod_Cli_Venda" type="xs:string"/>
|
329
|
+
<xs:element name="Ped_Cod_Esc_Venda" type="xs:string"/>
|
330
|
+
<xs:element name="Ped_Cod_Age_Venda" type="xs:string"/>
|
331
|
+
</xs:sequence>
|
332
|
+
</xs:complexType>
|
333
|
+
<xs:complexType name="TListaNota_Fiscal">
|
334
|
+
<xs:complexContent>
|
335
|
+
<xs:restriction base="soapenc:Array">
|
336
|
+
<xs:sequence/>
|
337
|
+
<xs:attribute ref="soapenc:arrayType" n1:arrayType="ns1:TNota_Fiscal[]" xmlns:n1="http://schemas.xmlsoap.org/wsdl/"/>
|
338
|
+
</xs:restriction>
|
339
|
+
</xs:complexContent>
|
340
|
+
</xs:complexType>
|
341
|
+
<xs:complexType name="TNota_Fiscal">
|
342
|
+
<xs:sequence>
|
343
|
+
<xs:element name="NFS_Numero" type="xs:int"/>
|
344
|
+
<xs:element name="NFS_Valor" type="xs:double"/>
|
345
|
+
<xs:element name="NFS_Shipment" type="xs:string"/>
|
346
|
+
<xs:element name="NFS_Serie" type="xs:string"/>
|
347
|
+
<xs:element name="Med_Codigo" type="xs:int"/>
|
348
|
+
<xs:element name="NFM_Vlr_Medida" type="xs:double"/>
|
349
|
+
</xs:sequence>
|
350
|
+
</xs:complexType>
|
351
|
+
<xs:complexType name="TServico">
|
352
|
+
<xs:sequence>
|
353
|
+
<xs:element name="Ser_Nome" type="xs:string"/>
|
354
|
+
</xs:sequence>
|
355
|
+
</xs:complexType>
|
356
|
+
</xs:schema>
|
357
|
+
</types>
|
358
|
+
<message name="Autenticacao0Request">
|
359
|
+
<part name="Login" type="ns1:TLogin"/>
|
360
|
+
</message>
|
361
|
+
<message name="Autenticacao0Response">
|
362
|
+
<part name="return" type="ns1:TLogin"/>
|
363
|
+
</message>
|
364
|
+
<message name="InsereTrajeto1Request">
|
365
|
+
<part name="Trajeto" type="ns1:TTrajeto"/>
|
366
|
+
</message>
|
367
|
+
<message name="InsereTrajeto1Response">
|
368
|
+
<part name="return" type="ns1:TMensagem"/>
|
369
|
+
</message>
|
370
|
+
<message name="InsereEntidade2Request">
|
371
|
+
<part name="Entidade" type="ns1:TEntidade"/>
|
372
|
+
<part name="Condutor" type="ns1:TLista_Condutor"/>
|
373
|
+
<part name="Login" type="ns1:TLogin"/>
|
374
|
+
</message>
|
375
|
+
<message name="InsereEntidade2Response">
|
376
|
+
<part name="return" type="xs:int"/>
|
377
|
+
</message>
|
378
|
+
<message name="InsereTrajetoXml3Request">
|
379
|
+
<part name="XML" type="xs:string"/>
|
380
|
+
</message>
|
381
|
+
<message name="InsereTrajetoXml3Response">
|
382
|
+
<part name="return" type="xs:string"/>
|
383
|
+
</message>
|
384
|
+
<message name="InsereEntidadeXml4Request">
|
385
|
+
<part name="XML" type="xs:string"/>
|
386
|
+
</message>
|
387
|
+
<message name="InsereEntidadeXml4Response">
|
388
|
+
<part name="return" type="xs:string"/>
|
389
|
+
</message>
|
390
|
+
<message name="InsereUsuarioXml5Request">
|
391
|
+
<part name="XML" type="xs:string"/>
|
392
|
+
</message>
|
393
|
+
<message name="InsereUsuarioXml5Response">
|
394
|
+
<part name="return" type="xs:string"/>
|
395
|
+
</message>
|
396
|
+
<message name="AtualizaTrajeto6Request">
|
397
|
+
<part name="Login" type="ns1:TLogin"/>
|
398
|
+
<part name="Id_Trajeto" type="xs:string"/>
|
399
|
+
<part name="TAt_Codigo" type="xs:int"/>
|
400
|
+
<part name="Tipo_Atualizacao" type="xs:int"/>
|
401
|
+
</message>
|
402
|
+
<message name="AtualizaTrajeto6Response">
|
403
|
+
<part name="return" type="ns1:TMensagem"/>
|
404
|
+
</message>
|
405
|
+
<message name="FinalizaTrajeto7Request">
|
406
|
+
<part name="Login" type="ns1:TLogin"/>
|
407
|
+
<part name="Id_Trajeto" type="xs:string"/>
|
408
|
+
<part name="Tipo_Finalizacao" type="xs:int"/>
|
409
|
+
</message>
|
410
|
+
<message name="FinalizaTrajeto7Response">
|
411
|
+
<part name="return" type="ns1:TMensagem"/>
|
412
|
+
</message>
|
413
|
+
<message name="AtualizaTrajeto_Entidade8Request">
|
414
|
+
<part name="Login" type="ns1:TLogin"/>
|
415
|
+
<part name="Id_Trajeto" type="xs:string"/>
|
416
|
+
<part name="Ent_Identificador" type="xs:string"/>
|
417
|
+
<part name="Tipo_Atualizacao" type="xs:int"/>
|
418
|
+
</message>
|
419
|
+
<message name="AtualizaTrajeto_Entidade8Response">
|
420
|
+
<part name="return" type="ns1:TMensagem"/>
|
421
|
+
</message>
|
422
|
+
<message name="BuscaTrajeto9Request">
|
423
|
+
<part name="Login" type="ns1:TLogin"/>
|
424
|
+
<part name="Id_Trajeto" type="xs:string"/>
|
425
|
+
</message>
|
426
|
+
<message name="BuscaTrajeto9Response">
|
427
|
+
<part name="return" type="ns1:TTrajeto"/>
|
428
|
+
</message>
|
429
|
+
<message name="BuscaLocalizacao10Request">
|
430
|
+
<part name="Latitude" type="xs:double"/>
|
431
|
+
<part name="Longitude" type="xs:double"/>
|
432
|
+
<part name="MCT" type="xs:int"/>
|
433
|
+
</message>
|
434
|
+
<message name="BuscaLocalizacao10Response">
|
435
|
+
<part name="return" type="xs:string"/>
|
436
|
+
</message>
|
437
|
+
<message name="ReprogramarPonto11Request">
|
438
|
+
<part name="Login" type="ns1:TLogin"/>
|
439
|
+
<part name="Id_Trajeto" type="xs:string"/>
|
440
|
+
<part name="CNPJPonto" type="xs:string"/>
|
441
|
+
<part name="TPC_Dat_Pre_Chegada" type="xs:dateTime"/>
|
442
|
+
<part name="TPC_Dat_Pre_Saida" type="xs:dateTime"/>
|
443
|
+
</message>
|
444
|
+
<message name="ReprogramarPonto11Response">
|
445
|
+
<part name="return" type="ns1:TMensagem"/>
|
446
|
+
</message>
|
447
|
+
<message name="BuscaNCTrajeto12Request">
|
448
|
+
<part name="Login" type="ns1:TLogin"/>
|
449
|
+
<part name="IdNC" type="xs:int"/>
|
450
|
+
</message>
|
451
|
+
<message name="BuscaNCTrajeto12Response">
|
452
|
+
<part name="return" type="ns1:TMensagem"/>
|
453
|
+
</message>
|
454
|
+
<message name="BuscaNCTrajeto213Request">
|
455
|
+
<part name="Login" type="ns1:TLogin"/>
|
456
|
+
<part name="IdNC" type="xs:int"/>
|
457
|
+
</message>
|
458
|
+
<message name="BuscaNCTrajeto213Response">
|
459
|
+
<part name="return" type="ns1:TMensagem"/>
|
460
|
+
</message>
|
461
|
+
<message name="BuscaTrajetoAtributo14Request">
|
462
|
+
<part name="Login" type="ns1:TLogin"/>
|
463
|
+
<part name="Id_Trajeto" type="xs:string"/>
|
464
|
+
</message>
|
465
|
+
<message name="BuscaTrajetoAtributo14Response">
|
466
|
+
<part name="return" type="ns1:TMensagem"/>
|
467
|
+
</message>
|
468
|
+
<message name="InsereAlerta15Request">
|
469
|
+
<part name="Login" type="ns1:TLogin"/>
|
470
|
+
<part name="Ent_Identificador" type="xs:string"/>
|
471
|
+
<part name="Ale_Descricao" type="xs:string"/>
|
472
|
+
<part name="TAl_Codigo" type="xs:int"/>
|
473
|
+
</message>
|
474
|
+
<message name="InsereAlerta15Response">
|
475
|
+
<part name="return" type="ns1:TMensagem"/>
|
476
|
+
</message>
|
477
|
+
<portType name="IWSIntegERP">
|
478
|
+
<operation name="Autenticacao">
|
479
|
+
<input message="tns:Autenticacao0Request"/>
|
480
|
+
<output message="tns:Autenticacao0Response"/>
|
481
|
+
</operation>
|
482
|
+
<operation name="InsereTrajeto">
|
483
|
+
<input message="tns:InsereTrajeto1Request"/>
|
484
|
+
<output message="tns:InsereTrajeto1Response"/>
|
485
|
+
</operation>
|
486
|
+
<operation name="InsereEntidade">
|
487
|
+
<input message="tns:InsereEntidade2Request"/>
|
488
|
+
<output message="tns:InsereEntidade2Response"/>
|
489
|
+
</operation>
|
490
|
+
<operation name="InsereTrajetoXml">
|
491
|
+
<input message="tns:InsereTrajetoXml3Request"/>
|
492
|
+
<output message="tns:InsereTrajetoXml3Response"/>
|
493
|
+
</operation>
|
494
|
+
<operation name="InsereEntidadeXml">
|
495
|
+
<input message="tns:InsereEntidadeXml4Request"/>
|
496
|
+
<output message="tns:InsereEntidadeXml4Response"/>
|
497
|
+
</operation>
|
498
|
+
<operation name="InsereUsuarioXml">
|
499
|
+
<input message="tns:InsereUsuarioXml5Request"/>
|
500
|
+
<output message="tns:InsereUsuarioXml5Response"/>
|
501
|
+
</operation>
|
502
|
+
<operation name="AtualizaTrajeto">
|
503
|
+
<input message="tns:AtualizaTrajeto6Request"/>
|
504
|
+
<output message="tns:AtualizaTrajeto6Response"/>
|
505
|
+
</operation>
|
506
|
+
<operation name="FinalizaTrajeto">
|
507
|
+
<input message="tns:FinalizaTrajeto7Request"/>
|
508
|
+
<output message="tns:FinalizaTrajeto7Response"/>
|
509
|
+
</operation>
|
510
|
+
<operation name="AtualizaTrajeto_Entidade">
|
511
|
+
<input message="tns:AtualizaTrajeto_Entidade8Request"/>
|
512
|
+
<output message="tns:AtualizaTrajeto_Entidade8Response"/>
|
513
|
+
</operation>
|
514
|
+
<operation name="BuscaTrajeto">
|
515
|
+
<input message="tns:BuscaTrajeto9Request"/>
|
516
|
+
<output message="tns:BuscaTrajeto9Response"/>
|
517
|
+
</operation>
|
518
|
+
<operation name="BuscaLocalizacao">
|
519
|
+
<input message="tns:BuscaLocalizacao10Request"/>
|
520
|
+
<output message="tns:BuscaLocalizacao10Response"/>
|
521
|
+
</operation>
|
522
|
+
<operation name="ReprogramarPonto">
|
523
|
+
<input message="tns:ReprogramarPonto11Request"/>
|
524
|
+
<output message="tns:ReprogramarPonto11Response"/>
|
525
|
+
</operation>
|
526
|
+
<operation name="BuscaNCTrajeto">
|
527
|
+
<input message="tns:BuscaNCTrajeto12Request"/>
|
528
|
+
<output message="tns:BuscaNCTrajeto12Response"/>
|
529
|
+
</operation>
|
530
|
+
<operation name="BuscaNCTrajeto2">
|
531
|
+
<input message="tns:BuscaNCTrajeto213Request"/>
|
532
|
+
<output message="tns:BuscaNCTrajeto213Response"/>
|
533
|
+
</operation>
|
534
|
+
<operation name="BuscaTrajetoAtributo">
|
535
|
+
<input message="tns:BuscaTrajetoAtributo14Request"/>
|
536
|
+
<output message="tns:BuscaTrajetoAtributo14Response"/>
|
537
|
+
</operation>
|
538
|
+
<operation name="InsereAlerta">
|
539
|
+
<input message="tns:InsereAlerta15Request"/>
|
540
|
+
<output message="tns:InsereAlerta15Response"/>
|
541
|
+
</operation>
|
542
|
+
</portType>
|
543
|
+
<binding name="IWSIntegERPbinding" type="tns:IWSIntegERP">
|
544
|
+
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
545
|
+
<operation name="Autenticacao">
|
546
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#Autenticacao" style="rpc"/>
|
547
|
+
<input>
|
548
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
549
|
+
</input>
|
550
|
+
<output>
|
551
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
552
|
+
</output>
|
553
|
+
</operation>
|
554
|
+
<operation name="InsereTrajeto">
|
555
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#InsereTrajeto" style="rpc"/>
|
556
|
+
<input>
|
557
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
558
|
+
</input>
|
559
|
+
<output>
|
560
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
561
|
+
</output>
|
562
|
+
</operation>
|
563
|
+
<operation name="InsereEntidade">
|
564
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#InsereEntidade" style="rpc"/>
|
565
|
+
<input>
|
566
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
567
|
+
</input>
|
568
|
+
<output>
|
569
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
570
|
+
</output>
|
571
|
+
</operation>
|
572
|
+
<operation name="InsereTrajetoXml">
|
573
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#InsereTrajetoXml" style="rpc"/>
|
574
|
+
<input>
|
575
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
576
|
+
</input>
|
577
|
+
<output>
|
578
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
579
|
+
</output>
|
580
|
+
</operation>
|
581
|
+
<operation name="InsereEntidadeXml">
|
582
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#InsereEntidadeXml" style="rpc"/>
|
583
|
+
<input>
|
584
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
585
|
+
</input>
|
586
|
+
<output>
|
587
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
588
|
+
</output>
|
589
|
+
</operation>
|
590
|
+
<operation name="InsereUsuarioXml">
|
591
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#InsereUsuarioXml" style="rpc"/>
|
592
|
+
<input>
|
593
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
594
|
+
</input>
|
595
|
+
<output>
|
596
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
597
|
+
</output>
|
598
|
+
</operation>
|
599
|
+
<operation name="AtualizaTrajeto">
|
600
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#AtualizaTrajeto" style="rpc"/>
|
601
|
+
<input>
|
602
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
603
|
+
</input>
|
604
|
+
<output>
|
605
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
606
|
+
</output>
|
607
|
+
</operation>
|
608
|
+
<operation name="FinalizaTrajeto">
|
609
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#FinalizaTrajeto" style="rpc"/>
|
610
|
+
<input>
|
611
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
612
|
+
</input>
|
613
|
+
<output>
|
614
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
615
|
+
</output>
|
616
|
+
</operation>
|
617
|
+
<operation name="AtualizaTrajeto_Entidade">
|
618
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#AtualizaTrajeto_Entidade" style="rpc"/>
|
619
|
+
<input>
|
620
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
621
|
+
</input>
|
622
|
+
<output>
|
623
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
624
|
+
</output>
|
625
|
+
</operation>
|
626
|
+
<operation name="BuscaTrajeto">
|
627
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#BuscaTrajeto" style="rpc"/>
|
628
|
+
<input>
|
629
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
630
|
+
</input>
|
631
|
+
<output>
|
632
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
633
|
+
</output>
|
634
|
+
</operation>
|
635
|
+
<operation name="BuscaLocalizacao">
|
636
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#BuscaLocalizacao" style="rpc"/>
|
637
|
+
<input>
|
638
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
639
|
+
</input>
|
640
|
+
<output>
|
641
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
642
|
+
</output>
|
643
|
+
</operation>
|
644
|
+
<operation name="ReprogramarPonto">
|
645
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#ReprogramarPonto" style="rpc"/>
|
646
|
+
<input>
|
647
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
648
|
+
</input>
|
649
|
+
<output>
|
650
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
651
|
+
</output>
|
652
|
+
</operation>
|
653
|
+
<operation name="BuscaNCTrajeto">
|
654
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#BuscaNCTrajeto" style="rpc"/>
|
655
|
+
<input>
|
656
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
657
|
+
</input>
|
658
|
+
<output>
|
659
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
660
|
+
</output>
|
661
|
+
</operation>
|
662
|
+
<operation name="BuscaNCTrajeto2">
|
663
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#BuscaNCTrajeto2" style="rpc"/>
|
664
|
+
<input>
|
665
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
666
|
+
</input>
|
667
|
+
<output>
|
668
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
669
|
+
</output>
|
670
|
+
</operation>
|
671
|
+
<operation name="BuscaTrajetoAtributo">
|
672
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#BuscaTrajetoAtributo" style="rpc"/>
|
673
|
+
<input>
|
674
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
675
|
+
</input>
|
676
|
+
<output>
|
677
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
678
|
+
</output>
|
679
|
+
</operation>
|
680
|
+
<operation name="InsereAlerta">
|
681
|
+
<soap:operation soapAction="urn:WSIntegERPIntf-IWSIntegERP#InsereAlerta" style="rpc"/>
|
682
|
+
<input>
|
683
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
684
|
+
</input>
|
685
|
+
<output>
|
686
|
+
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:WSIntegERPIntf-IWSIntegERP"/>
|
687
|
+
</output>
|
688
|
+
</operation>
|
689
|
+
</binding>
|
690
|
+
<service name="IWSIntegERPservice">
|
691
|
+
<port name="IWSIntegERPPort" binding="tns:IWSIntegERPbinding">
|
692
|
+
<soap:address location="http://177.75.152.221:8084/WSIntegERP/WSIntegERP.exe/soap/IWSIntegERP"/>
|
693
|
+
</port>
|
694
|
+
</service>
|
695
|
+
</definitions>
|