var EditorService=function() {
EditorService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
EditorService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return EditorService._staticInstance.get_path();},
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
iGotIt:function(editorText,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'iGotIt',false,{editorText:editorText},succeededCallback,failedCallback,userContext); },
validEmail:function(mail,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'validEmail',false,{mail:mail},succeededCallback,failedCallback,userContext); },
searchMembers:function(startsWith,admin,lang,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'searchMembers',false,{startsWith:startsWith,admin:admin,lang:lang},succeededCallback,failedCallback,userContext); },
searchForbokstav:function(startsWith,admin,lang,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'searchForbokstav',false,{startsWith:startsWith,admin:admin,lang:lang},succeededCallback,failedCallback,userContext); },
youtubeMovie:function(link,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'youtubeMovie',false,{link:link},succeededCallback,failedCallback,userContext); },
isAvaiable:function(username,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'isAvaiable',false,{username:username},succeededCallback,failedCallback,userContext); },
isAvaiableSakNr:function(sakNr,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'isAvaiableSakNr',false,{sakNr:sakNr},succeededCallback,failedCallback,userContext); }}
EditorService.registerClass('EditorService',Sys.Net.WebServiceProxy);
EditorService._staticInstance = new EditorService();
EditorService.set_path = function(value) { EditorService._staticInstance.set_path(value); }
EditorService.get_path = function() { return EditorService._staticInstance.get_path(); }
EditorService.set_timeout = function(value) { EditorService._staticInstance.set_timeout(value); }
EditorService.get_timeout = function() { return EditorService._staticInstance.get_timeout(); }
EditorService.set_defaultUserContext = function(value) { EditorService._staticInstance.set_defaultUserContext(value); }
EditorService.get_defaultUserContext = function() { return EditorService._staticInstance.get_defaultUserContext(); }
EditorService.set_defaultSucceededCallback = function(value) { EditorService._staticInstance.set_defaultSucceededCallback(value); }
EditorService.get_defaultSucceededCallback = function() { return EditorService._staticInstance.get_defaultSucceededCallback(); }
EditorService.set_defaultFailedCallback = function(value) { EditorService._staticInstance.set_defaultFailedCallback(value); }
EditorService.get_defaultFailedCallback = function() { return EditorService._staticInstance.get_defaultFailedCallback(); }
EditorService.set_path("/EditorService.asmx");
EditorService.HelloWorld= function(onSuccess,onFailed,userContext) {EditorService._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
EditorService.iGotIt= function(editorText,onSuccess,onFailed,userContext) {EditorService._staticInstance.iGotIt(editorText,onSuccess,onFailed,userContext); }
EditorService.validEmail= function(mail,onSuccess,onFailed,userContext) {EditorService._staticInstance.validEmail(mail,onSuccess,onFailed,userContext); }
EditorService.searchMembers= function(startsWith,admin,lang,onSuccess,onFailed,userContext) {EditorService._staticInstance.searchMembers(startsWith,admin,lang,onSuccess,onFailed,userContext); }
EditorService.searchForbokstav= function(startsWith,admin,lang,onSuccess,onFailed,userContext) {EditorService._staticInstance.searchForbokstav(startsWith,admin,lang,onSuccess,onFailed,userContext); }
EditorService.youtubeMovie= function(link,onSuccess,onFailed,userContext) {EditorService._staticInstance.youtubeMovie(link,onSuccess,onFailed,userContext); }
EditorService.isAvaiable= function(username,onSuccess,onFailed,userContext) {EditorService._staticInstance.isAvaiable(username,onSuccess,onFailed,userContext); }
EditorService.isAvaiableSakNr= function(sakNr,onSuccess,onFailed,userContext) {EditorService._staticInstance.isAvaiableSakNr(sakNr,onSuccess,onFailed,userContext); }

