Sample ASP script can"t instantiate object

Sample ASP script can"t instantiate object

am 24.06.2007 21:23:42 von Jon Paal

trying to test these old guys on win xp pro sp2

http://support.microsoft.com/kb/249290




Sample ASP script can't instantiate object


--------------------------
[code]
Set objASP2HTM = Server.CreateObject("IISSample.Asp2Htm")

[error]
Server object error 'ASP 0177 : 800401f3'

Server.CreateObject Failed

-------------------------


found the msjava.dll exists on machine
get this error message for registering dll

---------------------------
Registry Editor error message
---------------------------
Cannot import C:\windows\system32\msjava.dll: The specified file is not a registry script.

You can only import binary registry files from within the registry editor.

any suggestions ?

Re: Sample ASP script can"t instantiate object

am 24.06.2007 22:14:35 von Jon Paal

got it registered but same object error

still open to ideas

Re: Sample ASP script can"t instantiate object

am 25.06.2007 10:14:22 von Daniel Crichton

Jon wrote on Sun, 24 Jun 2007 12:23:42 -0700:

> trying to test these old guys on win xp pro sp2
>
> http://support.microsoft.com/kb/249290
>
> Sample ASP script can't instantiate object
>
> --------------------------
> [code]
> Set objASP2HTM = Server.CreateObject("IISSample.Asp2Htm")
>
> [error]
> Server object error 'ASP 0177 : 800401f3'
>
> Server.CreateObject Failed
>
> -------------------------
>
> found the msjava.dll exists on machine
> get this error message for registering dll
>
> ---------------------------
> Registry Editor error message
> ---------------------------
> Cannot import C:\windows\system32\msjava.dll: The specified file is not a
> registry script.
>
> You can only import binary registry files from within the registry editor.
>
> any suggestions ?
>

To register a dll, you use regsvr32.exe, eg.

regsvr32 c:\windows\system32\msjava.dll

Where on Earth did you find any reference to importing a DLL into the
registry?

As to those components working at all, they were written for IIS4 on Windows
NT 4. I wouldn't be surprised if they don't work on XP/2003/Vista, and
they're certainly no longer supported by MS.

Dan