var WS=function() {
WS.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WS.prototype={
getips:function(clientHost,clientUrl,clientPath,clientProtocol,clientLen,succeededCallback, failedCallback, userContext) {
return this._invoke(WS.get_path(), 'getips',false,{clientHost:clientHost,clientUrl:clientUrl,clientPath:clientPath,clientProtocol:clientProtocol,clientLen:clientLen},succeededCallback,failedCallback,userContext); },
islogin:function(succeededCallback, failedCallback, userContext) {
return this._invoke(WS.get_path(), 'islogin',false,{},succeededCallback,failedCallback,userContext); },
smallpricelist:function(smallid,_x,_y,succeededCallback, failedCallback, userContext) {
return this._invoke(WS.get_path(), 'smallpricelist',false,{smallid:smallid,_x:_x,_y:_y},succeededCallback,failedCallback,userContext); }}
WS.registerClass('WS',Sys.Net.WebServiceProxy);
WS._staticInstance = new WS();
WS.set_path = function(value) { WS._staticInstance._path = value; }
WS.get_path = function() { return WS._staticInstance._path; }
WS.set_timeout = function(value) { WS._staticInstance._timeout = value; }
WS.get_timeout = function() { return WS._staticInstance._timeout; }
WS.set_defaultUserContext = function(value) { WS._staticInstance._userContext = value; }
WS.get_defaultUserContext = function() { return WS._staticInstance._userContext; }
WS.set_defaultSucceededCallback = function(value) { WS._staticInstance._succeeded = value; }
WS.get_defaultSucceededCallback = function() { return WS._staticInstance._succeeded; }
WS.set_defaultFailedCallback = function(value) { WS._staticInstance._failed = value; }
WS.get_defaultFailedCallback = function() { return WS._staticInstance._failed; }
WS.set_path("/WS.asmx");
WS.getips= function(clientHost,clientUrl,clientPath,clientProtocol,clientLen,onSuccess,onFailed,userContext) {WS._staticInstance.getips(clientHost,clientUrl,clientPath,clientProtocol,clientLen,onSuccess,onFailed,userContext); }
WS.islogin= function(onSuccess,onFailed,userContext) {WS._staticInstance.islogin(onSuccess,onFailed,userContext); }
WS.smallpricelist= function(smallid,_x,_y,onSuccess,onFailed,userContext) {WS._staticInstance.smallpricelist(smallid,_x,_y,onSuccess,onFailed,userContext); }
