Type.registerNamespace('PhysiciansDirectory');
PhysiciansDirectory.wsLocal=function() {
PhysiciansDirectory.wsLocal.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PhysiciansDirectory.wsLocal.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(PhysiciansDirectory.wsLocal.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
remove_file:function(filename,succeededCallback, failedCallback, userContext) {
return this._invoke(PhysiciansDirectory.wsLocal.get_path(), 'remove_file',false,{filename:filename},succeededCallback,failedCallback,userContext); }}
PhysiciansDirectory.wsLocal.registerClass('PhysiciansDirectory.wsLocal',Sys.Net.WebServiceProxy);
PhysiciansDirectory.wsLocal._staticInstance = new PhysiciansDirectory.wsLocal();
PhysiciansDirectory.wsLocal.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; PhysiciansDirectory.wsLocal._staticInstance._path = value; }
PhysiciansDirectory.wsLocal.get_path = function() { return PhysiciansDirectory.wsLocal._staticInstance._path; }
PhysiciansDirectory.wsLocal.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
PhysiciansDirectory.wsLocal._staticInstance._timeout = value; }
PhysiciansDirectory.wsLocal.get_timeout = function() { 
return PhysiciansDirectory.wsLocal._staticInstance._timeout; }
PhysiciansDirectory.wsLocal.set_defaultUserContext = function(value) { 
PhysiciansDirectory.wsLocal._staticInstance._userContext = value; }
PhysiciansDirectory.wsLocal.get_defaultUserContext = function() { 
return PhysiciansDirectory.wsLocal._staticInstance._userContext; }
PhysiciansDirectory.wsLocal.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; PhysiciansDirectory.wsLocal._staticInstance._succeeded = value; }
PhysiciansDirectory.wsLocal.get_defaultSucceededCallback = function() { 
return PhysiciansDirectory.wsLocal._staticInstance._succeeded; }
PhysiciansDirectory.wsLocal.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; PhysiciansDirectory.wsLocal._staticInstance._failed = value; }
PhysiciansDirectory.wsLocal.get_defaultFailedCallback = function() { 
return PhysiciansDirectory.wsLocal._staticInstance._failed; }
PhysiciansDirectory.wsLocal.set_path("/physiciandirectory/wsLocal.asmx");
PhysiciansDirectory.wsLocal.HelloWorld= function(onSuccess,onFailed,userContext) {PhysiciansDirectory.wsLocal._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
PhysiciansDirectory.wsLocal.remove_file= function(filename,onSuccess,onFailed,userContext) {PhysiciansDirectory.wsLocal._staticInstance.remove_file(filename,onSuccess,onFailed,userContext); }
