var MyVoxFacade=function() {
MyVoxFacade.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
MyVoxFacade.prototype={
GetMyVoxSwfUrl:function(requestedUserName,succeededCallback, failedCallback, userContext) {
return this._invoke(MyVoxFacade.get_path(), 'GetMyVoxSwfUrl',false,{requestedUserName:requestedUserName},succeededCallback,failedCallback,userContext); }}
MyVoxFacade.registerClass('MyVoxFacade',Sys.Net.WebServiceProxy);
MyVoxFacade._staticInstance = new MyVoxFacade();
MyVoxFacade.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; MyVoxFacade._staticInstance._path = value; }
MyVoxFacade.get_path = function() { return MyVoxFacade._staticInstance._path; }
MyVoxFacade.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); }
MyVoxFacade._staticInstance._timeout = value; }
MyVoxFacade.get_timeout = function() { 
return MyVoxFacade._staticInstance._timeout; }
MyVoxFacade.set_defaultUserContext = function(value) { 
MyVoxFacade._staticInstance._userContext = value; }
MyVoxFacade.get_defaultUserContext = function() { 
return MyVoxFacade._staticInstance._userContext; }
MyVoxFacade.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; MyVoxFacade._staticInstance._succeeded = value; }
MyVoxFacade.get_defaultSucceededCallback = function() { 
return MyVoxFacade._staticInstance._succeeded; }
MyVoxFacade.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; MyVoxFacade._staticInstance._failed = value; }
MyVoxFacade.get_defaultFailedCallback = function() { 
return MyVoxFacade._staticInstance._failed; }
MyVoxFacade.set_path("/MyVoxFacade.asmx");
MyVoxFacade.GetMyVoxSwfUrl= function(requestedUserName,onSuccess,onFailed,userContext) {MyVoxFacade._staticInstance.GetMyVoxSwfUrl(requestedUserName,onSuccess,onFailed,userContext); }
