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 Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Server.CreateObject("CrystalRuntime.Application")

Status
Not open for further replies.

ksbigfoot

Programmer
Joined
Apr 15, 2002
Messages
856
Location
CA
Our networking people changed all the passwords for everyone on the system. Now my crystal reports are able to be displayed by calling them over a webpage. Here is the code where the webpage fails to load, there are no lines of code before it.

Can someone point me in the right direction.

Code:
' CREATE THE APPLICATION OBJECT
If Not IsObject (session("oApp")) Then
  Set session("oApp") = Server.CreateObject("CrystalRuntime.Application")
End If
 
Hi vidru,
My error message is "HTTP 500 Internal server error", "The page cannot be displayed".

I did find that document, but I wasn't getting the message they indicated.

Thanks
 
Tracked down the problem to this specific instance.
The line of code where the application is failing is in the AlwaysRequiredSteps.asp:
Code:
Set session("oApp") = Server.CreateObject("CrystalRuntime.Application")

I check the Event viewer and I get this message:

DCOM got error "Overlapped I/O operation is in progress. " and was unable to logon DATASAFE\Administrator in order to run the server:
{41F5C17D-F0BD-4928-AD46-C8DDFF47D153}

Can anyone point me in the right direction
Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top