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