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

