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