...

Code Block
languagexml
themeRDark
firstline1
titleListarRotaClienteRequest
linenumberstrue
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tms="http://tmsfrete.v2.targetmp.com.br">
   <soapenv:Header/>
   <soapenv:Body>
      <tms:ListarRotas>
         <tms:auth>
            <tms:Usuario>?</tms:Usuario>
            <tms:Senha>?</tms:Senha>
            <tms:Token>?</tms:Token>
         </tms:auth>
         <tms:listarRotasRequest>
            <tms:CodigoIBGEOrigem>?</tms:CodigoIBGEOrigem>
            <tms:CodigoIBGEDestino>?</tms:CodigoIBGEDestino>
            <tms:NumeroPagina>?</tms:NumeroPagina>
            <tms:QuantidadeItensPorPagina>?</tms:QuantidadeItensPorPagina>
         </tms:listarRotasRequest>
      </tms:ListarRotas>
   </soapenv:Body>
</soapenv:Envelope>


Listar Rotas

Abaixo, segue exemplo do método - 'ListarRotas' (Buscando apenas uma Rota ativa).

Code Block
languagexml
themeRDark
firstline1
titleExemplo - ListarRotaClienteRequest
linenumberstrue
Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tms="http://tmsfrete.v2.targetmp.com.br" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
   <soapenv:Header/>
   <soapenv:Body>
      <tms:ListarRotas>
         <tms:auth>
            <tms:Usuario>tms.exemplo</tms:Usuario>
            <tms:Senha>v0hXPrwerKblaBs=</tms:Senha>
            <tms:Token i:nil="true" />
         </tms:auth>
         <tms:listarRotasRequest>
            <tms:CodigoIBGEOrigem>4213203</tms:CodigoIBGEOrigem>
            <tms:CodigoIBGEDestino>4211900</tms:CodigoIBGEDestino>
            <tms:NumeroPagina>1</tms:NumeroPagina>
            <tms:QuantidadeItensPorPagina>1</tms:QuantidadeItensPorPagina>
         </tms:listarRotasRequest>
      </tms:ListarRotas>
   </soapenv:Body>
</soapenv:Envelope>
                      

Response
            

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Header>
    <Action s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://tmsfrete.v2.targetmp.com.br/FreteTMSService/ListarRotasResponse</Action>
  </s:Header>
  <s:Body>
    <ListarRotasResponse xmlns="http://tmsfrete.v2.targetmp.com.br">
      <ListarRotasResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
        <Erro i:nil="true" />
        <Itens>
          <ListarRotasClienteResponse>
            <Erro i:nil="true" />
            <Mensagem>Rotas ativas obtidas com sucesso!</Mensagem>
            <Rotas>
              <RotaResponse>
                <Erro i:nil="true" />
                <IdRotaCliente>47672</IdRotaCliente>
                <NomeRota>POM_SC0183 </NomeRota>
                <DataHoraCadastro>2018-04-02T10:00:52.367</DataHoraCadastro>
                <ValorCombustivel>0.00</ValorCombustivel>
                <DistanciaPercorrida>168.03</DistanciaPercorrida>
                <TempoViagem>8160</TempoViagem>
                <Origem>Pomerode, SC</Origem>
                <Destino>Palhoça, SC</Destino>
                <DataHoraAtualizacao>2018-04-02T10:00:52.383</DataHoraAtualizacao>
                <Ativo>true</Ativo>
              </RotaResponse>
            </Rotas>
          </ListarRotasClienteResponse>
        </Itens>
        <NumeroPagina>1</NumeroPagina>
        <QuantidadeItensPorPagina>20</QuantidadeItensPorPagina>
        <QuantidadeTotalItens>1</QuantidadeTotalItens>
        <QuantidadeTotalPaginas>1</QuantidadeTotalPaginas>
      </ListarRotasResult>
    </ListarRotasResponse>
  </s:Body>
</s:Envelope>