I've recently aquirred ownership of a website that was build as an IIS Application within VB6.
This website is developed and maintained within Windows NT.
I've been asked to look into the possibility of moving development of this website to a XP build machine.
There appears to be some issues in running the web classes in debug mode and I can't seem to support this website in this environment.
If I create a simple IIS Application - New Project --> IIS Application and try to run this application I get the following error (which si the same error I'm getting with my website) -
HTTP 500.100 - Internal Server Error - ASP error
Error Type:
Server object, ASP 0177 (0x800A01F3)
Invalid class string
/Project1/WebClass1.ASP, line 14
Where the asp page created is -
<%
Server.ScriptTi meout=600
Response.Buffer =True
Response.Expire s=0
If (VarType(Applic ation("~WC~WebC lassManager")) = 0) Then
Application.Loc k
If (VarType(Applic ation("~WC~WebC lassManager")) = 0) Then
Set Application("~W C~WebClassManag er") = Server.CreateOb ject("WebClassR untime.WebClass Manager")
End If
Application.UnL ock
End If
Application("~W C~WebClassManag er").ProcessNoS tateWebClass "Project1.WebCl ass1", _
Server, _
Application, _
Session, _
Request, _
Response
%>
Does anyone out there know if there is a way of running VB6 IIS Applications in XP?
Is there a way of running a VB6 application without debugging. I'm a .NET developer and know you have 2 options when running your program in .NET - with or without debugging. Is there a similar way in VB6?
This website is developed and maintained within Windows NT.
I've been asked to look into the possibility of moving development of this website to a XP build machine.
There appears to be some issues in running the web classes in debug mode and I can't seem to support this website in this environment.
If I create a simple IIS Application - New Project --> IIS Application and try to run this application I get the following error (which si the same error I'm getting with my website) -
HTTP 500.100 - Internal Server Error - ASP error
Error Type:
Server object, ASP 0177 (0x800A01F3)
Invalid class string
/Project1/WebClass1.ASP, line 14
Where the asp page created is -
<%
Server.ScriptTi meout=600
Response.Buffer =True
Response.Expire s=0
If (VarType(Applic ation("~WC~WebC lassManager")) = 0) Then
Application.Loc k
If (VarType(Applic ation("~WC~WebC lassManager")) = 0) Then
Set Application("~W C~WebClassManag er") = Server.CreateOb ject("WebClassR untime.WebClass Manager")
End If
Application.UnL ock
End If
Application("~W C~WebClassManag er").ProcessNoS tateWebClass "Project1.WebCl ass1", _
Server, _
Application, _
Session, _
Request, _
Response
%>
Does anyone out there know if there is a way of running VB6 IIS Applications in XP?
Is there a way of running a VB6 application without debugging. I'm a .NET developer and know you have 2 options when running your program in .NET - with or without debugging. Is there a similar way in VB6?
Comment