var UserPageService=function() {
UserPageService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
UserPageService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return UserPageService._staticInstance.get_path();},
GetPlayer:function(dir,programID,succeededCallback, failedCallback, userContext) {
/// <param name="dir" type="String">System.String</param>
/// <param name="programID" 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(), 'GetPlayer',false,{dir:dir,programID:programID},succeededCallback,failedCallback,userContext); },
ProcessComment:function(pID,rcID,pcID,commentBody,uID,succeededCallback, failedCallback, userContext) {
/// <param name="pID" type="String">System.String</param>
/// <param name="rcID" type="String">System.String</param>
/// <param name="pcID" type="String">System.String</param>
/// <param name="commentBody" type="String">System.String</param>
/// <param name="uID" 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(), 'ProcessComment',false,{pID:pID,rcID:rcID,pcID:pcID,commentBody:commentBody,uID:uID},succeededCallback,failedCallback,userContext); },
ProcessProducerSearch:function(userSearchString,searchBy,maxRecords,succeededCallback, failedCallback, userContext) {
/// <param name="userSearchString" type="String">System.String</param>
/// <param name="searchBy" type="String">System.String</param>
/// <param name="maxRecords" 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(), 'ProcessProducerSearch',false,{userSearchString:userSearchString,searchBy:searchBy,maxRecords:maxRecords},succeededCallback,failedCallback,userContext); },
RemoveProgramFromFloe:function(uID,pID,succeededCallback, failedCallback, userContext) {
/// <param name="uID" type="String">System.String</param>
/// <param name="pID" 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(), 'RemoveProgramFromFloe',false,{uID:uID,pID:pID},succeededCallback,failedCallback,userContext); }}
UserPageService.registerClass('UserPageService',Sys.Net.WebServiceProxy);
UserPageService._staticInstance = new UserPageService();
UserPageService.set_path = function(value) {
UserPageService._staticInstance.set_path(value); }
UserPageService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return UserPageService._staticInstance.get_path();}
UserPageService.set_timeout = function(value) {
UserPageService._staticInstance.set_timeout(value); }
UserPageService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return UserPageService._staticInstance.get_timeout(); }
UserPageService.set_defaultUserContext = function(value) { 
UserPageService._staticInstance.set_defaultUserContext(value); }
UserPageService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return UserPageService._staticInstance.get_defaultUserContext(); }
UserPageService.set_defaultSucceededCallback = function(value) { 
 UserPageService._staticInstance.set_defaultSucceededCallback(value); }
UserPageService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return UserPageService._staticInstance.get_defaultSucceededCallback(); }
UserPageService.set_defaultFailedCallback = function(value) { 
UserPageService._staticInstance.set_defaultFailedCallback(value); }
UserPageService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return UserPageService._staticInstance.get_defaultFailedCallback(); }
UserPageService.set_path("/UserPageService.asmx");
UserPageService.GetPlayer= function(dir,programID,onSuccess,onFailed,userContext) {
/// <param name="dir" type="String">System.String</param>
/// <param name="programID" 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>
UserPageService._staticInstance.GetPlayer(dir,programID,onSuccess,onFailed,userContext); }
UserPageService.ProcessComment= function(pID,rcID,pcID,commentBody,uID,onSuccess,onFailed,userContext) {
/// <param name="pID" type="String">System.String</param>
/// <param name="rcID" type="String">System.String</param>
/// <param name="pcID" type="String">System.String</param>
/// <param name="commentBody" type="String">System.String</param>
/// <param name="uID" 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>
UserPageService._staticInstance.ProcessComment(pID,rcID,pcID,commentBody,uID,onSuccess,onFailed,userContext); }
UserPageService.ProcessProducerSearch= function(userSearchString,searchBy,maxRecords,onSuccess,onFailed,userContext) {
/// <param name="userSearchString" type="String">System.String</param>
/// <param name="searchBy" type="String">System.String</param>
/// <param name="maxRecords" 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>
UserPageService._staticInstance.ProcessProducerSearch(userSearchString,searchBy,maxRecords,onSuccess,onFailed,userContext); }
UserPageService.RemoveProgramFromFloe= function(uID,pID,onSuccess,onFailed,userContext) {
/// <param name="uID" type="String">System.String</param>
/// <param name="pID" 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>
UserPageService._staticInstance.RemoveProgramFromFloe(uID,pID,onSuccess,onFailed,userContext); }
