Paul
Paul

Reputation: 1455

Classic ASP Server CreateObject

I have zero knowledge of classic ASP and unfortunately I have been given the task of getting a legacy .net webforms/classic asp site up and running. I am almost there (I think) however I am getting an error on this line

set objAppContext = Server.CreateObject( "P21Dat.AppContext" )

Here is the error

Server object error 'ASP 0177 : 8007007e'

Server.CreateObject Failed

/siteconfig.asp, line 71

8007007e

I have no idea what "P21Dat.AppContext" is any help?

Upvotes: 1

Views: 3290

Answers (2)

gbs
gbs

Reputation: 7266

Even after uninstalling and re-installing it several times, my dll wasn't picked up by my ASP application. I can clearly see it in Registry list. I even gave permission to that key to everyone but no go.

After several tries I found it was because my dll was on network drive. I copied to my local machine, un-installed and re-installed from local drive and it started working.

Upvotes: 1

Zam
Zam

Reputation: 2940

99.99% that ActiveX "P21Dat.AppContext" not registered on your machine.

0.01% that you don't have permission ;)

You could try to find in in registry...

You could use OleView program (or "Ole-Com Object Viewer" program) to get information about this ActiveX component...

Upvotes: 2

Related Questions