I am doing an ASP web application with PerlScript, and it seems to work,
but I have been experiencing some peculiarities, particularly when it
starts a new session.
Steps:
1) set Session Timeout to 2 min
2) load an ASP page, displays fine
3) wait for timeout
4) hit F5 to force reload
5) one of two problems happen
5a) get a blank page. I don't have the HTML source here, but it looks
nothing like what it's supposed to. Something like (about 4 lines)
<!DOCTYPE HTML PUBLIC ...>
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; ...>
<BODY></BODY</HTML>
or
5b) get a 500.100 "Internal Server Error - ASP Error". Exact output
included below. I have no idea how to interpret this error.
6) hit F5 to force reload again - it works
Does anyone know what these problems are and how to fix them or track them
down?
HTTP 500.100 - Internal Server Error - ASP error
Internet Information Services
----------------------------------------------------------------------------
----
Technical Information (for support personnel)
Error Type:
$Response->writeblock(0); use Win32::ASP; require 'HRS_systemconfig.pl';
require 'lib/hrs.pl'; $Response->writeblock(1); $Response->writeblock(2);
$Response->writeblock(3); my $logged_in = &HRF_IsConnected; if ($logged_in)
{ &Print("<a href=$::MENU_URL>Menu</a> | "); &Print("<a
href=$::SITELIST_URL>Site List</a> | ") if &HRF_InGroup($::HRG_GROUP_SU);
&Print("<a href=$::LOGOUT_URL>Logout</a>"); } else { &Print("<a
href=$::INDEX_URL>Login</a>"); } $Response->writeblock(4); &Print($logged_in
? "Logged in as: " . &HRF_GetUsername : "Not logged in");
$Response->writeblock(5); $Response->writeblock(6);
$Response->writeblock(7); &HRF_DisplayStoredFeedback;
################################################################### # HRS -
xxxxxxxxxxxxxxxxxxxxx # # xxxxxxxxxxxxxxxxxxxxx # # This code is the
property of ME, and is not to be # distributed, used, modified, copied
without explicit permission. # # File: FILENAME # DESCRIPTION # #
xxxxxxxxxxxxxxxxxxxxx # History: # - drp111901 - created # # FORM USAGE: # -
listactive: list active sites (default 1) # - listinactive: list inactive
sites (default 0)
###################################################################
$Response->writeblock(8); $Response->writeblock(9); &HRF_Exit; (0x80004005)
Internal Error
/HRS/index.asp
Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR
1.0.3328)
Page:
GET /HRS/index.asp
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web