Re: advice on jsp include

2003-01-12 Thread Amit Ghaste
dimitry , what do u mean by your statement : 'You can have just one include parameterized by your request attribute', I did not understand it... can u please explain. the link you have included describes a CUSTOM TAG which as he satates is SIMILAR to jsp:include../ but not the same, as far as

Re: how to make JSP Pgms faster

2003-01-12 Thread Amit Ghaste
you could find out the exact point of delay, and work on that portion of it.. the easiest way to do that would be to check the currentTimeInMillis and figure out where ur bloackade is -Original Message- From: A mailing list about Java Server Pages specification and reference

Re: how to make JSP Pgms faster

2003-01-12 Thread Christian Bollmeyer (GMX)
Am Sonntag, 12. Januar 2003 05:33 schrieb arun s: hi all, Im using JSP and DB2. Now..what should I recommend upon this? Using Oracle instead of DB2? Well, if that would help... My program is running very slow . Check what exactly *is* slow. If JSP alone were slow, you probably wouldn't

Re: how to make JSP Pgms faster

2003-01-12 Thread Mattias Jiderhamn
What is you level of experience and what have you tried? Can we assume you are already using a connection pool? Are you aware that the JSP pages are recompiled every time you modify them. The the fist load after an update will always be slow, but later reqest should be fast. There are profiling

JDBCRealm with Digest + SSL

2003-01-12 Thread Daniel
Hi all, I am trying to use JDBCRealm with Digest combination in a SSL based web page. But it doesn't seem to work! My server.xml is Context path=/misc docBase=d:/eclipse/workspace/MiscTests/deploy debug=99 reloadable=true crossContext=true Realm className=org.apache.catalina.realm.JDBCRealm

JDBCRealm with Digest and SSL

2003-01-12 Thread Daniel
(Sorry Previous mail my table name was misspelled) Hi all, I am trying to use JDBCRealm with Digest combination in a SSL based web page. But it doesn't seem to work! My server.xml is Context path=/misc docBase=d:/eclipse/workspace/MiscTests/deploy debug=99 reloadable=true crossContext=true

Critical calculations

2003-01-12 Thread V.T.R.Ravi Kumar
Hi everyone, Here I have a situation where I have to do some calculations based on some values entered by the client. The values and the formula are kept in tables ie., if we have x=0.2a+0.6b+0.2c in tables i have valfactor a0.2 b0.6 c0.2 x is calculated from

Re: Critical calculations

2003-01-12 Thread Martin Gainty
Chao: The simplest means would be to:Codea method which calculates result X from the method parameters(a,b,c)Declarethis method be synchronized so that thevery last iteration (call it n iteration) will be allowed to complete and report back to it's results to the next to last (n-1) iteration

Re: advice on jsp include

2003-01-12 Thread Joel Carklin
Thanks for all the input and advice... === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST. Some relevant FAQs on JSP/Servlets