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

