No subject


Sat Nov 12 19:29:10 PST 2005


just kidding ;) .There is no magic number here .. everything depends
on how your solution is desgined and what sort of a scalability you are
expecting ..

>5. Is there a better choice of Web server/Application server or is IIS
>suitable?

Again it really depends ... how you design as well as what you use
for a solution,really depends on the kind of solution. Do you
expect 10 hits per day .. or 1000 hits per day .. or a million hits per
day ??

Small scale solutions are much well off ..using just a webserver
(Servlets/JSP) and DB.Application servers are generally recommended for
large scale enterprise solutions.Application  servers may not be cost
effective .. and sometimes even perform badly .. for small scale
solutions.It is really a decision to make.

>3. I want to place the servlets used by the application on IIS, is this
>where Jrun comes into play?

>4. Could I use Jrun standalone in a commercial environment ?

>6. Could I deploy on TomCat as the application server or is TomCat for
>development  only?

>7. Could I use TomCat standalone in a commercial environment ?
>

The joy of learning things on your own can never be replaced.
So I am not anwsering the above questions directly ..but I can
give you all you need to get the answers :)

www.jrun.com
http://jakarta.apache.org/tomcat/index.html

Read the license terms to know if they can be commercially used or not ..

HTH,
the_Wolf











>From: "Fakoya, Jide" <jide.fakoya at eds.com>
>To: "'advanced-java at lists.xcf.berkeley.edu'" 
><advanced-java at lists.xcf.berkeley.edu>
>CC: "'denis.ewanzang at cmgplc.com'" <denis.ewanzang at cmgplc.com>
>Subject: [Advanced-java] Web Application
>Date: Thu, 21 Jun 2001 09:56:36 +0100
>MIME-Version: 1.0
>Received: from [128.32.43.210] by hotmail.com (3.2) with ESMTP id 
>MHotMailBCFB0219001A40042A0C80202BD2042C0; Thu, 21 Jun 2001 01:58:08 -0700
>Received: from lists.xcf.berkeley.edu (localhost.localdomain [127.0.0.1])by 
>lists.xcf.berkeley.edu (Postfix) with ESMTPid 2439C3A28B; Thu, 21 Jun 2001 
>01:04:15 -0700 (PDT)
>Received: from ahmler4.mail.eds.com (ahmler4.mail.eds.com 
>[192.85.154.77])by lists.xcf.berkeley.edu (Postfix) with ESMTP id 
>620613A275for <advanced-java at lists.xcf.berkeley.edu>; Thu, 21 Jun 2001 
>01:03:19 -0700 (PDT)
>Received: from ahmlir1.mail.eds.com (ahmlir1-2.mail.eds.com 
>[192.85.154.25])by ahmler4.mail.eds.com (8.11.1/8.11.1) with ESMTP id 
>f5L8ulC13987;Thu, 21 Jun 2001 04:56:47 -0400
>Received: from ahmlir1.mail.eds.com (localhost [127.0.0.1])by 
>ahmlir1.mail.eds.com (8.11.3/8.11.3) with ESMTP id f5L8ukX25548;Thu, 21 Jun 
>2001 04:56:46 -0400 (EDT)
>Received: from nnse.eds.com (nnse.eds.com [205.191.69.78])by 
>ahmlir1.mail.eds.com (8.11.3/8.11.0) with ESMTP id f5L8ujx25534;Thu, 21 Jun 
>2001 04:56:45 -0400 (EDT)
>Received: from nnse.eds.com (localhost [127.0.0.1])by nnse.eds.com 
>(8.11.3/8.11.3) with ESMTP id f5L8ufW17205;Thu, 21 Jun 2001 09:56:42 +0100 
>(BST)
>Received: from gbspm011.exgb01.exch.eds.com ([207.37.51.203])by 
>nnse.eds.com (8.11.3/8.11.1) with ESMTP id f5L8uco17145;Thu, 21 Jun 2001 
>09:56:39 +0100 (BST)
>Received: by GBSPM011 with Internet Mail Service (5.5.2653.19)id 
><L6XF38ZZ>; Thu, 21 Jun 2001 09:56:40 +0100
>From advanced-java-admin at lists.xcf.berkeley.edu Thu, 21 Jun 2001 01:59:19 
>-0700
>Delivered-To: advanced-java at lists.xcf.berkeley.edu
>Message-ID: <D1C7EA79848BD311AC3F0090277978960AB2100E at GBSPM015>
>X-Mailer: Internet Mail Service (5.5.2653.19)
>Sender: advanced-java-admin at lists.xcf.berkeley.edu
>Errors-To: advanced-java-admin at lists.xcf.berkeley.edu
>X-BeenThere: advanced-java at lists.xcf.berkeley.edu
>X-Mailman-Version: 2.0.3
>Precedence: bulk
>List-Help: 
><mailto:advanced-java-request at lists.xcf.berkeley.edu?subject=help>
>List-Post: <mailto:advanced-java at lists.xcf.berkeley.edu>
>List-Subscribe: 
><http://lists.xcf.berkeley.edu/mailman/listinfo/advanced-java>,<mailto:advanced-java-request at lists.xcf.berkeley.edu?subject=subscribe>
>List-Id: <advanced-java.lists.xcf.berkeley.edu>
>List-Unsubscribe: 
><http://lists.xcf.berkeley.edu/mailman/listinfo/advanced-java>,<mailto:advanced-java-request at lists.xcf.berkeley.edu?subject=unsubscribe>
>List-Archive: <http://lists.xcf.berkeley.edu/lists/advanced-java/>
>
>Hi Guys,
>
>Part of my web application involves generating HTML pages based on input
>from a text field. The value from the text field is passed to a SQL query;
>the returned result set may be thousands of lines.
>
>Considerations:
>
>1. I want to use database connection pooling is this the only performance
>mechanism that I need to consider? What value might I use for the maximum
>pool size?
>
>2. Would Internet Information Server (IIS) with SQL Server be sufficient?
>
>3. I want to place the servlets used by the application on IIS, is this
>where Jrun comes into play?
>
>4. Could I use Jrun standalone in a commercial environment ?
>
>5. Is there a better choice of Web server/Application server or is IIS
>suitable?
>
>6. Could I deploy on TomCat as the application server or is TomCat for
>development
>    only?
>
>7. Could I use TomCat standalone in a commercial environment ?
>
>
>Any source code for generating multiply html pages based on the SQL result
>set, (with navigational links to pages i.e. 1,2,3...n, next, previous) 
>would
>be highly appreciated.
>
>General comments are also appreciated.
>
>Jide
>
>
>
>_______________________________________________
>Advanced-java mailing list
>Advanced-java at lists.xcf.berkeley.edu
>http://lists.xcf.berkeley.edu/mailman/listinfo/advanced-java

_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




More information about the Advanced-java mailing list