var Spider=function() {
Spider.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Spider.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Spider._staticInstance.get_path();},
SiteDescTitle:function(URL,succeededCallback, failedCallback, userContext) {
/// <param name="URL" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'SiteDescTitle',false,{URL:URL},succeededCallback,failedCallback,userContext); }}
Spider.registerClass('Spider',Sys.Net.WebServiceProxy);
Spider._staticInstance = new Spider();
Spider.set_path = function(value) {
Spider._staticInstance.set_path(value); }
Spider.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return Spider._staticInstance.get_path();}
Spider.set_timeout = function(value) {
Spider._staticInstance.set_timeout(value); }
Spider.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return Spider._staticInstance.get_timeout(); }
Spider.set_defaultUserContext = function(value) { 
Spider._staticInstance.set_defaultUserContext(value); }
Spider.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return Spider._staticInstance.get_defaultUserContext(); }
Spider.set_defaultSucceededCallback = function(value) { 
 Spider._staticInstance.set_defaultSucceededCallback(value); }
Spider.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return Spider._staticInstance.get_defaultSucceededCallback(); }
Spider.set_defaultFailedCallback = function(value) { 
Spider._staticInstance.set_defaultFailedCallback(value); }
Spider.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return Spider._staticInstance.get_defaultFailedCallback(); }
Spider.set_path("/Spider.asmx");
Spider.SiteDescTitle= function(URL,onSuccess,onFailed,userContext) {
/// <param name="URL" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Spider._staticInstance.SiteDescTitle(URL,onSuccess,onFailed,userContext); }
