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

