muhammad kashif
muhammad kashif

Reputation: 2624

Crystal Report Logon Failure

I am getting error while opening Crystal Report from my asp.net application at production server. Credentials are define in web.config. In web.config we have userid, password, server and database name. here is the error:

Logon failed. Details: ADO Error Code: 0x Source: ADODB.Connection Description: Provider cannot be found. It may not be properly installed. Error in File C:\Windows\TEMP\OrderAudit {5A4491A4-BFD5-4EA4-8806-94A7CED3467A}.rpt: Unable to connect: incorrect log on parameters.

When I connected to my production database server from my localhost reports are opening okay. any solution?

Upvotes: 1

Views: 5274

Answers (2)

chodae
chodae

Reputation: 151

Download and install sqlncli.msi (SQL Native Client driver) from http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=15748

Upvotes: 1

competent_tech
competent_tech

Reputation: 44941

Crystal is trying to tell you that the ADO database provider is not installed on the machine.

For example, if you are connecting to an Oracle database, then the Oracle driver needs to be installed on the ASP.Net server.

Upvotes: 2

Related Questions