Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access Denied Problem

Status
Not open for further replies.

SmokeyJoe

Programmer
Nov 13, 2000
80
US
Newbie using Win 2000, CR 9 Developer version, SP 2 update.

According to my reference books I should be able to display a Crystal Report from an ASP page using the following command lines. However, this gives me the "Access Denied" errors. What do I need to do to get this code to work?


Lines 227 - 229

Set Viewer = CreateObject("CrystalReports.CrystalReportViewer")
Viewer.ReportSource = "RAS://C:\ReportMoSum1.rpt"
Viewer.ProcessHttpRequest Request, Response, Session


Error Type:
webReporting.dll (0x80004005)
Access denied. Please check directory setting for files you can access.
/Reportsales.asp, line 229



Lines 236 -238

Set Viewer = CreateObject("CrystalReports.CrystalReportViewer")
Viewer.ReportSource = "RAS://C:\ReportMoSum1.rpt"
Viewer.ProcessHttpRequest REquest, REsponse, Session



Error Type:
webReporting.dll (0x80004005)
Access denied. Please check directory setting for files you can access.
/Reportsales.asp, line 238

Thanks


 
It does sound like permissioning, although the pathing looks suspect as well.

Why not just?:

"C:\ReportMoSum1.rpt"

Or if you're trying to access another system named RAS, try:

"RAS//ReportMoSum1.rpt"

-k
 
Sorry but your idea did not work. I think it is definitely an access problem.

I also tried to display a report using the <A HREF=InteractiveViewer.asp......> command. It loads InteractiveViewer.asp and then gives me an Access Denied (same error code)on the InteractiveViewer.asp command line "Set clientDoc = objectFactory.CreateObject......"

Thanks for any help you can give.

Smokey Joe
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top