var FileExplorerTreeViewService=function() {
FileExplorerTreeViewService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
FileExplorerTreeViewService.prototype={
GetNodes:function(request,succeededCallback, failedCallback, userContext) {
return this._invoke(FileExplorerTreeViewService.get_path(), 'GetNodes',false,{request:request},succeededCallback,failedCallback,userContext); }}
FileExplorerTreeViewService.registerClass('FileExplorerTreeViewService',Sys.Net.WebServiceProxy);
FileExplorerTreeViewService._staticInstance = new FileExplorerTreeViewService();
FileExplorerTreeViewService.set_path = function(value) { FileExplorerTreeViewService._staticInstance._path = value; }
FileExplorerTreeViewService.get_path = function() { return FileExplorerTreeViewService._staticInstance._path; }
FileExplorerTreeViewService.set_timeout = function(value) { FileExplorerTreeViewService._staticInstance._timeout = value; }
FileExplorerTreeViewService.get_timeout = function() { return FileExplorerTreeViewService._staticInstance._timeout; }
FileExplorerTreeViewService.set_defaultUserContext = function(value) { FileExplorerTreeViewService._staticInstance._userContext = value; }
FileExplorerTreeViewService.get_defaultUserContext = function() { return FileExplorerTreeViewService._staticInstance._userContext; }
FileExplorerTreeViewService.set_defaultSucceededCallback = function(value) { FileExplorerTreeViewService._staticInstance._succeeded = value; }
FileExplorerTreeViewService.get_defaultSucceededCallback = function() { return FileExplorerTreeViewService._staticInstance._succeeded; }
FileExplorerTreeViewService.set_defaultFailedCallback = function(value) { FileExplorerTreeViewService._staticInstance._failed = value; }
FileExplorerTreeViewService.get_defaultFailedCallback = function() { return FileExplorerTreeViewService._staticInstance._failed; }
FileExplorerTreeViewService.set_path("/webui/demos/demos_technology-showcase/web-services_ajax/treeview_loadFromWebService/FileExplorerTreeViewService.asmx");
FileExplorerTreeViewService.GetNodes= function(request,onSuccess,onFailed,userContext) {FileExplorerTreeViewService._staticInstance.GetNodes(request,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('ComponentArt.Web.UI');
if (typeof(ComponentArt.Web.UI.TreeViewWebServiceRequest) === 'undefined') {
ComponentArt.Web.UI.TreeViewWebServiceRequest=gtc("ComponentArt.Web.UI.TreeViewWebServiceRequest");
ComponentArt.Web.UI.TreeViewWebServiceRequest.registerClass('ComponentArt.Web.UI.TreeViewWebServiceRequest');
}
if (typeof(ComponentArt.Web.UI.TreeViewWebServiceResponse) === 'undefined') {
ComponentArt.Web.UI.TreeViewWebServiceResponse=gtc("ComponentArt.Web.UI.TreeViewWebServiceResponse");
ComponentArt.Web.UI.TreeViewWebServiceResponse.registerClass('ComponentArt.Web.UI.TreeViewWebServiceResponse');
}
