Bazango
12-12-2001, 09:17 AM
This is a pretty strange problem. I am trying to get the sample web applications from Interdev 1.0 going, especially "Dos Perros".
I'm finding that once the global.asp for the Dos Perros is loaded, I can't run .asp files from any subdirectories in the root virtual to the server. I'm also finding that once a global.asp is loaded, another global.asp will not load up until I restart PWS from the DOS command line. I am able to determine all this by copying a test.asp file to these directories containing the following code:
<%
Dim sessItem, objArray
Response.Write "SessionID: " & Session.SessionID & "<P>"
Response.Write "List of " & Session.Contents.Count & _
" items in Session contents collection:<HR>"
For Each sessItem In Session.Contents
If IsObject(Session.Contents(sessItem)) Then
Response.Write(sessItem & " : Session object cannot " & _
"be displayed.<BR>")
ElseIf IsArray(Session.Contents(sessItem)) Then
Response.Write "Array named " & sessItem & "<ol>"
For Each objArray In Session.Contents(sessItem)
Response.Write "<li>" & objArray & "</li><BR>"
Next
Response.Write "</ol>"
Else
Response.Write(sessItem & " : " & _
Session.Contents(sessItem) & "<BR>")
End If
Next
%>
Another thing I am seeing from references and some previous experience is that maybe I should see a PWS icon in my Control Panel and I don't.
I've been posting this problem over at VirtualDr - Windows 98 (http://discussions.virtualdr.com/cgi-bin/forumdisplay.cgi?action=topics&forum=Windows+98&number=2&DaysPrune=10&LastLogin=). Run a search on my user name, TensorField there to see other evidence of the problem.
Any and all tips and clues would be appreciated.
I'm finding that once the global.asp for the Dos Perros is loaded, I can't run .asp files from any subdirectories in the root virtual to the server. I'm also finding that once a global.asp is loaded, another global.asp will not load up until I restart PWS from the DOS command line. I am able to determine all this by copying a test.asp file to these directories containing the following code:
<%
Dim sessItem, objArray
Response.Write "SessionID: " & Session.SessionID & "<P>"
Response.Write "List of " & Session.Contents.Count & _
" items in Session contents collection:<HR>"
For Each sessItem In Session.Contents
If IsObject(Session.Contents(sessItem)) Then
Response.Write(sessItem & " : Session object cannot " & _
"be displayed.<BR>")
ElseIf IsArray(Session.Contents(sessItem)) Then
Response.Write "Array named " & sessItem & "<ol>"
For Each objArray In Session.Contents(sessItem)
Response.Write "<li>" & objArray & "</li><BR>"
Next
Response.Write "</ol>"
Else
Response.Write(sessItem & " : " & _
Session.Contents(sessItem) & "<BR>")
End If
Next
%>
Another thing I am seeing from references and some previous experience is that maybe I should see a PWS icon in my Control Panel and I don't.
I've been posting this problem over at VirtualDr - Windows 98 (http://discussions.virtualdr.com/cgi-bin/forumdisplay.cgi?action=topics&forum=Windows+98&number=2&DaysPrune=10&LastLogin=). Run a search on my user name, TensorField there to see other evidence of the problem.
Any and all tips and clues would be appreciated.