Hi all,
I've a SBO 8.82 PL04 installation with 2 machines:
- Windows Server 2011 64bit, with SQL SERVER 2008 R2 and SAP SERVER (domain system)
- SBO Client PC with Windows 7 professional 64 bit
For all situations i'm using the same admin user that is a domain administrator of SAP SERVER.
I can work whithout any problem in the SBO client PC. However when I try to run a EXE Windows Application (.NET 2.0 ) that connects to the SAP Server via DI API, I always get this error:
unable to authenticate on licence server -132
What can be the problem?
The app code is just a simple connection test:
SAPbobsCOM.Company pCompany = new SAPbobsCOM.Company();
pCompany.DbServerType = SAPbobsCOM.BoDataServerTypes.dst_MSSQL2008;
pCompany.Server = txtServer.Text;
pCompany.CompanyDB = txtCompanyDB.Text;
pCompany.UserName = txtUserName.Text;
pCompany.Password = txtPassword.Text;
pCompany.LicenseServer = txtLicenseServer.Text;
pCompany.language = SAPbobsCOM.BoSuppLangs.ln_English;//SAPbobsCOM.BoSuppLangs.ln_Portuguese;
int iErrCode = pCompany.Connect();
if (iErrCode != 0) ...
I've already made the following tests with the same result:
- compile the .NET app in x86
- run EXE app as administrator or normal
- run EXE app on SERVER machine and it runs OK
I'm out of ideas :-(
Any help?
Thanks all,
Manuel Dias