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