var InrixTraffic=function() {
InrixTraffic.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
InrixTraffic.prototype={
GetCameras:function(token,corner1,corner2,timeValue,succeededCallback, failedCallback, userContext) {
return this._invoke(InrixTraffic.get_path(), 'GetCameras',false,{token:token,corner1:corner1,corner2:corner2,timeValue:timeValue},succeededCallback,failedCallback,userContext); }}
InrixTraffic.registerClass('InrixTraffic',Sys.Net.WebServiceProxy);
InrixTraffic._staticInstance = new InrixTraffic();
InrixTraffic.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; InrixTraffic._staticInstance._path = value; }
InrixTraffic.get_path = function() { return InrixTraffic._staticInstance._path; }
InrixTraffic.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
InrixTraffic._staticInstance._timeout = value; }
InrixTraffic.get_timeout = function() { 
return InrixTraffic._staticInstance._timeout; }
InrixTraffic.set_defaultUserContext = function(value) { 
InrixTraffic._staticInstance._userContext = value; }
InrixTraffic.get_defaultUserContext = function() { 
return InrixTraffic._staticInstance._userContext; }
InrixTraffic.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; InrixTraffic._staticInstance._succeeded = value; }
InrixTraffic.get_defaultSucceededCallback = function() { 
return InrixTraffic._staticInstance._succeeded; }
InrixTraffic.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; InrixTraffic._staticInstance._failed = value; }
InrixTraffic.get_defaultFailedCallback = function() { 
return InrixTraffic._staticInstance._failed; }
InrixTraffic.set_path("/TRACKER/InrixTraffic.asmx");
InrixTraffic.GetCameras= function(token,corner1,corner2,timeValue,onSuccess,onFailed,userContext) {InrixTraffic._staticInstance.GetCameras(token,corner1,corner2,timeValue,onSuccess,onFailed,userContext); }
