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