Hello.
I have one problem wich might be caused by another problem not DIRECTLY related to IIS.
I have a DLL (foxpro) that i already registered in my server using regsrv32. BUT when i go to Component Services i can't find IIS In-Process .... where i used to add the registered in windows2000 (I am currently working on 2003). That's my first problem. Now, assuming that in this new version of windows 2003 is not necessary that IIS In-Process registration, i register only my dll using regsrv32...
When i run my application (Classic ASP) i get the following error
error '80004005'
/LM/W3SVC/1/Root/falcon/global.asa, line 4
This is the global.asa file
<SCRIPT LANGUAGE="VBScript" RUNAT="Server">
Sub Application_OnStart
Set Rater = CreateObject("falcon.cmpratcnv")
Set Application("Rater") = Rater
End Sub
Sub Session_OnStart()
Session("Timeout") = 60
End Sub
Sub Application_OnEnd
set rater=nothing
End Sub
</SCRIPT>
Thank you.