Averaging In JSP

I'm currently new in JSP and I've been reading several tutorials regarding it around the Internet but I'm still quite lost.
So is there anyone willing to assist me on how to start?
I need to make a program where in will first ask the user a number between 1-100 and if, for example, the user entered 50.
The JSP will ask 50 numbers and then the output is the average of all 50 numbers.
I'm quite confuse on how to code this thing, so can somebody help? Or give me a site that they think will be able to help me a lot since I'm a beginner.

__fcuklove wrote:
^ I couldn't agree more. Yeah, go do that duffmo! :D I will. You'll have to depend on other people who agree with you to help you from now on. We'll see how much instruction they provide.
I really appreciate the time given to reply on my thread but I really don't like fcukin' b^stards who are such a know-it-all.And I don't appreciate passive, do-nothing first posters who aren't willing to do anything to help themselves.
Worst, I don't like being treated as I'm too dumb to understand Java. You haven't shown any evidence of understanding anything. Even basic tutorials confuse you. Hence the conclusion. I'm simply judging by the evidence you've provided for me.
Sure, I haven't done any JSP - that's why I'm asking for help. DUH! My point is that this isn't a hand-holding nursery school. Asking for help means actually doing something. You haven't done anything except reading a bit and saying "I don't get it".
The tutorial is useful because it is providing me what I need only it still confuses me.So keep reading. Did you expect to pick it up in five minutes?
Believe me, people who might be helpful will see your behavior, note it, and shy away from your questions in the future. Sure your present behavior is a good idea?
%

Similar Messages

  • How given valus directly in jsp form ?

    hi
    i have a 1 html form.. in that first number , last number. and average..
    how to assign values for first number and last number direcly in jsp form..
    and also that values should be stored to Mysql..
    my final result is when i click the Average button it display the additon of two numbers.....
    plz help me how to calculate the average in jsp with mysql..
    plz provide code

    plz help me how to add two numbers
    1number=someone
    2number=someone
    average=result
    and when i assign values directly stored to mysql and retrive the database
    plz help and provide code

  • Too many decimals in Average value

    Hi
    I am using Report Builder and the wizard do design a table which i deploy as a .jsp page.
    For some columns in the table I select to display the average values. Some of the values looks fine with one decimal as i want, but some values is displayed with a lot of decimals (about 10) as 164,346666666666666666. I have tried to change the length but without effect. Are there any possibility to decide the number of digits to be shown in the report . Or is i it a bug in Report Builder.

    Go to Property Inspector of the field and choose the right "Format Mask".

  • How to call stored procedure from postgresql to jsp

    i'm using a jdeveloper.. and i'm a newbie of jsp.. i just wanna know how to call a stored procedure in jsp?... This is my function in postgres and i don't know how to call it in jsp...
    SELECT * from SP_1('2006-01-11') as ( company_code char(5), branch_category char(5), branch_code char(15), day_sales numeric(19,2), month_to_date numeric(19,2), no_of_transaction int8, month_to_date_py numeric(19,2), year_to_date numeric(19,2), year_to_date_py numeric(19,2), remarks text, time_reported text );

    hi again.. i'm using jsp in jdeveloper, i just wanna know how to declare double in jsp because my module is report and i need to get the average daily sales = 4500/ no. of transaction = 3. This is my code.. Where will i put the code in declaring the double and the average daily sales? Thanks in advance..
    <%@ page contentType="text/html;charset=windows-1252" import="java.sql.*,Connect.CRMCon"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>untitled</title>
    </head>
    <body>
    <%
    String ave = request.getParameter("ave_daily_sales");
    double cashsales = Double.parseDouble(ave);
    %>
    <%
    logparameters data = new logparameters();
    data.txtbox = request.getParameter("txtbox");
    %>
    <table cellspacing="3" cellpadding="2" border="1" width="100%">
    <tr>
    <td width="5%" bgcolor="#cccccc" height="29">
    <DIV align="center">Company Code</DIV>
    </td>
    <td width="4%" bgcolor="#cccccc" height="29">
    <DIV align="center">Branch Category</DIV>
    </td>
    <td width="6%" bgcolor="#cccccc" height="29">
    <DIV align="center">Branch Code</DIV>
    </td>
    <td width="8%" bgcolor="#cccccc" height="29">
    <DIV align="center">Day Sales</DIV>
    </td>
    <td width="9%" bgcolor="#cccccc" height="29">
    <DIV align="center">Month to Date</DIV>
    </td>
    <td width="5%" bgcolor="#cccccc" height="29">
    <DIV align="center">No.of Transaction</DIV>
    </td>
    <td width="9%" bgcolor="#cccccc" height="29">
    <DIV align="center">Month to Date(PY)</DIV>
    </td>
    <td width="9%" bgcolor="#cccccc" height="29">
    <DIV align="center">Ave.Daily Sales to Date</DIV>
    </td>
    <td width="9%" bgcolor="#cccccc" height="29">
    <DIV align="center">Year to Date</DIV>
    </td>
    <td width="9%" bgcolor="#cccccc" height="29">
    <DIV align="center">Year to Date(PY)</DIV>
    </td>
    <td width="9%" bgcolor="#cccccc" height="29">
    <DIV align="center">Remarks</DIV>
    </td>
    <td width="5%" bgcolor="#cccccc" height="29">
    <DIV align="center">Time Reported</DIV>
    </td>
    </tr>
    <%
    try
    CRMCon ccon = new CRMCon();
    Connection con = ccon.getConnection();
    String sql = "select * from sp_1('"+data.txtbox+"')";
    // String sql = "SELECT * from SP_1('"+ request.getParameter("data.txtbox")+"')" ;
    sql += " as (company_code char(5), branch_category char(5) ," ;
    sql += "branch_code char(15) , day_sales numeric(19,2)," ;
    sql += "month_to_date numeric(19,2), no_of_transaction int8," ;
    sql += "month_to_date_py numeric(19,2), year_to_date numeric(19,2)," ;
    sql += "year_to_date_py numeric(19,2), remarks text, time_reported text) " ;
    //out.println(sql);
    Statement st = con.createStatement();
    ResultSet rs = st.executeQuery(sql);
    while (rs.next())
    %>
    <tr>
    <td width="13%"> <%= rs.getString("company_code") %> </td>
    <td width="63%"> <%= rs.getString("branch_category") %> </td>
    <td width="24%"> <%= rs.getString("branch_code") %> </td>
    <td width="24%"> <%= rs.getString("day_sales") %> </td>
    <td width="24%"> <%= rs.getString("month_to_date") %> </td>
    <td width="24%"> <%= rs.getString("no_of_transaction") %> </td>
    <td width="24%"> <%= rs.getString("month_to_date_py") %> </td>
    <td width="24%"> <%= rs.getString("year_to_date") %> </td>
    <td width="24%"> <%= rs.getString("year_to_date_py") %> </td>
    <td width="24%"> <%= rs.getString("remarks") %> </td>
    <td width="24%"> <%= rs.getString("time_reported") %> </td>
    </tr>
    <%
    catch (Exception ex)
    out.println("Error:"+ex.getMessage());
    %>
    </table>
    </body>
    </html>
    <%!
    class logparameters
    public String txtbox;
    %>

  • Need to refresh the jsp page

    Hello Everyone,
    I am not sure if I can tackle the below issue with just html or I need to control it throught my servlet, so posting it on this forum, in case it is a pure html issue, please let me know.
    So here is the current situation:
    My jsp page gets data from servlet and displays it in a html table. The fields are criteria, median, average...cells of average, median etc are color coded, green, yellow or red, depending on whether the criteria is met or not.
    on wish list:
    I want the column "criteria" to be of text type so that the user can change the criteria value and see what effect does it have on the colors of columns "average", "median" etc. I do not want to write this changed criteria value back to db, I just want my jsp page to refresh every time user changes value in criteria text box and recalculate the color code for the rest of the columns.
    Here is what my jsp page looks like
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <%@ taglib uri="http://paginationtag.miin.com" prefix="pagination-tag"%>
    <html>
    <body>
      <table border="1">
        <c:forEach items="${sheetDataList}" var="releaseData">
        <tr>
          <td align="center"><input type="text" name="newcriteria" value="${releaseData.releasecriteria}" size="25"></td>
          <c:set var="yellowmark" value="${0.25*releaseData.releasecriteria+releaseData.releasecriteria}"/>
          <c:choose>
            <c:when test="${releaseData.average lt releaseData.releasecriteria}">
              <td bgcolor="green" align="center"><c:out value="${releaseData.average}"/></td>
            </c:when>
            <c:when test="${releaseData.average lt yellowmark}">
              <td bgcolor="yellow" align="center"><c:out value="${releaseData.average}"/></td>
            </c:when>
            <c:when test="${releaseData.average gt yellowmark}">
              <td bgcolor="red" align="center"><c:out value="${releaseData.average}"/></td>
            </c:when>
          </c:choose>
      </table>
    </body>
    </html>Thanks.

    I don't know what you are doing wrong in your code, but it seems like you are calling the JS function correctly. My feeling is there is some JS error occurring, maybe use a javascript debugger or some alerts to see where the problem is. I made as close a copy of your code I could (with some improvised improvements for keeping track of row counts and accessing the the values for the first 2 columns of the table). At the top I filled to Lists with data so I could cycle through the rows and columns. Then I do the JavaScript and the CSS, followed by the table generation.
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%
        java.util.List<java.util.List<luke.steve.RowObject>> sheetDataList = new java.util.ArrayList<java.util.List<luke.steve.RowObject>>();
        for (int r = 0; r < 10; r++) {
            java.util.List<luke.steve.RowObject> userActionData = new java.util.ArrayList<luke.steve.RowObject>();
            for(int c = 0; c < 5; c++) {
                 userActionData.add(new luke.steve.RowObject());
            sheetDataList.add(userActionData);
        request.setAttribute("sheetDataList", sheetDataList);
    %>
    <html>
      <head>
        <script type="text/javascript">
        <!--
          function setAllColors() {
            var currentRow = 1;
            var row = null;
            while((row = document.getElementById("row"+currentRow)) != null) {
              setColors(currentRow);
              currentRow++;
          function setColors(currentRow)
            var criteria = document.forms[currentRow-1].criteria.value;
            var yellowLine = 1.25 * criteria;
            var row = document.getElementById("row"+currentRow);
            var currentCol = 2;
            do {
              var col = row.cells[currentCol];
              var colValue = col.innerHTML * 1;
                   if (colValue <= criteria)  col.className = "green";
              else if (colValue < yellowLine) col.className = "yellow";
              else                            col.className = "red";
              currentCol = currentCol + 1;
            } while(row.cells[currentCol] != null);
        //-->
        </script>
        <!-- Make the clock look the way you want it to. -->
        <style type="text/css">
          .green
           background-color: green;
          .red
            background-color: red;
          .yellow
            background-color: yellow;
        </style>
        <title>Color Switcher</title>
      </head>
      <body onload="setAllColors();" onunload="">
        <table border="1">
          <tbody>
            <c:forEach var="userActionData" items="${sheetDataList}" varStatus="rowCounter">
              <tr name="row${rowCounter.count}" id="row${rowCounter.count}">
                <td>${userActionData[0].userAction}</td>
                <td><form onsubmit="setColors(${rowCounter.count}); return false;"><input name="criteria" type="text" value="${userActionData[0].releaseCriteria}"/></form></td>
                <c:forEach var="releaseData" items="${userActionData}" varStatus="colCounter">
                  <td>${releaseData.ninetyPercentile}</td>
                </c:forEach>
              </tr>
            </c:forEach>
          </tbody>
        </table>
      </body>
    </html>I made a dummy class called luke.steve.RowObject to hold the data (represents on releaseData object). The class just generates a bunch of random numbers for this test:
    package luke.steve;
    public class RowObject {
         public Integer getReleaseCriteria() {
              return Double.valueOf(Math.random()*500.0).intValue();
         public Integer getNinetyPercentile() {
              return Double.valueOf(Math.random()*500.0).intValue();
         public String getUserAction() {
              return "Action "+Double.valueOf(Math.random()*10.0).intValue();
    }In this example it works in FF3 and IE7 (though it looks nicer in FF3).

  • JSP newbie: My first JavaBean

    Hey guys. This is my first time with JSP, and I'm trying to create a JavaBean. I seem to be getting an error when I try to set up the following:
    I have a folder called "test" which is the root of my app. Under this directory, I have a folder called "WEB-INF", then a folder called "classes" then the folder called "mathy". Under "mathy" I have a the java file called average.java along with the compiled class file.
    The code for average.java is as follows:
    package mathy;
    import java.io.Serializable;
    public class average implements Serializable {
    private double total = 0;
    public average(double n1, double n2, double n3) {
    total = n1 + n2 + n3;
    total = total / 3;
    public double getAverage() {
    return total;
    then under the original "test" folder, I have a jsp page called "exp-1.jsp" with the following code:
    <% mathy.average av1 = new mathy.average(34.4, 56.1, 694.3); %>
    Now, I'm not trying to execute any methods, just trying to see if a bean can be made. But now luck. Can anyone help? Thanks, I really appreciate it.
    I get the following error by the way with Tomcat Version 4.0-b5:
    A Servlet Exception Has Occurred
    org.apache.jasper.JasperException: Unable to compile class for JSPC:\jakarta-tomcat-4.0-b5\work\localhost\test\exp_0002d4_jsp.java:55: Class mathy.average not found.
    mathy.average av1 = new mathy.average(34.4, 56.1, 694.3);
    ^
    C:\jakarta-tomcat-4.0-b5\work\localhost\test\exp_0002d4_jsp.java:55: Class mathy.average not found.
    mathy.average av1 = new mathy.average(34.4, 56.1, 694.3);
    ^
    2 errors

    it's fine to put package mathy. I use this method all the time. After that, you have to put this line at the top of your jsp page <jsp:useBean id="name_of_bean" scope="application" class="mathy.NameOfYourClass" />.
    If you can't have your last modified jsp file, try the following steps:
    1) Shutdown Tomcat and Start Tomcat again.
    2) Delete your root directory on tomcat\work\your_root_directory
    3) Close your IDE and open again.
    Any one of the steps above will be abled to solve your problems. Otherwise, just let me know.
    Good Luck.

  • How many JSP's at once?

    We have a server with 600 JSP's. Does that sound like a lot to you guys? I mean, they are all staying in memory and taking up GIGS of space. Is that right? Is there a good rule of thumb for the ration between # of JSP's and in-memory size? For example, if you have 4 GB of RAM, how many (approx) JPS's is that?

    of course we have the JVM size setup as big as possible
    my question is what does the JSP memory footprint look like, approx/average
    i simply don't have a profiler handy

  • Check average CPU utilization in AIX 5.3

    Hi All,
    could anyone please share knowledge on the following:
    How to check average CPU utilization in AIX 5.3.What command is used in AIX to check this output?
    Would appreciate an early reply!
    Thanks for your time!
    Regards,

    curt: Reports CPU utilization for each kernel thread (beginning with AIX 5.2)
    iostat: Displays utilization data for (Terminals, CPU, Disks, Adapters (beginning with AIX 5.1))
    netpmon: Uses the trace facility to report on network activity, including CPU consumption
    pprof: Reports CPU usage of all kernel threads over a period of time
    ps: Displays statistics and status information about the processes in the system, such as CPU utilization
    time, timex: Prints the elapsed and CPU time used by the execution of a command
    vmstat: Displays VMM data, such as CPU utilization
    [Performance reporting and analysis commands |http://publib.boulder.ibm.com/infocenter/systems/index.jsp?topic=/com.ibm.aix.prftungd/doc/prftungd/perf_report_anlysis_comms.htm]
    You can also use:
    TPROF
    http://www.ibm.com/developerworks/systems/articles/AIX5.2_performancetoolsupdatepart3.html

  • Setting up NetBeans WebApp without default JSP Page

    Hi all,
    I'm trying to create some basic servlet apps which can be accessed by stand alone java classes. I'm using netBeans to create a default Web Application and now i'm trying to remove the JSP (index.jsp) page which is created by default. Is there any simple why of doing this? I've trying removing it but errors are thrown by other project files.
    Many thanks for any help!

    By default the size of out (implicit object of JSPWriter) object is 8kb. Since OA.jsp and RF.jsp are JSPs my assumption is that they inherit a standard JSPWriter when creating the out object and therefore use the default page buffer size of 8kb. One of the jsp performance tips is to modify the page buffer size to better match the standard amount of output. The use of page buffer is mentioned in the Oracle JSP best practices document. It is pretty common to see this set in the standard 11i JSPs. A number of the jtf JSPs use a value of 24kb for the page size, while other apps module JSPs use various sizes from 12kb up to 200kb. I have also seen some analysis that showed that setting the page buffer size to correspond better to the amount of output being generated improves the garbage collection and heap management in hotspot. My goal is better performance, and I believe that setting the page buffer size to a value that is closer to my average page size would improve overall performance.

  • Help, Install EBS 11i, JSP is not responding

    Good afternoon,
    I tried to install oracle 11i
    - Window XP, SP2,
    - vc98
    - cygwin
    Rename :
    gawk.exe to awk.exe
    grep.exe to egrep.exe
    make.exe to gnumake.exe
    gcc.exe to cc.exe
    ipconfig :
    Windows IP Configuration
    Ethernet adapter Local Area Connection:
    Connection-specific DNS Suffix . : mydomain
    IP Address. . . . . . . . . . . . : 192.168.1.100
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . : 192.168.1.1
    Everything look ok but when post installation, I got an error :
    JSP Check
    checking URL = http://gim11.mydomain.com:8000/OA_HTML/jsp/fnd/fndhelp.jsp?dbc=D:\oracle\visappl\fnd\11.5.0\secure\VIS_gim11\vis.dbc
    JSP is not responding, waiting 15 seconds and retesting.
    JSP is not responding, waiting 15 seconds and retesting.
    JSP is not responding, waiting 15 seconds and retesting.
    JSP is not responding, waiting 15 seconds and retesting.
    JSP is not responding
    Then Retry, did not work. Restart computer wait until 1 hour
    and start : rapidwiz.cmd -restart, some, did not work.
    Repeat again, same ???? What's wrong ???
    Anybody can help ? I tried more than 20 time.....
    Thank you very much guru.

    c:\ping gim11.mydomain.com
    Pinging gim11.mydomain.com [192.168.1.100] with 32 bytes of data:
    Reply from 192.168.1.100: bytes=32 time<1ms TTL=128
    Reply from 192.168.1.100: bytes=32 time<1ms TTL=128
    Reply from 192.168.1.100: bytes=32 time<1ms TTL=128
    Reply from 192.168.1.100: bytes=32 time<1ms TTL=128
    Ping statistics for 192.168.1.100:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    c:\ping gim11 :
    Pinging gim11.mydomain [192.168.1.100] with 32 bytes of data:
    Reply from 192.168.1.100: bytes=32 time<1ms TTL=128
    Reply from 192.168.1.100: bytes=32 time<1ms TTL=128
    Reply from 192.168.1.100: bytes=32 time<1ms TTL=128
    Reply from 192.168.1.100: bytes=32 time<1ms TTL=128
    Ping statistics for 192.168.1.100:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    setup host in windows :
    192.168.1.100 mydomain.com
    192.168.1.100 gim11.mydomain.com
    Is it ok ?
    no firewall active, no antivirus, no setup loopback.
    computer connect to wireless router, and IP number got from router (192.168.1.100).
    Thank's

  • Inconsistent performance jsp

    Hello,
    We are getting extremely low performance on one jsp page.
    Under stress tests, the performance of other pages scale
    consistently.......... this page does not.
    It contains a javascript tree (that can have up to 1000 nodes).
    We have played with the page buffer settings .... / allocating execute
    queues etc.
    Consistently, the same thing happens .... the first test is positive...
    performance is better, but then we carry out the same test again 10
    minutes later and the performance dramatically drops again to the same
    low ...... 20 sec response times.
    If we put a System.out.println on the page .... measuring the time it
    takes to get from the top of the jsp to the bottom .... it averages at
    around 1000msec .... and blows out maybe once to 10sec.
    Anyone gat any ideas ?
    etienne deleflie

    I have no explanation why two identical pages perform differently - except that
    perhaps they are not identical.
    Is the delay exactly 20 seconds? Look for something (a timeout or flushing maybe)
    that is configured to 20 seconds.
    Garbage collection can cause inconsistent performance. Run your JVM with -verbose:gc.
    What do you mean by 'javascript'? Client side javascript runs in the browser -
    it doesn't really have much to do with WebLogic. WebLogic doesn't support serverside
    javascript. Do you mean Java scriptlets, perhaps?
    If the delay is from the load testing software, why don't you see the delay in
    both pages?
    Have you set pageCheckSeconds and reloadCheckSecs to zero for stress testing?
    (not that this should cause a 20 second delay).
    Take thread dumps as Dimitri suggested and post here.
    Mike
    Etienne Deleflie <[email protected]> wrote:
    hello,
    We have just done an other test, we have replaced the problem page with
    one
    of the other pages that causes no problems. ......... but, strangely
    enough,
    it still blows out to 20 sec delays. (where as the page that we copied
    does
    not........... their content is identical, one blows out to 20 sec ,
    the
    other stays around 1 sec)...... very strange.
    So now we have 2 identical pages (only difference is the URL). Under
    heavy
    testing, one blows out to 20 sec, the other remains at 1 sec.
    Which makes me think of 2 possibilities,
    either
    1. the delay in the offending page is being caused by the way the stress
    testing software is sending its requests to Weblogic. (we are using OpenSTA
    ........... 60 concurrent users) Does anyone have any experience with
    using
    OpenSTA to stress test Weblogic ?
    2. Weblogic caches some settings for a certain page......... and those
    settings still apply to that page (represented by a URL) even when the
    contents of the page are entirely changed.
    etienne
    Dimitri Rakitine wrote:
    Try to make thread dump (or several) during these 20 sec
    to see what this page is doing.
    Etienne Deleflie <[email protected]> wrote:
    Hello,
    We are getting extremely low performance on one jsp page.
    Under stress tests, the performance of other pages scale
    consistently.......... this page does not.
    It contains a javascript tree (that can have up to 1000 nodes).
    We have played with the page buffer settings .... / allocating execute
    queues etc.
    Consistently, the same thing happens .... the first test is positive...
    performance is better, but then we carry out the same test again
    10
    minutes later and the performance dramatically drops again to thesame
    low ...... 20 sec response times.
    If we put a System.out.println on the page .... measuring the time
    it
    takes to get from the top of the jsp to the bottom .... it averagesat
    around 1000msec .... and blows out maybe once to 10sec.
    Anyone gat any ideas ?
    etienne deleflie--
    Dimitri

  • CGI to JSP Conversion

    I was wondering if I had a message board similar to this one that was built in C++ CGI, how long would it take to convert, on average, to a JSP forum. I am basically looking for some kind of conversion time frame from CGI to JSP. Opinions are welcome...

    I cannot give you any estimate or anything in terms of an actual number.
    However I do know that your time will be significantly affected in the desired direction by using software such as Jive http://www.jivesoftware.com

  • Slow rendering of JSP pages

    Hello,
    We are in the process of upgrading iPlanet 4.1 to 6.1Sp2. We have made enhancements to our code to support this effort, ie making our session bean serializable, adding the context dir in jsp to jsp calls.
    Right now we are noticing slow rendering speed for jsp pages compared to iPlanet 4.1. It seems the page loads to a certain point, there is about 2-4 second delay before the page completes loading.
    I've activated the monitor for performance statistics.
    Here is the perf dump.
    webservd pid: 8109
    Sun ONE Web Server 6.1SP2 B04/07/2004 16:09 (SunOS DOMESTIC)
    Server started Tue Jul 13 10:33:08 2004
    Process 8109 started Tue Jul 13 10:33:08 2004
    ConnectionQueue:
    Current/Peak/Limit Queue Length 0/1/4096
    Total Connections Queued 11
    Average Queue Length (1, 5, 15 minutes) 0.00, 0.00, 0.00
    Average Queueing Delay 0.15 milliseconds
    ListenSocket group1:
    Address http://10.201.1.53:80
    Acceptor Threads 1
    Default Virtual Server https-infa.net
    KeepAliveInfo:
    KeepAliveCount 2/256
    KeepAliveHits 44
    KeepAliveFlushes 0
    KeepAliveRefusals 0
    KeepAliveTimeouts 8
    KeepAliveTimeout 30 seconds
    SessionCreationInfo:
    Active Sessions 2
    Keep-Alive Sessions 0
    Total Sessions Created 48/256
    CacheInfo:
    enabled yes
    CacheEntries 27/1024
    Hit Ratio 82/140 ( 58.57%)
    Maximum Age 30
    Native pools:
    NativePool:
    Idle/Peak/Limit 1/1/128
    Work Queue Length/Peak/Limit 0/0/0
    Server DNS cache disabled
    Async DNS disabled
    Performance Counters:
    Average Total Percent
    Total number of requests: 57
    Request processing time: 1.2522 71.3780
    default-bucket (Default bucket)
    Number of Requests: 57 (100.00%)
    Number of Invocations: 866 (100.00%)
    Latency: 0.0003 0.0174 ( 0.02%)
    Function Processing Time: 1.2519 71.3606 ( 99.98%)
    Total Response Time: 1.2522 71.3780 (100.00%)
    Sessions:
    Process Status Function
    8109 response service-dump
    response service-j2ee

    Here is a sample of jsp that renders partially. Each page renders to the same spot for that page, then there is a 5-10 second delay before the page finishes.
    <-- Partial Page rendered -->
    <HTML>
    <HEAD>
    <TITLE> FAST : Health Check</TITLE>
    <link rel="stylesheet" type="text/css" href="/styles/table.css">
    <script>
    <!--
    if (top.location != location) top.location.href = location.href;
    //-->
    </script>
    </HEAD>
    <BODY BACKGROUND="/graphics/BACK25.jpg" BGPROPERTIES="FIXED">
    <SCRIPT>
    var menuBarOption = "";
    </SCRIPT>
    <SCRIPT>
    <!-- Begin
    var activeColor = "#COCOCO";
    var inActiveColor = "#000066";
    var whatColor = "#000066";
    var fontColor = "#COCOCO";
    document.write('<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="780" height="80">');
    document.write('<TR>');
    document.write('<TD ALIGN="right" width="300" rowspan="2" bgcolor="#FFFFFF" valign="bottom"><a href="/"><img border="0" src="/graphics/infaheadbig2.jpg" align="absbottom" width="300" height="80"></a>');
    document.write('</TD>');
    document.write('<TD ALIGN="right" valign="bottom" bgcolor="#FFFFFF">');
    document.write('<table border="0" cellspacing="0" cellpadding="2" valign="bottom">');
    document.write(' <tr>');
    document.write('<td align="center">');
    document.write('<font face="Arial" size="1" color="#FFFFFF"><a target="_blank" href="http://www.forwardair.com"  style="color: red">www.ForwardAir.com</a>&nbsp</font><b><font size="3" color="#D3D0D5" face="Verdana"> | </font></b>');
    document.write('<font face="Arial" size="1" color="#FFFFFF"><a href="/" style="color: #000066">Home</a>&nbsp</font><b><font size="3" color="#D3D0D5" face="Verdana"> | </font></b>');
    document.write('<font face="Arial" size="1" color="#FFFFFF"><a href="/servlet/salesCRM/logon.jsp"  style="color: #000066">Sales & Marketing</a>&nbsp</font><b><font size="3" color="#D3D0D5" face="Verdana"> | </font></b>');
    document.write('<font face="Arial" size="1" color="#FFFFFF"><a href="/servlet/operations/logon.jsp" style="color: #000066">Operations</a>&nbsp</font><b><font size="3" color="#D3D0D5" face="Verdana"> | </font></b>');
    document.write('<font face="Arial" size="1" color="#FFFFFF"><a href="/servlet/corporate/login.jsp" style="color: #000066">Corporate</a>&nbsp</font><b><font size="3" color="#D3D0D5" face="Verdana"> | </font></b>');
    document.write('<font face="Arial" size="1" color="#FFFFFF"><a href="/fast/fast.htm" style="color: #000066">FAST</a></font>');
    document.write('</td>');
    document.write(' </tr>');
    document.write('</table>');
    document.write('</TD>');
    document.write('</TR>');
    document.write('<TR>');
    document.write('<TD ALIGN="left" bgColor="#FFFFFF" valign="bottom">');
    document.write('<table border="0" cellspacing="1" width="100%">');
    document.write('<tr>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "AIRBILLS") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">Airbills<br>');
    document.write('<a href="/servlet/airbills/fatnt.jsp">');
    document.write('<img border="0" src="/graphics/boxicon.gif" width="32" height="32"></a></font></td>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "EMPLOYEES") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">Directory<br>');
    document.write('<a href="/directory.htm">');
    document.write('<img border="0" src="/graphics/peopleicon.gif" width="32" height="32"></a></font></td>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "BENEFITS") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">Benefits<br>');
    document.write('<a href="/employees/benefits.htm">');
    document.write('<img border="0" src="/graphics/moneyicon.gif" width="32" height="32"></a></font></td>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "FORMS") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">Forms<br>');
    document.write('<a href="/forms.htm">');
    document.write('<img border="0" src="/graphics/formicon2.gif" width="32" height="32"></a></font></td>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "NEWS") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">News<br>');
    document.write('<a href="/news.htm">');
    document.write('<img border="0" src="/graphics/newsicon.gif" width="32" height="32"></a></font></td>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "TOOLS") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">Tools<br>');
    document.write('<a href="/tools.htm">');
    document.write('<img border="0" src="/graphics/toolsicon.gif" width="32" height="32"></a></font></td>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "SEARCH") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">Search<br>');
    document.write('<a href="/search.htm">');
    document.write('<img border="0" src="/graphics/magglassicon.gif" width="32" height="32"></a></font></td>');
    document.write('</TR>');
    document.write('</TABLE>');
    document.write('</TD>');
    document.write('</TABLE>');
    // End -->
    </SCRIPT>
    <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>
    <TR>
    <TD width="85" height="600" bgcolor="#000066" VALIGN="TOP">
    <BR>
    <SCRIPT>
    var publicSCRMOption  = "PROCESSES";
    </SCRIPT>
    <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" ALIGN="LEFT">
    <TR><TD height="15" NOWRAP>
    <FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFFFFF">
    <STRONG>  FAST Menu </STRONG></FONT>
    </TD></TR>
    <TR><TD height="15" NOWRAP>
    <SCRIPT>
    if (publicSCRMOption == "WEBTRENDS")
         document.write('  <img border="0" src="/salesCRM/graphics/rarrow.gif" width="8" height="12">');
    else
         document.write(' ');
    </SCRIPT>
    <A HREF="/fast/fast.htm"><FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFCC66">
    <SPAN STYLE="{text-decoration:none}"><STRONG> WebTrends</STRONG></SPAN></FONT></A>
    </TD></TR>
    <TR><TD height="15" NOWRAP>
    <SCRIPT>
    if (publicSCRMOption == "PREMIER")
         document.write('  <img border="0" src="/salesCRM/graphics/rarrow.gif" width="8" height="12">');
    else
         document.write(' ');
    </SCRIPT>
    <A HREF="/servlet/fast/premierLogin.jsp"><FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFCC66">
    <SPAN STYLE="{text-decoration:none}"><STRONG> Premier</STRONG></SPAN></FONT></A>
    </TD></TR>
    <TR><TD height="15" NOWRAP>
    <SCRIPT>
    if (publicSCRMOption == "PROCESSES")
         document.write('  <img border="0" src="/salesCRM/graphics/rarrow.gif" width="8" height="12">');
    else
         document.write(' ');
    </SCRIPT>
    <A HREF="/servlet/faf.unix.servlet.GetHealthCheckServlet"><FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFCC66">
    <SPAN STYLE="{text-decoration:none}"><STRONG> Processes</STRONG></SPAN></FONT></A>
    </TD></TR>
    <TR><TD height="15" NOWRAP>
    <SCRIPT>
    if (publicSCRMOption == "EDISTATUS")
         document.write('  <img border="0" src="/salesCRM/graphics/rarrow.gif" width="8" height="12">');
    else
         document.write(' ');
    </SCRIPT>
    <A HREF="/servlet/faf.unix.servlet.GetEDIStatusServlet"><FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFCC66">
    <SPAN STYLE="{text-decoration:none}"><STRONG> EDI</STRONG></SPAN></FONT></A>
    </TD></TR>
    <TR><TD height="15" NOWRAP>
    <SCRIPT>
    if (publicSCRMOption == "SANIT<--- End of Partial Page --->
    This is the complete page which take about 5-10 seconds
    <--- Beginning of Completed Page --->
    <HTML>
    <HEAD>
    <TITLE> FAST : Health Check</TITLE>
    <link rel="stylesheet" type="text/css" href="/styles/table.css">
    <script>
    <!--
    if (top.location != location) top.location.href = location.href;
    //-->
    </script>
    </HEAD>
    <BODY BACKGROUND="/graphics/BACK25.jpg" BGPROPERTIES="FIXED">
    <SCRIPT>
    var menuBarOption = "";
    </SCRIPT>
    <SCRIPT>
    <!-- Begin
    var activeColor = "#COCOCO";
    var inActiveColor = "#000066";
    var whatColor = "#000066";
    var fontColor = "#COCOCO";
    document.write('<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="780" height="80">');
    document.write('<TR>');
    document.write('<TD ALIGN="right" width="300" rowspan="2" bgcolor="#FFFFFF" valign="bottom"><a href="/"><img border="0" src="/graphics/infaheadbig2.jpg" align="absbottom" width="300" height="80"></a>');
    document.write('</TD>');
    document.write('<TD ALIGN="right" valign="bottom" bgcolor="#FFFFFF">');
    document.write('<table border="0" cellspacing="0" cellpadding="2" valign="bottom">');
    document.write(' <tr>');
    document.write('<td align="center">');
    document.write('<font face="Arial" size="1" color="#FFFFFF"><a target="_blank" href="http://www.forwardair.com"  style="color: red">www.ForwardAir.com</a>&nbsp</font><b><font size="3" color="#D3D0D5" face="Verdana"> | </font></b>');
    document.write('<font face="Arial" size="1" color="#FFFFFF"><a href="/" style="color: #000066">Home</a>&nbsp</font><b><font size="3" color="#D3D0D5" face="Verdana"> | </font></b>');
    document.write('<font face="Arial" size="1" color="#FFFFFF"><a href="/servlet/salesCRM/logon.jsp"  style="color: #000066">Sales & Marketing</a>&nbsp</font><b><font size="3" color="#D3D0D5" face="Verdana"> | </font></b>');
    document.write('<font face="Arial" size="1" color="#FFFFFF"><a href="/servlet/operations/logon.jsp" style="color: #000066">Operations</a>&nbsp</font><b><font size="3" color="#D3D0D5" face="Verdana"> | </font></b>');
    document.write('<font face="Arial" size="1" color="#FFFFFF"><a href="/servlet/corporate/login.jsp" style="color: #000066">Corporate</a>&nbsp</font><b><font size="3" color="#D3D0D5" face="Verdana"> | </font></b>');
    document.write('<font face="Arial" size="1" color="#FFFFFF"><a href="/fast/fast.htm" style="color: #000066">FAST</a></font>');
    document.write('</td>');
    document.write(' </tr>');
    document.write('</table>');
    document.write('</TD>');
    document.write('</TR>');
    document.write('<TR>');
    document.write('<TD ALIGN="left" bgColor="#FFFFFF" valign="bottom">');
    document.write('<table border="0" cellspacing="1" width="100%">');
    document.write('<tr>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "AIRBILLS") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">Airbills<br>');
    document.write('<a href="/servlet/airbills/fatnt.jsp">');
    document.write('<img border="0" src="/graphics/boxicon.gif" width="32" height="32"></a></font></td>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "EMPLOYEES") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">Directory<br>');
    document.write('<a href="/directory.htm">');
    document.write('<img border="0" src="/graphics/peopleicon.gif" width="32" height="32"></a></font></td>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "BENEFITS") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">Benefits<br>');
    document.write('<a href="/employees/benefits.htm">');
    document.write('<img border="0" src="/graphics/moneyicon.gif" width="32" height="32"></a></font></td>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "FORMS") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">Forms<br>');
    document.write('<a href="/forms.htm">');
    document.write('<img border="0" src="/graphics/formicon2.gif" width="32" height="32"></a></font></td>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "NEWS") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">News<br>');
    document.write('<a href="/news.htm">');
    document.write('<img border="0" src="/graphics/newsicon.gif" width="32" height="32"></a></font></td>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "TOOLS") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">Tools<br>');
    document.write('<a href="/tools.htm">');
    document.write('<img border="0" src="/graphics/toolsicon.gif" width="32" height="32"></a></font></td>');
    whatColor = inActiveColor;
    fontColor = activeColor;
    if (menuBarOption == "SEARCH") {
       whatColor = activeColor;
       fontColor = inActiveColor;
    document.write('<td align="center" bgcolor="' + whatColor + '" valign="top" width="70"><font face="Arial" size="1" color="' +  fontColor + '">Search<br>');
    document.write('<a href="/search.htm">');
    document.write('<img border="0" src="/graphics/magglassicon.gif" width="32" height="32"></a></font></td>');
    document.write('</TR>');
    document.write('</TABLE>');
    document.write('</TD>');
    document.write('</TABLE>');
    // End -->
    </SCRIPT>
    <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>
    <TR>
    <TD width="85" height="600" bgcolor="#000066" VALIGN="TOP">
    <BR>
    <SCRIPT>
    var publicSCRMOption  = "PROCESSES";
    </SCRIPT>
    <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" ALIGN="LEFT">
    <TR><TD height="15" NOWRAP>
    <FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFFFFF">
    <STRONG>  FAST Menu </STRONG></FONT>
    </TD></TR>
    <TR><TD height="15" NOWRAP>
    <SCRIPT>
    if (publicSCRMOption == "WEBTRENDS")
         document.write('  <img border="0" src="/salesCRM/graphics/rarrow.gif" width="8" height="12">');
    else
         document.write(' ');
    </SCRIPT>
    <A HREF="/fast/fast.htm"><FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFCC66">
    <SPAN STYLE="{text-decoration:none}"><STRONG> WebTrends</STRONG></SPAN></FONT></A>
    </TD></TR>
    <TR><TD height="15" NOWRAP>
    <SCRIPT>
    if (publicSCRMOption == "PREMIER")
         document.write('  <img border="0" src="/salesCRM/graphics/rarrow.gif" width="8" height="12">');
    else
         document.write(' ');
    </SCRIPT>
    <A HREF="/servlet/fast/premierLogin.jsp"><FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFCC66">
    <SPAN STYLE="{text-decoration:none}"><STRONG> Premier</STRONG></SPAN></FONT></A>
    </TD></TR>
    <TR><TD height="15" NOWRAP>
    <SCRIPT>
    if (publicSCRMOption == "PROCESSES")
         document.write('  <img border="0" src="/salesCRM/graphics/rarrow.gif" width="8" height="12">');
    else
         document.write(' ');
    </SCRIPT>
    <A HREF="/servlet/faf.unix.servlet.GetHealthCheckServlet"><FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFCC66">
    <SPAN STYLE="{text-decoration:none}"><STRONG> Processes</STRONG></SPAN></FONT></A>
    </TD></TR>
    <TR><TD height="15" NOWRAP>
    <SCRIPT>
    if (publicSCRMOption == "EDISTATUS")
         document.write('  <img border="0" src="/salesCRM/graphics/rarrow.gif" width="8" height="12">');
    else
         document.write(' ');
    </SCRIPT>
    <A HREF="/servlet/faf.unix.servlet.GetEDIStatusServlet"><FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFCC66">
    <SPAN STYLE="{text-decoration:none}"><STRONG> EDI</STRONG></SPAN></FONT></A>
    </TD></TR>
    <TR><TD height="15" NOWRAP>
    <SCRIPT>
    if (publicSCRMOption == "SANITYCHECK")
         document.write('  <img border="0" src="/salesCRM/graphics/rarrow.gif" width="8" height="12">');
    else
         document.write(' ');
    </SCRIPT>
    <A HREF="/servlet/faf.unix.servlet.GetSanityCheckDiagnosticServlet"><FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFCC66">
    <SPAN STYLE="{text-decoration:none}"><STRONG>Sanity Check</STRONG></SPAN></FONT></A>
    </TD></TR>
    <TR><TD height="15" NOWRAP>
    <SCRIPT>
    if (publicSCRMOption == "FASTBOOK")
         document.write('  <img border="0" src="/salesCRM/graphics/rarrow.gif" width="8" height="12">');
    else
         document.write(' ');
    </SCRIPT>
    <A HREF="/fast/fastBook.htm"><FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFCC66">
    <SPAN STYLE="{text-decoration:none}"><STRONG> FAST Book</STRONG></SPAN></FONT></A>
    </TD></TR>
    <TR><TD height="15" NOWRAP>
    <SCRIPT>
    if (publicSCRMOption == "AWBREPORT")
         document.write('  <img border="0" src="/salesCRM/graphics/rarrow.gif" width="8" height="12">');
    else
         document.write(' ');
    </SCRIPT>
    <A HREF="/servlet/faf.unix.servlet.AWBCountReportServlet"><FONT SIZE="-2" FACE="verdana, arial, helvetica" COLOR="#FFCC66">
    <SPAN STYLE="{text-decoration:none}"><STRONG>AWB Report</STRONG></SPAN></FONT></A>
    </TD></TR>
    </TABLE>
    </TD>
    <TD width="715" VALIGN="TOP">
    <DIV ALIGN="right">
    <font size="1" color='black'><script LANGUAGE="JavaScript" SRC="/date.js"></script></font>
    </DIV>
    <H4>   Process - Health Check</H4>
    <form  name="processes" method="POST">
    <BLOCKQUOTE>
    AS400 DATA PULL - HEALTH CHECK (For IT Personnel Use)
    <BR><BR>
    <table border="1" bordercolordark="#003366" bordercolorlight="#003366" cellpadding="4" cellspacing="0" width="90%">
    <tr bgcolor="#003366">
    <TD align="center"><b><font color="#ffffff" size="2">NAME</b></font></TD>
    <TD align="center"><b><font color="#ffffff" size="2">RUN</b></font></TD>
    <TD align="center"><b><font color="#ffffff" size="2">STARTED</b></font></TD>
    <TD align="center"><b><font color="#ffffff" size="2">FINISHED</b></font></TD>
    <TD align="center"><b><font color="#ffffff" size="2">FLAG</b></font></TD>
    <TD align="center"><b><font color="#ffffff" size="2">RECOVERY</b></font></TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> CLIENTAR </TD><TD align='center'> Daily </TD><TD align='left'> 6/30/04 9:56 AM </TD><TD align='left'> 6/30/04 10:00 AM </TD><TD align='center'> SUCCESS </TD><TD align='left'> RESTART THE PROCESS </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> CONTAINERALERT </TD><TD align='center'> DAILY </TD><TD align='left'> 6/23/04 6:00 AM </TD><TD align='left'> 6/23/04 6:00 AM </TD><TD align='center'> SUCCESS </TD><TD align='left'> RESTART THE PROCESS </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> DAYMONTHREVENUE </TD><TD align='center'> Daily </TD><TD align='left'> 6/23/04 5:20 AM </TD><TD align='left'> 6/23/04 5:39 AM </TD><TD align='center'> SUCCESS </TD><TD align='left'>   </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> FADAILYREVENUE </TD><TD align='center'> Daily </TD><TD align='left'> 6/30/04 10:13 AM </TD><TD align='left'> 6/30/04 10:19 AM </TD><TD align='center'> SUCCESS </TD><TD align='left'> RESTART THE PROCESS </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> FAONTIMECOMPLIANCE </TD><TD align='center'> Daily </TD><TD align='left'> 7/15/04 2:44 PM </TD><TD align='left'> 7/15/04 2:47 PM </TD><TD align='center'> SUCCESS </TD><TD align='left'>   </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> FAPAYROLLLOCS </TD><TD align='center'> WEEKLY </TD><TD align='left'> 6/18/04 4:30 PM </TD><TD align='left'> 6/18/04 4:30 PM </TD><TD align='center'> SUCCESS </TD><TD align='left'> RESTART THE PROCESS </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> FAPROCESS </TD><TD align='center'> Daily </TD><TD align='left'> 6/23/04 4:00 AM </TD><TD align='left'> 6/23/04 4:02 AM </TD><TD align='center'> SUCCESS </TD><TD align='left'> RESTART THE PROCESS </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> FATIMESHEET </TD><TD align='center'> WEEKLY </TD><TD align='left'> 6/18/04 4:30 PM </TD><TD align='left'> 6/18/04 4:39 PM </TD><TD align='center'> SUCCESS </TD><TD align='left'> CLEAR DB AND RESTART PROCESS </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> FAVOLUME </TD><TD align='center'> Daily </TD><TD align='left'> 6/30/04 10:30 AM </TD><TD align='left'> 6/30/04 4:15 PM </TD><TD align='center'> SUCCESS </TD><TD align='left'> RESTART THE PROCESS </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> HP_EMPEXTRACT </TD><TD align='center'> Daily </TD><TD align='left'> 7/26/04 7:10 AM </TD><TD align='left'> 7/26/04 7:10 AM </TD><TD align='center'> SUCCESS </TD><TD align='left'> RESTART THE PROCESS </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> HP_HOURSLOAD </TD><TD align='center'> Daily </TD><TD align='left'> 7/26/04 7:10 AM </TD><TD align='left'> 7/26/04 7:10 AM </TD><TD align='center'> SUCCESS </TD><TD align='left'> RESTART THE PROCESS </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> HP_PUNCHPROCESS </TD><TD align='center'> Daily </TD><TD align='left'> 7/26/04 7:10 AM </TD><TD align='left'> 7/26/04 7:10 AM </TD><TD align='center'> SUCCESS </TD><TD align='left'> RESTART THE PROCESS </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> MONTHLYVOLUME </TD><TD align='center'> Monthly </TD><TD align='left'> 6/1/04 12:00 AM </TD><TD align='left'> 6/1/04 12:11 AM </TD><TD align='center'> SUCCESS </TD><TD align='left'> RESTART THE PROCESS </TD>
    </tr>
    <tr bgcolor="#FFFFFF">
    <TD align='center'> PREPAIDRATEMAP </TD><TD align='center'> DAILY </TD><TD align='left'> 6/29/04 10:26 AM </TD><TD align='left'> 6/29/04 10:38 AM </TD><TD align='center'> SUCCESS </TD><TD align='left'> RESTART THE PROCESS </TD>
    </tr>
    <TR bgcolor="#FFFFFF">
    <TD colspan="6" align="center">
    <B>Total records returned : 14</B>
    </TD>
    </TR>
    </TABLE>
    </form>
    </BLOCKQUOTE>
    <script LANGUAGE="JavaScript" SRC="/publicFooter.js"></script>
    </TD>
    </TR>
    </TABLE>
    </BODY>
    </HTML><--- End of Complete page --->

  • Tuning basd on the result of the DumpPoolStatistics.jsp

    Hi All,
    (Apps ADF BC+Faces 10.1.3.3)
    On tuning effort, I am suspecting that the CPU is working to hard because of too many activation and passivation, so I run Steve's DumpPoolStatistics.jsp , but still cannot read the result clearly.
    The application is tunning on 2 JVMs OC4J Instance, here is the result :
    Pool Statistics for Pool 'itt.sales.model.service.ITTSalesAMLocal'
    Back to Pool List
    head:Application module lifetime statistics
    Number of application module creations,559
    Number of application module removals,548
    head:State management statistics
    Number of transactional state activations,739
    Number of transactional state passivations,1172
    head:Application pool use statistics
    Number of application pool check outs,48981
    Number of application pool check ins,48981
    Number of referenced application modules that were reused,47568
    Number of referenced application modules that were recycled,631
    Number of unreferenced application modules that were recycled,223
    Number of application pool check out failures,0
    head:Application module statistics
    Total number of application modules in the pool,11
    Maximum number of application modules in the pool,50
    Average number of application modules in the pool,44
    Total number of available application modules in the pool,11
    Average number of available application modules in the pool,42
    Average number of unavailable application modules in the pool,1
    Total number of referenced application modules in the pool,11
    head:Application module age statistics
    Number of referenced instances unused for >10 min,1
    Number of referenced instances unused for >5 min,0
    Number of referenced instances unused for >1 min,2
    Number of referenced instances used during last 1 min,8
    Number of instances unused for >10 min,0
    Number of instances unused for >5 min,0
    Number of instances unused for >1 min,0
    Number of instances used during last 1 min,0
    head:Session statistics
    Number of sessions registered with the pool,11
    Average number of sessions referencing transactional state,243
    head:Session age statistics
    Number of sessions inactive for >10 min,1
    Number of sessions inactive for >5 min,0
    Number of sessions inactive for >1 min,2
    Number of sessions active during last 1 min,8
    From the above result, how should I set the AM Pool Referenced Pool Size (jbo.recyclethreshold) ? or any other property to set ?
    Thank you for your help,
    xtanto

    Hi All,
    (Apps ADF BC+Faces 10.1.3.3)
    On tuning effort, I am suspecting that the CPU is working to hard because of too many activation and passivation, so I run Steve's DumpPoolStatistics.jsp , but still cannot read the result clearly.
    The application is tunning on 2 JVMs OC4J Instance, here is the result :
    Pool Statistics for Pool 'itt.sales.model.service.ITTSalesAMLocal'
    Back to Pool List
    head:Application module lifetime statistics
    Number of application module creations,559
    Number of application module removals,548
    head:State management statistics
    Number of transactional state activations,739
    Number of transactional state passivations,1172
    head:Application pool use statistics
    Number of application pool check outs,48981
    Number of application pool check ins,48981
    Number of referenced application modules that were reused,47568
    Number of referenced application modules that were recycled,631
    Number of unreferenced application modules that were recycled,223
    Number of application pool check out failures,0
    head:Application module statistics
    Total number of application modules in the pool,11
    Maximum number of application modules in the pool,50
    Average number of application modules in the pool,44
    Total number of available application modules in the pool,11
    Average number of available application modules in the pool,42
    Average number of unavailable application modules in the pool,1
    Total number of referenced application modules in the pool,11
    head:Application module age statistics
    Number of referenced instances unused for >10 min,1
    Number of referenced instances unused for >5 min,0
    Number of referenced instances unused for >1 min,2
    Number of referenced instances used during last 1 min,8
    Number of instances unused for >10 min,0
    Number of instances unused for >5 min,0
    Number of instances unused for >1 min,0
    Number of instances used during last 1 min,0
    head:Session statistics
    Number of sessions registered with the pool,11
    Average number of sessions referencing transactional state,243
    head:Session age statistics
    Number of sessions inactive for >10 min,1
    Number of sessions inactive for >5 min,0
    Number of sessions inactive for >1 min,2
    Number of sessions active during last 1 min,8
    From the above result, how should I set the AM Pool Referenced Pool Size (jbo.recyclethreshold) ? or any other property to set ?
    Thank you for your help,
    xtanto

  • Stop web page caching in mozilla using jsp

    Hi,
    Is there any way to stop the web page caching in mozilla by using jsp code?
    When the user presses the logout button i do not want them to be able to press the back button.
    Thanks.

    Expire your pages (set proper headers and cache controls that apply to both browser and proxy servers) and code it so that every page with data you don't want displayed doesn't display unless someone is logged in.
    Note that there is never a 100% guarantee that the browser won't cache the pages. It's really up to the user agent (and any proxies, if applicable) to agree to follow the no-cache REQUEST.
    For this reason, any database interactions (that is, inserts and updates) should always check for a valid session before executing.
    Using POST to submit requests to pages that do database interaction is also helpful, so when they hit the back button, they'll see that warning about the page being generated from POST data.
    If the data is horribly sensitive (financials, etc that you don't want left open on a screen), don't give them a chance to use the back button. Open the application itself in a brand new window (a login page will open the new window), do all interaction in that window, and logging out closes the child window (and thus loses all history).
    Since this may irritate the holy heck out of the casual user (or just plain not work with popup blockers) it is not recommended to be used casually.
    Keep this reserved for very sensitive applications, not just the average web site / application or because you don't feel like coding proper safeguards.
    HTH

Maybe you are looking for