var wsAccount=function() {
wsAccount.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
wsAccount.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return wsAccount._staticInstance.get_path();},
Logout:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'Logout',false,{},succeededCallback,failedCallback,userContext); },
createShibbolethAccount:function(xmlPacket,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'createShibbolethAccount',false,{xmlPacket:xmlPacket},succeededCallback,failedCallback,userContext); },
makeEnquiry:function(xmlPacket,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'makeEnquiry',false,{xmlPacket:xmlPacket},succeededCallback,failedCallback,userContext); },
sendToFriend:function(xmlPacket,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'sendToFriend',false,{xmlPacket:xmlPacket},succeededCallback,failedCallback,userContext); },
removeAccount:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'removeAccount',false,{},succeededCallback,failedCallback,userContext); },
changeLanguage:function(lang,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'changeLanguage',false,{lang:lang},succeededCallback,failedCallback,userContext); }}
wsAccount.registerClass('wsAccount',Sys.Net.WebServiceProxy);
wsAccount._staticInstance = new wsAccount();
wsAccount.set_path = function(value) { wsAccount._staticInstance.set_path(value); }
wsAccount.get_path = function() { return wsAccount._staticInstance.get_path(); }
wsAccount.set_timeout = function(value) { wsAccount._staticInstance.set_timeout(value); }
wsAccount.get_timeout = function() { return wsAccount._staticInstance.get_timeout(); }
wsAccount.set_defaultUserContext = function(value) { wsAccount._staticInstance.set_defaultUserContext(value); }
wsAccount.get_defaultUserContext = function() { return wsAccount._staticInstance.get_defaultUserContext(); }
wsAccount.set_defaultSucceededCallback = function(value) { wsAccount._staticInstance.set_defaultSucceededCallback(value); }
wsAccount.get_defaultSucceededCallback = function() { return wsAccount._staticInstance.get_defaultSucceededCallback(); }
wsAccount.set_defaultFailedCallback = function(value) { wsAccount._staticInstance.set_defaultFailedCallback(value); }
wsAccount.get_defaultFailedCallback = function() { return wsAccount._staticInstance.get_defaultFailedCallback(); }
wsAccount.set_path("/Webservices/wsAccount.asmx");
wsAccount.Logout= function(onSuccess,onFailed,userContext) {wsAccount._staticInstance.Logout(onSuccess,onFailed,userContext); }
wsAccount.createShibbolethAccount= function(xmlPacket,onSuccess,onFailed,userContext) {wsAccount._staticInstance.createShibbolethAccount(xmlPacket,onSuccess,onFailed,userContext); }
wsAccount.makeEnquiry= function(xmlPacket,onSuccess,onFailed,userContext) {wsAccount._staticInstance.makeEnquiry(xmlPacket,onSuccess,onFailed,userContext); }
wsAccount.sendToFriend= function(xmlPacket,onSuccess,onFailed,userContext) {wsAccount._staticInstance.sendToFriend(xmlPacket,onSuccess,onFailed,userContext); }
wsAccount.removeAccount= function(onSuccess,onFailed,userContext) {wsAccount._staticInstance.removeAccount(onSuccess,onFailed,userContext); }
wsAccount.changeLanguage= function(lang,onSuccess,onFailed,userContext) {wsAccount._staticInstance.changeLanguage(lang,onSuccess,onFailed,userContext); }

