Type.registerNamespace('GraphicDialog');
GraphicDialog.WebService=function() {
GraphicDialog.WebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
GraphicDialog.WebService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return GraphicDialog.WebService._staticInstance.get_path();},
EchoInput:function(input,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'EchoInput',false,{input:input},succeededCallback,failedCallback,userContext); },
retrieveClientList:function(categoryID,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'retrieveClientList',false,{categoryID:categoryID},succeededCallback,failedCallback,userContext); }}
GraphicDialog.WebService.registerClass('GraphicDialog.WebService',Sys.Net.WebServiceProxy);
GraphicDialog.WebService._staticInstance = new GraphicDialog.WebService();
GraphicDialog.WebService.set_path = function(value) { GraphicDialog.WebService._staticInstance.set_path(value); }
GraphicDialog.WebService.get_path = function() { return GraphicDialog.WebService._staticInstance.get_path(); }
GraphicDialog.WebService.set_timeout = function(value) { GraphicDialog.WebService._staticInstance.set_timeout(value); }
GraphicDialog.WebService.get_timeout = function() { return GraphicDialog.WebService._staticInstance.get_timeout(); }
GraphicDialog.WebService.set_defaultUserContext = function(value) { GraphicDialog.WebService._staticInstance.set_defaultUserContext(value); }
GraphicDialog.WebService.get_defaultUserContext = function() { return GraphicDialog.WebService._staticInstance.get_defaultUserContext(); }
GraphicDialog.WebService.set_defaultSucceededCallback = function(value) { GraphicDialog.WebService._staticInstance.set_defaultSucceededCallback(value); }
GraphicDialog.WebService.get_defaultSucceededCallback = function() { return GraphicDialog.WebService._staticInstance.get_defaultSucceededCallback(); }
GraphicDialog.WebService.set_defaultFailedCallback = function(value) { GraphicDialog.WebService._staticInstance.set_defaultFailedCallback(value); }
GraphicDialog.WebService.get_defaultFailedCallback = function() { return GraphicDialog.WebService._staticInstance.get_defaultFailedCallback(); }
GraphicDialog.WebService.set_path("/SimpleWebService_VB.asmx");
GraphicDialog.WebService.EchoInput= function(input,onSuccess,onFailed,userContext) {GraphicDialog.WebService._staticInstance.EchoInput(input,onSuccess,onFailed,userContext); }
GraphicDialog.WebService.retrieveClientList= function(categoryID,onSuccess,onFailed,userContext) {GraphicDialog.WebService._staticInstance.retrieveClientList(categoryID,onSuccess,onFailed,userContext); }
