Soap request --> AppleScript

I have the following SOAP Request and Response to obtain free real time quotes. Can anyone convert this to Applescript? TIA ,Ben

The following is a sample SOAP request and response. The placeholders shown need to be replaced with actual values.

POST http://www.xignite.com/xRealTime.asmx HTTP/1.1
Host: www.xignite.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: “http://www.xignite.com/services/GetRealQuote

<?xml version="1.0" encoding="utf-8"?>

<soap:Envelope
xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance
xmlns:xsd=“http://www.w3.org/2001/XMLSchema
xmlns:soap=“http://schemas.xmlsoap.org/soap/envelope/”>
soap:Header

string
string
string

</soap:Header>
soap:Body

Island
string
boolean

</soap:Body>
</soap:Envelope>

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>

<soap:Envelope
xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance
xmlns:xsd=“http://www.w3.org/2001/XMLSchema
xmlns:soap=“http://schemas.xmlsoap.org/soap/envelope/”>
soap:Body


string
string
string
string
string
string
double
int
double
double
double
double
double
double
double
double
int
int
int
double
double
string


</soap:Body>
</soap:Envelope>

Perhaps this will help (note that SOAP calls in 10.3 have been wonky):

http://macscripter.net/exchange/index.php?id=P212

Jon