Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 37571 invoked from network); 15 May 2009 15:18:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 15 May 2009 15:18:40 -0000 Received: (qmail 97276 invoked by uid 500); 15 May 2009 15:18:40 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 97214 invoked by uid 500); 15 May 2009 15:18:39 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 97029 invoked by uid 99); 15 May 2009 15:18:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 May 2009 15:18:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 May 2009 15:18:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8413623888EA; Fri, 15 May 2009 15:17:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r775187 [6/10] - in /geronimo/daytrader/trunk: ./ daytrader-webonly/ daytrader-webonly/src/ daytrader-webonly/src/main/ daytrader-webonly/src/main/java/ daytrader-webonly/src/main/java/org/ daytrader-webonly/src/main/java/org/apache/ daytra... Date: Fri, 15 May 2009 15:17:45 -0000 To: scm@geronimo.apache.org From: jbohn@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090515151749.8413623888EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingServletWriter.java URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingServletWriter.java?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingServletWriter.java (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingServletWriter.java Fri May 15 15:17:36 2009 @@ -0,0 +1,96 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.geronimo.samples.daytrader.web.prims; + +import java.io.*; +import javax.servlet.*; +import javax.servlet.http.*; + +import org.apache.geronimo.samples.daytrader.util.*; + + +/** + * + * PingServlet extends PingServlet by using a PrintWriter for formatted + * output vs. the output stream used by {@link PingServlet}. + * + */ +public class PingServletWriter extends HttpServlet { + + private static String initTime; + private static int hitCount; + + /** + * forwards post requests to the doGet method + * Creation date: (11/6/2000 10:52:39 AM) + * @param res javax.servlet.http.HttpServletRequest + * @param res2 javax.servlet.http.HttpServletResponse + */ + public void doPost(HttpServletRequest req, HttpServletResponse res) + throws ServletException, IOException { + doGet(req, res); + } + /** + * this is the main method of the servlet that will service all get requests. + * @param request HttpServletRequest + * @param responce HttpServletResponce + **/ + public void doGet(HttpServletRequest req, HttpServletResponse res) + throws ServletException, IOException { + try + { + res.setContentType("text/html"); + + // The following 2 lines are the difference between PingServlet and PingServletWriter + // the latter uses a PrintWriter for output versus a binary output stream. + //ServletOutputStream out = res.getOutputStream(); + java.io.PrintWriter out = res.getWriter(); + hitCount++; + out.println( + "Ping Servlet Writer" + + "

Ping Servlet Writer:
Init time : " + + initTime + + "

Hit Count: " + + hitCount + + ""); + } + catch (Exception e) + { + Log.error(e, "PingServletWriter.doGet(...): general exception caught"); + res.sendError(500, e.toString()); + } + } + /** + * returns a string of information about the servlet + * @return info String: contains info about the servlet + **/ + + public String getServletInfo() + { + return "Basic dynamic HTML generation through a servlet using a PrintWriter"; + } + /** + * called when the class is loaded to initialize the servlet + * @param config ServletConfig: + **/ + public void init(ServletConfig config) throws ServletException { + super.init(config); + hitCount = 0; + initTime = new java.util.Date().toString(); + + } +} \ No newline at end of file Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingServletWriter.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingServletWriter.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingServletWriter.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession1.java URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession1.java?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession1.java (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession1.java Fri May 15 15:17:36 2009 @@ -0,0 +1,126 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.geronimo.samples.daytrader.web.prims; + +import java.io.*; +import javax.servlet.*; +import javax.servlet.http.*; + +import org.apache.geronimo.samples.daytrader.util.*; + +/** + * + * PingHTTPSession1 - SessionID tests fundamental HTTP session functionality + * by creating a unique session ID for each individual user. The ID is stored + * in the users session and is accessed and displayed on each user request. + * + */ +public class PingSession1 extends HttpServlet { + private static int count; + // For each new session created, add a session ID of the form "sessionID:" + count + private static String initTime; + private static int hitCount; +/** + * forwards post requests to the doGet method + * Creation date: (11/6/2000 10:52:39 AM) + * @param res javax.servlet.http.HttpServletRequest + * @param res2 javax.servlet.http.HttpServletResponse + */ +public void doPost(HttpServletRequest req, HttpServletResponse res) + throws ServletException, IOException { + doGet(req, res); +} +/** +* this is the main method of the servlet that will service all get requests. +* @param request HttpServletRequest +* @param responce HttpServletResponce +**/ +public void doGet(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + HttpSession session = null; + try + { + try + { + //get the users session, if the user does not have a session create one. + session = request.getSession(true); + } + catch (Exception e) + { + Log.error(e, "PingSession1.doGet(...): error getting session"); + //rethrow the exception for handling in one place. + throw e; + } + + // Get the session data value + Integer ival = (Integer) session.getAttribute("sessiontest.counter"); + //if their is not a counter create one. + if (ival == null) + { + ival = new Integer(count++); + session.setAttribute("sessiontest.counter", ival); + } + String SessionID = "SessionID:" + ival.toString(); + + // Output the page + response.setContentType("text/html"); + response.setHeader("SessionKeyTest-SessionID", SessionID); + + PrintWriter out = response.getWriter(); + out.println( + "HTTP Session Key Test

HTTP Session Test 1: Session Key
Init time: " + + initTime + + "

"); + hitCount++; + out.println( + "Hit Count: " + + hitCount + + "
Your HTTP Session key is " + + SessionID + + "
"); + } + catch (Exception e) + { + //log the excecption + Log.error(e, "PingSession1.doGet(..l.): error."); + //set the server responce to 500 and forward to the web app defined error page + response.sendError( + 500, + "PingSession1.doGet(...): error. " + e.toString()); + } +} +/** + * returns a string of information about the servlet + * @return info String: contains info about the servlet + **/ + +public String getServletInfo() +{ + return "HTTP Session Key: Tests management of a read only unique id"; +} +/** +* called when the class is loaded to initialize the servlet +* @param config ServletConfig: +**/ +public void init(ServletConfig config) throws ServletException { + super.init(config); + count = 0; + hitCount = 0; + initTime = new java.util.Date().toString(); + +} +} \ No newline at end of file Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession1.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession1.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession1.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession2.java URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession2.java?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession2.java (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession2.java Fri May 15 15:17:36 2009 @@ -0,0 +1,143 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.geronimo.samples.daytrader.web.prims; + +import java.io.*; +import javax.servlet.*; +import javax.servlet.http.*; + +import org.apache.geronimo.samples.daytrader.util.*; + +/** + * + * PingHTTPSession2 session create/destroy further extends the previous test by + * invalidating the HTTP Session on every 5th user access. This results in testing + * HTTPSession create and destroy + * + */ +public class PingSession2 extends HttpServlet { + + private static String initTime; + private static int hitCount; + +/** + * forwards post requests to the doGet method + * Creation date: (11/6/2000 10:52:39 AM) + * @param res javax.servlet.http.HttpServletRequest + * @param res2 javax.servlet.http.HttpServletResponse + */ +public void doPost(HttpServletRequest req, HttpServletResponse res) + throws ServletException, IOException { + doGet(req, res); +} +/** +* this is the main method of the servlet that will service all get requests. +* @param request HttpServletRequest +* @param responce HttpServletResponce +**/ +public void doGet(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + HttpSession session = null; + try + { + try + { + session = request.getSession(true); + } + catch (Exception e) + { + Log.error(e, "PingSession2.doGet(...): error getting session"); + //rethrow the exception for handling in one place. + throw e; + + } + + // Get the session data value + Integer ival = (Integer) session.getAttribute("sessiontest.counter"); + //if there is not a counter then create one. + if (ival == null) + { + ival = new Integer(1); + } + else + { + ival = new Integer(ival.intValue() + 1); + } + session.setAttribute("sessiontest.counter", ival); + //if the session count is equal to five invalidate the session + if (ival.intValue() == 5) + { + session.invalidate(); + } + + try + { + // Output the page + response.setContentType("text/html"); + response.setHeader("SessionTrackingTest-counter", ival.toString()); + + PrintWriter out = response.getWriter(); + out.println( + "Session Tracking Test 2

HTTP Session Test 2: Session create/invalidate
Init time: " + + initTime + + "

"); + hitCount++; + out.println( + "Hit Count: " + + hitCount + + "
Session hits: " + + ival + + "
"); + } + catch (Exception e) + { + Log.error(e, "PingSession2.doGet(...): error getting session information"); + //rethrow the exception for handling in one place. + throw e; + } + + } + + catch (Exception e) + { + //log the excecption + Log.error(e, "PingSession2.doGet(...): error."); + //set the server responce to 500 and forward to the web app defined error page + response.sendError( + 500, + "PingSession2.doGet(...): error. " + e.toString()); + } +} //end of the method +/** + * returns a string of information about the servlet + * @return info String: contains info about the servlet + **/ +public String getServletInfo() +{ + return "HTTP Session Key: Tests management of a read/write unique id"; +} +/** +* called when the class is loaded to initialize the servlet +* @param config ServletConfig: +**/ +public void init(ServletConfig config) throws ServletException { + super.init(config); + hitCount = 0; + initTime = new java.util.Date().toString(); + +} +} \ No newline at end of file Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession2.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession2.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession2.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3.java URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3.java?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3.java (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3.java Fri May 15 15:17:36 2009 @@ -0,0 +1,175 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.geronimo.samples.daytrader.web.prims; + +import java.io.*; +import javax.servlet.*; +import javax.servlet.http.*; + +import org.apache.geronimo.samples.daytrader.util.*; + +/** + * + * PingHTTPSession3 tests the servers ability to manage + * and persist large HTTPSession data objects. The servlet creates the large custom + * java object {@link PingSession3Object}. This large session object is + * retrieved and stored to the session on each user request. The default settings + * result in approx 2024 bits being retrieved and stored upon each request. + * + */ +public class PingSession3 extends HttpServlet { + private static int NUM_OBJECTS = 2; + private static String initTime = null; + private static int hitCount = 0; + +/** + * forwards post requests to the doGet method + * Creation date: (11/6/2000 10:52:39 AM) + * @param res javax.servlet.http.HttpServletRequest + * @param res2 javax.servlet.http.HttpServletResponse + */ +public void doPost(HttpServletRequest req, HttpServletResponse res) + throws ServletException, IOException { + doGet(req, res); +} +/** +* this is the main method of the servlet that will service all get requests. +* @param request HttpServletRequest +* @param responce HttpServletResponce +**/ +public void doGet(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + + PrintWriter out = response.getWriter(); + //Using a StringBuffer to output all at once. + StringBuffer outputBuffer = new StringBuffer(); + HttpSession session = null; + PingSession3Object[] sessionData; + response.setContentType("text/html"); + + //this is a general try/catch block. The catch block at the end of this will forward the responce + //to an error page if there is an exception + try + { + + try + { + session = request.getSession(true); + } + catch (Exception e) + { + Log.error(e, "PingSession3.doGet(...): error getting session"); + //rethrow the exception for handling in one place. + throw e; + + } + // Each PingSession3Object in the PingSession3Object array is 1K in size + // NUM_OBJECTS sets the size of the array to allocate and thus set the size in KBytes of the session object + // NUM_OBJECTS can be initialized by the servlet + // Here we check for the request parameter to change the size and invalidate the session if it exists + // NOTE: Current user sessions will remain the same (i.e. when NUM_OBJECTS is changed, all user thread must be restarted + // for the change to fully take effect + + String num_objects; + if ((num_objects = request.getParameter("num_objects")) != null) + { + //validate input + try + { + int x = Integer.parseInt(num_objects); + if (x > 0) + { + NUM_OBJECTS = x; + } + } + catch (Exception e) + { + Log.error(e, "PingSession3.doGet(...): input should be an integer, input=" + num_objects); + } // revert to current value on exception + + outputBuffer.append( + " Session object size set to " + + NUM_OBJECTS + + "K bytes "); + if (session != null) + session.invalidate(); + out.print(outputBuffer.toString()); + out.close(); + return; + } + + // Get the session data value + sessionData = + (PingSession3Object[]) session.getAttribute("sessiontest.sessionData"); + if (sessionData == null) + { + sessionData = new PingSession3Object[NUM_OBJECTS]; + for (int i = 0; i < NUM_OBJECTS; i++) + { + sessionData[i] = new PingSession3Object(); + } + } + + session.setAttribute("sessiontest.sessionData", sessionData); + + //Each PingSession3Object is about 1024 bits, there are 8 bits in a byte. + int num_bytes = (NUM_OBJECTS*1024)/8; + response.setHeader( + "SessionTrackingTest-largeSessionData", + num_bytes + "bytes"); + + outputBuffer + .append("Session Large Data Test

HTTP Session Test 3: Large Data
Init time: ") + .append(initTime) + .append("

"); + hitCount++; + outputBuffer.append("Hit Count: ").append(hitCount).append( + "
Session object updated. Session Object size = " + + num_bytes + + " bytes
"); + //output the Buffer to the printWriter. + out.println(outputBuffer.toString()); + + } + catch (Exception e) + { + //log the excecption + Log.error(e, "PingSession3.doGet(..l.): error."); + //set the server responce to 500 and forward to the web app defined error page + response.sendError( + 500, + "PingSession3.doGet(...): error. " + e.toString()); } +} +/** + * returns a string of information about the servlet + * @return info String: contains info about the servlet + **/ +public String getServletInfo() +{ + return "HTTP Session Object: Tests management of a large custom session class"; +} +/** +* called when the class is loaded to initialize the servlet +* @param config ServletConfig: +**/ +public void init(ServletConfig config) throws ServletException { + super.init(config); + hitCount = 0; + initTime = new java.util.Date().toString(); + +} +} \ No newline at end of file Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3Object.java URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3Object.java?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3Object.java (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3Object.java Fri May 15 15:17:36 2009 @@ -0,0 +1,89 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.geronimo.samples.daytrader.web.prims; + +import java.io.*; + +/** + * + * An object that contains approximately 1024 bits of information. This is used by + * {@link PingSession3} + * + */ +public class PingSession3Object implements Serializable { + // PingSession3Object represents a BLOB of session data of various. + // Each instantiation of this class is approximately 1K in size (not including overhead for arrays and Strings) + // Using different datatype exercises the various serialization algorithms for each type + + byte[] byteVal = new byte[16]; // 8 * 16 = 128 bits + char[] charVal = new char[8]; // 16 * 8 = 128 bits + int a, b, c, d; // 4 * 32 = 128 bits + float e, f, g, h; // 4 * 32 = 128 bits + double i, j; // 2 * 64 = 128 bits + // Primitive type size = ~5*128= 640 + + String s1 = new String("123456789012"); + String s2 = new String("abcdefghijkl"); +// String type size = ~2*12*16 = 384 +// Total blob size (w/o overhead) = 1024 + + +// The Session blob must be filled with data to avoid compression of the blob during serialization + PingSession3Object() + { + int index; + byte b = 0x8; + for (index=0; index<16; index++) + { + byteVal[index] = (byte) (b+2); + } + + char c = 'a'; + for (index=0; index<8; index++) + { + charVal[index] = (char) (c+2); + } + + a=1; b=2; c=3; d=5; + e = (float)7.0; f=(float)11.0; g=(float)13.0; h=(float)17.0; + i=(double)19.0; j=(double)23.0; + } +/** + * Main method to test the serialization of the Session Data blob object + * Creation date: (4/3/2000 3:07:34 PM) + * @param args java.lang.String[] + */ + +/** Since the following main method were written for testing purpose, we comment them out +*public static void main(String[] args) { +* try { +* PingSession3Object data = new PingSession3Object(); +* +* FileOutputStream ostream = new FileOutputStream("c:\\temp\\datablob.xxx"); +* ObjectOutputStream p = new ObjectOutputStream(ostream); +* p.writeObject(data); +* p.flush(); +* ostream.close(); +* } +* catch (Exception e) +* { +* System.out.println("Exception: " + e.toString()); +* } +*} +*/ + +} \ No newline at end of file Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3Object.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3Object.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/java/org/apache/geronimo/samples/daytrader/web/prims/PingSession3Object.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/LICENSE URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/LICENSE?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/LICENSE (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/LICENSE Fri May 15 15:17:36 2009 @@ -0,0 +1,203 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/NOTICE URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/NOTICE?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/NOTICE (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/NOTICE Fri May 15 15:17:36 2009 @@ -0,0 +1,9 @@ +Apache Geronimo +Copyright 2003-2009 The Apache Software Foundation + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + +Portions of this software were developed at IBM and donated to the +ASF under the Apache 2.0 license. The former work was referred to +as Trade 6. Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/context.xml URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/context.xml?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/context.xml (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/context.xml Fri May 15 15:17:36 2009 @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/context.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/context.xml ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/META-INF/context.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingHtml.html URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingHtml.html?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingHtml.html (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingHtml.html Fri May 15 15:17:36 2009 @@ -0,0 +1,26 @@ + + + +PingHTML.html + + +
+

PING HTML:

+

Hello World

+ + Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingHtml.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingHtml.html ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingHtml.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJsp.jsp URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJsp.jsp?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJsp.jsp (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJsp.jsp Fri May 15 15:17:36 2009 @@ -0,0 +1,36 @@ + + + + + + + +PingJsp + + +<%! int hitCount = 0; + String initTime = new java.util.Date().toString(); + %> +
+
+PING JSP:
+
Init time: <%= initTime %> +<% hitCount++; %> +

Hit Count: <%= hitCount %>

+ + Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJsp.jsp ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJsp.jsp ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJsp.jsp ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJspEL.jsp URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJspEL.jsp?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJspEL.jsp (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJspEL.jsp Fri May 15 15:17:36 2009 @@ -0,0 +1,128 @@ + + + + + PingJspEL + + +<%@ page import="org.apache.geronimo.samples.daytrader.*" session="false" %> + +<%! +int hitCount = 0; +String initTime = new java.util.Date().toString(); +%> + +<% +// setup some variables to work with later +int someint1 = TradeConfig.rndInt(100) + 1; +pageContext.setAttribute("someint1", new Integer(someint1)); +int someint2 = TradeConfig.rndInt(100) + 1; +pageContext.setAttribute("someint2", new Integer(someint2)); +float somefloat1 = TradeConfig.rndFloat(100) + 1.0f; +pageContext.setAttribute("somefloat1", new Float(somefloat1)); +float somefloat2 = TradeConfig.rndFloat(100) + 1.0f; +pageContext.setAttribute("somefloat2", new Float(somefloat2)); + +QuoteDataBean quoteData1 = QuoteDataBean.getRandomInstance(); +pageContext.setAttribute("quoteData1", quoteData1); +QuoteDataBean quoteData2 = QuoteDataBean.getRandomInstance(); +pageContext.setAttribute("quoteData2", quoteData2); +QuoteDataBean quoteData3 = QuoteDataBean.getRandomInstance(); +pageContext.setAttribute("quoteData3", quoteData3); +QuoteDataBean quoteData4 = QuoteDataBean.getRandomInstance(); +pageContext.setAttribute("quoteData4", quoteData4); + +QuoteDataBean quoteData[] = new QuoteDataBean[4]; +quoteData[0] = quoteData1; +quoteData[1] = quoteData2; +quoteData[2] = quoteData3; +quoteData[3] = quoteData4; +pageContext.setAttribute("quoteData", quoteData); +%> + +
+
+ PING JSP EL:
Init time: <%= initTime %> +

+ Hit Count: <%= hitCount++ %> +

+
+ +

+ +someint1 = <%= someint1 %>
+someint2 = <%= someint2 %>
+somefloat1 = <%= somefloat1 %>
+somefloat2 = <%= somefloat2 %>
+ +

+ +


+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EL TypeEL ExpressionsResult
Integer Arithmetic\${someint1 + someint2 - someint1 * someint2 mod someint1}${someint1 + someint2 - someint1 * someint2 mod someint1}
Floating Point Arithmetic\${somefloat1 + somefloat2 - somefloat1 * somefloat2 / somefloat1}${somefloat1 + somefloat2 - somefloat1 * somefloat2 / somefloat1}
Logical Operations\${(someint1 < someint2) && (someint1 <= someint2) || (someint1 == someint2) && !Boolean.FALSE}${(someint1 < someint2) && (someint1 <= someint2) || (someint1 == someint2) && !Boolean.FALSE}
Indexing Operations + \${quoteData3.symbol}
+ \${quoteData[2].symbol}
+ \${quoteData4["symbol"]}
+ \${header["host"]}
+ \${header.host}
+
+ ${quoteData3.symbol}
+ ${quoteData[1].symbol}
+ ${quoteData4["symbol"]}
+ ${header["host"]}
+ ${header.host} +
Variable Scope Tests + \${(quoteData3 == null) ? "null" : quoteData3}
+ \${(noSuchVariableAtAnyScope == null) ? "null" : noSuchVariableAtAnyScope} +
+ ${(quoteData3 == null) ? "null" : quoteData3}
+ ${(noSuchVariableAtAnyScope == null) ? "null" : noSuchVariableAtAnyScope} +
+ + Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJspEL.jsp ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJspEL.jsp ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJspEL.jsp ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJspEL.jsp.bad URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJspEL.jsp.bad?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJspEL.jsp.bad (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingJspEL.jsp.bad Fri May 15 15:17:36 2009 @@ -0,0 +1,128 @@ + + + + + PingJspEL + + +<%@ page import="org.apache.geronimo.samples.daytrader.*" session="false" %> + +<%! +int hitCount = 0; +String initTime = new java.util.Date().toString(); +%> + +<% +// setup some variables to work with later +int someint1 = TradeConfig.rndInt(100) + 1; +pageContext.setAttribute("someint1", new Integer(someint1)); +int someint2 = TradeConfig.rndInt(100) + 1; +pageContext.setAttribute("someint2", new Integer(someint2)); +float somefloat1 = TradeConfig.rndFloat(100) + 1.0f; +pageContext.setAttribute("somefloat1", new Float(somefloat1)); +float somefloat2 = TradeConfig.rndFloat(100) + 1.0f; +pageContext.setAttribute("somefloat2", new Float(somefloat2)); + +QuoteDataBean quoteData1 = QuoteDataBean.getRandomInstance(); +pageContext.setAttribute("quoteData1", quoteData1); +QuoteDataBean quoteData2 = QuoteDataBean.getRandomInstance(); +pageContext.setAttribute("quoteData2", quoteData2); +QuoteDataBean quoteData3 = QuoteDataBean.getRandomInstance(); +pageContext.setAttribute("quoteData3", quoteData3); +QuoteDataBean quoteData4 = QuoteDataBean.getRandomInstance(); +pageContext.setAttribute("quoteData4", quoteData4); + +QuoteDataBean quoteData[] = new QuoteDataBean[4]; +quoteData[0] = quoteData1; +quoteData[1] = quoteData2; +quoteData[2] = quoteData3; +quoteData[3] = quoteData4; +pageContext.setAttribute("quoteData", quoteData); +%> + +
+
+ PING JSP EL:
Init time: <%= initTime %> +

+ Hit Count: <%= hitCount++ %> +

+
+ +

+ +someint1 = <%= someint1 %>
+someint2 = <%= someint2 %>
+somefloat1 = <%= somefloat1 %>
+somefloat2 = <%= somefloat2 %>
+ +

+ +


+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EL TypeEL ExpressionsResult
Integer Arithmetic\${someint1 + someint2 - someint1 * someint2 mod someint1}${someint1 + someint2 - someint1 * someint2 mod someint1}
Floating Point Arithmetic\${somefloat1 + somefloat2 - somefloat1 * somefloat2 / somefloat1}${somefloat1 + somefloat2 - somefloat1 * somefloat2 / somefloat1}
Logical Operations\${(someint1 < someint2) && (someint1 <= someint2) || (someint1 == someint2) && !Boolean.FALSE}${(someint1 < someint2) && (someint1 <= someint2) || (someint1 == someint2) && !Boolean.FALSE}
Indexing Operations + \${quoteData3.symbol}
+ \${quoteData[2].symbol}
+ \${quoteData4["symbol"]}
+ \${header["host"]}
+ \${header.host}
+
+ ${quoteData3.symbol}
+ ${quoteData[1].symbol}
+ ${quoteData4["symbol"]}
+ ${header["host"]}
+ ${header.host} +
Variable Scope Tests + \${(quoteData3 == null) ? "null" : quoteData3}
+ \${(noSuchVariableAtAnyScope == null) ? "null" : noSuchVariableAtAnyScope} +
+ ${(quoteData3 == null) ? "null" : quoteData3}
+ ${(noSuchVariableAtAnyScope == null) ? "null" : noSuchVariableAtAnyScope} +
+ + Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingServlet2Jsp.jsp URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingServlet2Jsp.jsp?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingServlet2Jsp.jsp (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingServlet2Jsp.jsp Fri May 15 15:17:36 2009 @@ -0,0 +1,37 @@ + + + + + + + +PingJsp + + +<%! String initTime = (new java.util.Date()).toString(); + %> + +
+
+Ping Servlet2JSP:
+
Init time: <%= initTime %>
+
+Message from Servlet: <%= ab.getMsg() %> + + + Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingServlet2Jsp.jsp ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingServlet2Jsp.jsp ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/PingServlet2Jsp.jsp ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/classes/build.properties URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/classes/build.properties?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/classes/build.properties (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/classes/build.properties Fri May 15 15:17:36 2009 @@ -0,0 +1,16 @@ +## Licensed to the Apache Software Foundation (ASF) under one or more +## contributor license agreements. See the NOTICE file distributed with +## this work for additional information regarding copyright ownership. +## The ASF licenses this file to You under the Apache License, Version 2.0 +## (the "License"); you may not use this file except in compliance with +## the License. You may obtain a copy of the License at +## +## http://www.apache.org/licenses/LICENSE-2.0 +## +## Unless required by applicable law or agreed to in writing, software +## distributed under the License is distributed on an "AS IS" BASIS, +## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +## See the License for the specific language governing permissions and +## limitations under the License. + +ejb_version=${pom.version} Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/classes/build.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/classes/build.properties ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/classes/build.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/geronimo-web.xml URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/geronimo-web.xml?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/geronimo-web.xml (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/geronimo-web.xml Fri May 15 15:17:36 2009 @@ -0,0 +1,50 @@ + + + + + + + + + org.apache.geronimo.daytrader + daytrader-web-tomcat6 + 1.0 + war + + + + + org.apache.geronimo.samples + daytrader-datasource + + + + + + /daytrader + + + jdbc/TradeDataSource + jdbc/TradeDataSource + + + + + Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/geronimo-web.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/geronimo-web.xml ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/geronimo-web.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Added: geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/web.xml?rev=775187&view=auto ============================================================================== --- geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/web.xml (added) +++ geronimo/daytrader/trunk/daytrader-webonly/src/main/webapp/WEB-INF/web.xml Fri May 15 15:17:36 2009 @@ -0,0 +1,466 @@ + + + + + + DayTrader Web + + + OrdersAlertFilter + OrdersAlertFilter + org.apache.geronimo.samples.daytrader.web.OrdersAlertFilter + + + OrdersAlertFilter + TradeAppServlet + + + + org.apache.geronimo.samples.daytrader.web.TradeWebContextListener + + + + TradeAppServlet + TradeAppServlet + org.apache.geronimo.samples.daytrader.web.TradeAppServlet + 1 + + + + + + register + register + /register.jsp + + + welcome + welcome + /welcome.jsp + + + order + order + /order.jsp + + + tradehome + tradehome + /tradehome.jsp + + + + TradeConfigServlet + TradeConfigServlet + org.apache.geronimo.samples.daytrader.web.TradeConfigServlet + + + + TradeScenarioServlet + TradeScenarioServlet + org.apache.geronimo.samples.daytrader.web.TradeScenarioServlet + + Sets the default RuntimeMode. Legal values include EJB and Direct + runTimeMode + DIRECT + + + Sets the default Order Processing Mode. Legal values include Synchronous, Asynchronous_1-Phase and Asynchronous_2-Phase + orderProcessingMode + Synchronous + + + + Sets the protocol the web application communicates with the server side services when driving with TradeScenarioServlet. Legal values incude + Standard and WebServices. + + accessMode + Standard + + + Sets the WebServices endpoint when using WebServices accessMode when driving with TradeScenarioServlet. + webServicesEndpoint + http://localhost:8080/daytrader/services/TradeWSServices + + + Sets the default workloadMix used with TradeScenario servlet. Legal values include Standard and High-Volume + workloadMix + Standard + + + Sets the default WebInterface. Legal values include JSP and JSP-images + WebInterface + JSP + + + Sets the population of Trade users when driving with TradeScenarioServlet. + maxUsers + 200 + + + Sets the population of Stock quotes used when driving with TradeScenarioServlet. + maxQuotes + 400 + + + Sets the number of iterations on web/ejb primitives. + primIterations + 1 + + + Sets the data caching type + No Caching + 2 + + 1 + + + + + + + ExplicitGC + ExplicitGC + org.apache.geronimo.samples.daytrader.web.prims.ExplicitGC + + + PingServlet + PingServlet + org.apache.geronimo.samples.daytrader.web.prims.PingServlet + + + PingServletWriter + PingServletWriter + org.apache.geronimo.samples.daytrader.web.prims.PingServletWriter + + + PingServlet2Servlet + PingServlet2Servlet + org.apache.geronimo.samples.daytrader.web.prims.PingServlet2Servlet + + + PingServlet2ServletRcv + PingServlet2ServletRcv + org.apache.geronimo.samples.daytrader.web.prims.PingServlet2ServletRcv + + + PingServlet2Include + PingServlet2Include + org.apache.geronimo.samples.daytrader.web.prims.PingServlet2Include + + + PingServlet2IncludeRcv + PingServlet2IncludeRcv + org.apache.geronimo.samples.daytrader.web.prims.PingServlet2IncludeRcv + + + PingServlet2Jsp + PingServlet2Jsp + org.apache.geronimo.samples.daytrader.web.prims.PingServlet2Jsp + + + PingSession1 + PingSession1 + org.apache.geronimo.samples.daytrader.web.prims.PingSession1 + + + PingSession2 + PingSession2 + org.apache.geronimo.samples.daytrader.web.prims.PingSession2 + + + PingSession3 + PingSession3 + org.apache.geronimo.samples.daytrader.web.prims.PingSession3 + + + PingJDBCRead + PingJDBCRead + org.apache.geronimo.samples.daytrader.web.prims.PingJDBCRead + + + PingJDBCWrite + PingJDBCWrite + org.apache.geronimo.samples.daytrader.web.prims.PingJDBCWrite + + + PingServlet2JNDI + PingServlet2JNDI + org.apache.geronimo.samples.daytrader.web.prims.PingServlet2JNDI + + + + + + + + + + TradeAppServlet + /app + + + + TradeConfigServlet + /config + + + TradeScenarioServlet + /scenario + + + + + + + ExplicitGC + /servlet/ExplicitGC + + + PingServlet + /servlet/PingServlet + + + PingServletWriter + /servlet/PingServletWriter + + + PingServlet2Servlet + /servlet/PingServlet2Servlet + + + PingServlet2ServletRcv + /servlet/PingServlet2ServletRcv + + + PingServlet2Include + /servlet/PingServlet2Include + + + PingServlet2IncludeRcv + /servlet/PingServlet2IncludeRcv + + + PingServlet2Jsp + /servlet/PingServlet2Jsp + + + PingSession1 + /servlet/PingSession1 + + + PingSession2 + /servlet/PingSession2 + + + PingSession3 + /servlet/PingSession3 + + + PingJDBCRead + /servlet/PingJDBCRead + + + PingJDBCWrite + /servlet/PingJDBCWrite + + + PingServlet2JNDI + /servlet/PingServlet2JNDI + + + + + + + + + + + 30 + + + index.html + + + java.lang.Exception + /error.jsp + + + 500 + /error.jsp + + + + jdbc/TradeDataSource + javax.sql.DataSource + Container + Shareable + + +