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