After I configure everything (IIS, Websites, permissions) on newly installed virtual server, I get this error when run the default.asp file.
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/default.asp, line 30
I found ASP 0177 post very useful. But I can't seem to solve it. It give a solution like this
A: This error means "Invalid class string" -- in other words the call to CreateObject failed because the name object cannot be found by the OLE sub-system. Causes include:
1. You really didn't run regsvr32 on the server after all.
2. You ran regsvr32 but it reported an error.
3. Someone modified security on part of the registry that's preventing the OLE subsystem from reading all or part of the HKEY_CLASSES_ROOT tree.
4. The name of the object you are trying to create was mispelled or is incorrect.
5. Determine if it's a permissions problem
6. Determine if it is a file permissions problem:
7. Check registry permissions
Which service do I have to register? Isn't ASP automatically installed on Server 2003 when install IIS? If not what setting do I need to change? This is a freshly installed Virtual Windows Server 2003?
EDIT: I think this link might work but not sure ASP Win Svr 2003
EDIT2: Code:
Set BACSE = Server.CreateObject("NAICSCodeSE2_1_0.Engine")
If Session("DEBUG") = "TRUE" then Response.Write "BACSE Debug="&BACSE.SetDebugMode(True)&"<BR>"