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