cancel
Showing results for 
Search instead for 
Did you mean: 

CrystalDecisions.CrystalReports.Engine.LogOnException: LogonFailed (when switched to x64-Mode)

Former Member
0 Kudos

exception.png

Hi my goal is to convert a Crystal Report File to PDF.

I got the Logon Error when switch to x64-Mode. This error occurs only with certain .rpt-Files. When using the "AnyOption" in debug mode everything goes well. It seems to me that the .dll has some bug when switching the compilation to x64 in Visual Studio.

The interesting thing is, i still could export the file after the exception occured which is raised by the method VerifyDatabase().

Does anyone have the same problem?

This are my codes:

ReportDocument reportDocument = new ReportDocument();
 
reportDocument.Load(@"C:\Users\lbui\AppData\Local\Temp\TestSourceFolder\ReportWithSubReportWithViewAndSP.rpt");
 
 
foreach (IConnectionInfo dataSourceConnection in reportDocument.DataSourceConnections)
{
 dataSourceConnection.SetConnection("localhost", "SomewhereDb", "UserId", "Password");
}
 
reportDocument.VerifyDatabase();
 
reportDocument.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, @"C:\Users\lbui\AppData\Local\Temp\TestSourceFolder\defcon.pdf");

Exception:

Accepted Solutions (1)

Accepted Solutions (1)

DellSC
Active Contributor
0 Kudos

Have you tried commenting out the call to VerifyDatabase? Unless your database is going through a lot of changes where fields are being added, removed, or changed, you don't really need to call it.

-Dell

Answers (0)