var KeyPipe=function() {
KeyPipe.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
KeyPipe.prototype={
RemoveKey:function(key,succeededCallback, failedCallback, userContext) {
return this._invoke(KeyPipe.get_path(), 'RemoveKey',false,{key:key},succeededCallback,failedCallback,userContext); }}
KeyPipe.registerClass('KeyPipe',Sys.Net.WebServiceProxy);
KeyPipe._staticInstance = new KeyPipe();
KeyPipe.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; KeyPipe._staticInstance._path = value; }
KeyPipe.get_path = function() { return KeyPipe._staticInstance._path; }
KeyPipe.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); }
KeyPipe._staticInstance._timeout = value; }
KeyPipe.get_timeout = function() { 
return KeyPipe._staticInstance._timeout; }
KeyPipe.set_defaultUserContext = function(value) { 
KeyPipe._staticInstance._userContext = value; }
KeyPipe.get_defaultUserContext = function() { 
return KeyPipe._staticInstance._userContext; }
KeyPipe.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; KeyPipe._staticInstance._succeeded = value; }
KeyPipe.get_defaultSucceededCallback = function() { 
return KeyPipe._staticInstance._succeeded; }
KeyPipe.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; KeyPipe._staticInstance._failed = value; }
KeyPipe.get_defaultFailedCallback = function() { 
return KeyPipe._staticInstance._failed; }
KeyPipe.set_path("/mapdatasciences/mdslocator/KeyPipe.asmx");
KeyPipe.RemoveKey= function(key,onSuccess,onFailed,userContext) {KeyPipe._staticInstance.RemoveKey(key,onSuccess,onFailed,userContext); }

