var PalantirWebService=function() {
PalantirWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PalantirWebService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return PalantirWebService._staticInstance.get_path();},
AddFileToCustomTable:function(fileName,method,email,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddFileToCustomTable',false,{fileName:fileName,method:method,email:email},succeededCallback,failedCallback,userContext); },
AddTechnicalFileToCustomTable:function(fileName,method,email,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddTechnicalFileToCustomTable',false,{fileName:fileName,method:method,email:email},succeededCallback,failedCallback,userContext); },
AddSoftwareFileToCustomTable:function(fileName,method,email,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddSoftwareFileToCustomTable',false,{fileName:fileName,method:method,email:email},succeededCallback,failedCallback,userContext); },
AddTrialSoftwareFileToCustomTable:function(fileName,method,email,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddTrialSoftwareFileToCustomTable',false,{fileName:fileName,method:method,email:email},succeededCallback,failedCallback,userContext); }}
PalantirWebService.registerClass('PalantirWebService',Sys.Net.WebServiceProxy);
PalantirWebService._staticInstance = new PalantirWebService();
PalantirWebService.set_path = function(value) { PalantirWebService._staticInstance.set_path(value); }
PalantirWebService.get_path = function() { return PalantirWebService._staticInstance.get_path(); }
PalantirWebService.set_timeout = function(value) { PalantirWebService._staticInstance.set_timeout(value); }
PalantirWebService.get_timeout = function() { return PalantirWebService._staticInstance.get_timeout(); }
PalantirWebService.set_defaultUserContext = function(value) { PalantirWebService._staticInstance.set_defaultUserContext(value); }
PalantirWebService.get_defaultUserContext = function() { return PalantirWebService._staticInstance.get_defaultUserContext(); }
PalantirWebService.set_defaultSucceededCallback = function(value) { PalantirWebService._staticInstance.set_defaultSucceededCallback(value); }
PalantirWebService.get_defaultSucceededCallback = function() { return PalantirWebService._staticInstance.get_defaultSucceededCallback(); }
PalantirWebService.set_defaultFailedCallback = function(value) { PalantirWebService._staticInstance.set_defaultFailedCallback(value); }
PalantirWebService.get_defaultFailedCallback = function() { return PalantirWebService._staticInstance.get_defaultFailedCallback(); }
PalantirWebService.set_path("/PalantirWebService.asmx");
PalantirWebService.AddFileToCustomTable= function(fileName,method,email,onSuccess,onFailed,userContext) {PalantirWebService._staticInstance.AddFileToCustomTable(fileName,method,email,onSuccess,onFailed,userContext); }
PalantirWebService.AddTechnicalFileToCustomTable= function(fileName,method,email,onSuccess,onFailed,userContext) {PalantirWebService._staticInstance.AddTechnicalFileToCustomTable(fileName,method,email,onSuccess,onFailed,userContext); }
PalantirWebService.AddSoftwareFileToCustomTable= function(fileName,method,email,onSuccess,onFailed,userContext) {PalantirWebService._staticInstance.AddSoftwareFileToCustomTable(fileName,method,email,onSuccess,onFailed,userContext); }
PalantirWebService.AddTrialSoftwareFileToCustomTable= function(fileName,method,email,onSuccess,onFailed,userContext) {PalantirWebService._staticInstance.AddTrialSoftwareFileToCustomTable(fileName,method,email,onSuccess,onFailed,userContext); }

