I have a simple test program that is demostrating that the orion server is
calling the jspInit() routine every time the page is requested! I understand
that it should only be called once when loaded, has anybody else seen this?
Instead of always showing one, it actually increments! Orionserver V1.2.4

Thanks in advance Norm Jefferies

Test Program:

<%@page language="java"
%>

<%!
        private int cnt = 0;
%>
<%!
public void jspInit()
{

        cnt++;
}

%>


<HTML><HEAD><TITLE>HIV InSite.com Trials Search</TITLE></HEAD>
<BODY bgcolor="#FFFFFF" alink="green" text="#000000" vlink="#0000cc">


<%


%>
<%= cnt %>
</BODY>


</HTML>



Reply via email to