Al Smith
Feb 4th, 2001, 10:23 AM
Hi,
My question concerns line 10 and 11 of the below. My dll for this is named SvcOrd.dll.
What is Project1 in line 10 and 11?
This application works on the development PC (Win98 PWS) but doesn't on the production PC (WinNT 4.0 IIS).
(Can't create object error)
Thanks,
Al.
1. Response.Buffer=True
2. Response.Expires=0
3. If (VarType(Application("~WC~WebClassManager")) = 0) Then
4. Application.Lock
5. If (VarType(Application("~WC~WebClassManager")) = 0) Then
6. Set Application("~WC~WebClassManager") = Server.CreateObject("WebClassRuntime.WebClassManager")
7. End If
8. Application.UnLock
9. End If
10.Application("~WC~WebClassManager").ProcessRetainInstanceWebClass "Project1.WebClass1", _
11. "~WC~Project1.WebClass1", _
12. Server, _
13. Application, _
14. Session, _
15. Request, _
16. Response
My question concerns line 10 and 11 of the below. My dll for this is named SvcOrd.dll.
What is Project1 in line 10 and 11?
This application works on the development PC (Win98 PWS) but doesn't on the production PC (WinNT 4.0 IIS).
(Can't create object error)
Thanks,
Al.
1. Response.Buffer=True
2. Response.Expires=0
3. If (VarType(Application("~WC~WebClassManager")) = 0) Then
4. Application.Lock
5. If (VarType(Application("~WC~WebClassManager")) = 0) Then
6. Set Application("~WC~WebClassManager") = Server.CreateObject("WebClassRuntime.WebClassManager")
7. End If
8. Application.UnLock
9. End If
10.Application("~WC~WebClassManager").ProcessRetainInstanceWebClass "Project1.WebClass1", _
11. "~WC~Project1.WebClass1", _
12. Server, _
13. Application, _
14. Session, _
15. Request, _
16. Response