Hello,

I'm starting to play around with jQuery and decided to jump in head
first. We have a number of existing web services, built on ASP.NET,
that we using for our client/server application. Unfortunately, they
cannot handle POSTs or GETS due to the type of data returned. The SOAP
call looks like this:

POST /services/Core/CoreServices.asmx HTTP/1.1
Host: dev.etriptrader.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:soap12="http://
www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GetTripDetails xmlns="<URL>">
      <request>
        <UALMonth>int</UALMonth>
        <UALTripID>int</UALTripID>
        <DomicileID>int</DomicileID>
        <FleetID>int</FleetID>
        <SeatID>int</SeatID>
        <Date>dateTime</Date>
        <Timestamp>unsignedLong</Timestamp>
      </request>
    </GetTripDetails>
  </soap12:Body>
</soap12:Envelope>

Is it possible to hit these services using jQuery?

Reply via email to