Link to home
Start Free TrialLog in
Avatar of hmburhan100
hmburhan100

asked on

CrystalDecisions.CrystalReports.Engine.DataSourceException: Query Engine Error ON Deploying on some Other Server.

My Application was working Fine but on deploying on some other server I Got this Error.

Query Engine Error: 'C:\websites\securenet\merchant\clientInfo.rpt'
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: CrystalDecisions.CrystalReports.Engine.DataSourceException: Query Engine Error: 'C:\websites\securenet\merchant\clientInfo.rpt'


I am using ASP.NET/Dataset
MY Code is AS Below

/*******************
*******************/
SqlDataAdapter sda = new SqlDataAdapter(myCommand);
                  DSClients  ds = new DSClients();
                  sda.Fill(ds,"clients"); ///////////clients is table name on the base of Datset was generated and rest of the site works fine

                  if(dbM.oCn.State.ToString()=="Open")
                        dbM.oCn.Close();
                        
                  return ds;
Avatar of Spykair
Spykair
Flag of South Africa image

Avatar of hmburhan100
hmburhan100

ASKER

I Got the solution throug this SITE.

http://support.businessobjects.com/library/kbase/articles/c2011164.asp

THNX ANYWAY.
ASKER CERTIFIED SOLUTION
Avatar of hmburhan100
hmburhan100

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Glad you could sort out your problem.

Spykair
I agree

Spykair
Please close this question, i sort out this prob by myself.