|
|
| Service Owner: |
xMethods.net |
| Service Home: |
xMethods.com |
| Service WSDL URL: |
http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl
Inspect WSDL View WSDL |
| Short Description: |
20 minute delayed stock quote. |
| Implementation: |
Glue |
|
| Unlimited |
Free |
Free |
Instant |
No |
|
|
Returns the current Stock price for any companies stock ticker symbol. (Easy to use). |
| Client Name |
Publisher |
fVersion |
Toolkit |
Added On |
| Ticker Lookup |
Flash-db |
MX |
Nusoap |
2002-08-12 |
|
|
#include "NetServices.as"
#include "NetDebug.as"
// create result handler for results and error messages.
serviceResult = new Object();
serviceResult.onResult = function(result){
trace(result)
}
serviceResult.onStatus = function(status){
trace(status);
}
// sets up the gateway connection.
var serverConn = NetServices.createGatewayConnection("<PathToGateway>gateway.php");
// sets up the service.
var service = serverConn.getService("http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl", serviceResult);
// Set the params and call the service
params = {
symbol:'macr'
}
// calls the method.
service.getQuote(params);
|
|
|