RE: WebLogic/Struts/JSP performance woes...

2002-11-04 Thread Davide Bruzzone
t;[EMAIL PROTECTED]> Sent: Saturday, November 02, 2002 12:34 PM Subject: Re: WebLogic/Struts/JSP performance woes... > David, > > Have you considered running some tests with Jmeter or some other testing > tool that can tell you exactly how long it takes to deliver the HTML? > Thi

RE: WebLogic/Struts/JSP performance woes...

2002-11-04 Thread Davide Bruzzone
To everyone that jumped in to help and provide suggestions: A big thank you! The list, as always, is fantastic, and proved to be more responsive and helpful than paid support. Kudos! BTW, I performed some tests on Friday based on the feedback that I got, and it looks like the problem was definatel

RE: WebLogic/Struts/JSP performance woes...

2002-11-04 Thread Davide Bruzzone
o: Struts Users Mailing List Subject: Re: WebLogic/Struts/JSP performance woes... David, Have you considered running some tests with Jmeter or some other testing tool that can tell you exactly how long it takes to deliver the HTML? This would enable you to determine whether the problem is on the

RE: WebLogic/Struts/JSP performance woes...

2002-11-04 Thread Davide Bruzzone
;t use any tables to position it. Cheers... Dave Davide Bruzzone wrote: > Lots of very ugly scriptlet code... :-) > > -Original Message- > From: V. Cekvenich [mailto:vicc@;users.sourceforge.net] > Sent: Friday, November 01, 2002 2:32 PM > To: [EMAIL PROTECTED] &

Re: WebLogic/Struts/JSP performance woes...

2002-11-03 Thread Daniel Jaffa
the rows, why do you not implement a paging by default. Then have an option to see all rows. - Original Message - From: "Phil Steitz" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Saturday, November 02, 2002 12:34 PM

Re: WebLogic/Struts/JSP performance woes...

2002-11-02 Thread Phil Steitz
David, Have you considered running some tests with Jmeter or some other testing tool that can tell you exactly how long it takes to deliver the HTML? This would enable you to determine whether the problem is on the server side or in the browser rendering. Regards, Phil -- To unsubscribe,

Re: WebLogic/Struts/JSP performance woes...

2002-11-02 Thread Melissa L Kelley
Yes, I use 6.1 sp2 at work, and I came across the exact same problem with an app just recently, and the problem was the html. The requirement for the app is to return all results on the same page (it currently returned 100 at a time), which means the possibility for rows and rows of data (the mos

RE: WebLogic/Struts/JSP performance woes...

2002-11-02 Thread Hue Holleran
out an application in any design that has 2000 rows? V Davide Bruzzone wrote: > Lots of very ugly scriptlet code... :-) > > -Original Message- > From: V. Cekvenich [mailto:vicc@;users.sourceforge.net] > Sent: Friday, November 01, 2002 2:32 PM > To: [EMAIL PROTECTED] > S

Re: WebLogic/Struts/JSP performance woes...

2002-11-02 Thread V. Cekvenich
ts of very ugly scriptlet code... :-) -Original Message- From: V. Cekvenich [mailto:vicc@;users.sourceforge.net] Sent: Friday, November 01, 2002 2:32 PM To: [EMAIL PROTECTED] Subject: Re: WebLogic/Struts/JSP performance woes... How would you solve this w/o Struts? .V Davide Bruz

Re: WebLogic/Struts/JSP performance woes...

2002-11-02 Thread John Jones
d allow it. - Original Message - From: "Davide Bruzzone" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Friday, November 01, 2002 3:56 PM Subject: RE: WebLogic/Struts/JSP performance woes... > I've tried both appr

RE: WebLogic/Struts/JSP performance woes...

2002-11-01 Thread Davide Bruzzone
s going on under the covers... Cheers... Dave -Original Message- From: Karr, David [mailto:david.karr@;attws.com] Sent: Friday, November 01, 2002 1:49 PM To: Struts Users Mailing List Subject: RE: WebLogic/Struts/JSP performance woes... Is your page precompiled? Are you doing the timing

RE: WebLogic/Struts/JSP performance woes...

2002-11-01 Thread Davide Bruzzone
ion has to be able to handle it gracefully. Cheers... Dave -Original Message- From: David Graham [mailto:dgraham1980@;hotmail.com] Sent: Friday, November 01, 2002 1:49 PM To: [EMAIL PROTECTED] Subject: Re: WebLogic/Struts/JSP performance woes... I've not experienced this but 1760

RE: WebLogic/Struts/JSP performance woes...

2002-11-01 Thread Davide Bruzzone
Lots of very ugly scriptlet code... :-) -Original Message- From: V. Cekvenich [mailto:vicc@;users.sourceforge.net] Sent: Friday, November 01, 2002 2:32 PM To: [EMAIL PROTECTED] Subject: Re: WebLogic/Struts/JSP performance woes... How would you solve this w/o Struts? .V Davide Bruzzone

Re: WebLogic/Struts/JSP performance woes...

2002-11-01 Thread Craig R. McClanahan
On Fri, 1 Nov 2002, Davide Bruzzone wrote: > Date: Fri, 1 Nov 2002 13:43:26 -0700 > From: Davide Bruzzone <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> > Subject:

RE: WebLogic/Struts/JSP performance woes...

2002-11-01 Thread Hue Holleran
ly for large tables. Because the browser does not need to parse through the table once simply to lay it out, the table rows can start to render immediately." HTH, Hue. -Original Message- From: Davide Bruzzone [mailto:Davide.Bruzzone@;ngt.com] Sent: 01 November 2002 21:03 To: 'Stru

RE: WebLogic/Struts/JSP performance woes...

2002-11-01 Thread Nat Papovich
; To: 'Struts Users Mailing List' > Subject: RE: WebLogic/Struts/JSP performance woes... > > > Yes... > > Again, what's strange is that during my extensive tests/experiments/hair > pulling sessions I've actually seen this type of code work (using tables) - >

RE: WebLogic/Struts/JSP performance woes...

2002-11-01 Thread Davide Bruzzone
From: James Mitchell [mailto:jmitchtx@;telocity.com] Sent: Friday, November 01, 2002 1:55 PM To: Struts Users Mailing List Subject: RE: WebLogic/Struts/JSP performance woes... Also, are you using tables to display? You know inserting data here.. Are you aware that these tables won&

Re: WebLogic/Struts/JSP performance woes...

2002-11-01 Thread V. Cekvenich
How would you solve this w/o Struts? .V Davide Bruzzone wrote: Greetings all... I'd like to try to find out if anyone else out there is using WebLogic (We're using version 6.1 SP2) with Struts and/or just JSPs that might have some performance tips that they might be able to share... Here's what

RE: WebLogic/Struts/JSP performance woes...

2002-11-01 Thread James Mitchell
mber 01, 2002 3:49 PM > To: Struts Users Mailing List > Subject: RE: WebLogic/Struts/JSP performance woes... > > > Is your page precompiled? Are you doing the timing test on your > second display of the page? The first display of a > non-precompiled JSP will take much longer

RE: WebLogic/Struts/JSP performance woes...

2002-11-01 Thread Karr, David
Is your page precompiled? Are you doing the timing test on your second display of the page? The first display of a non-precompiled JSP will take much longer, as it has to generate and compile the servlet class. > -Original Message- > From: Davide Bruzzone [mailto:Davide.Bruzzone@;ngt.c

Re: WebLogic/Struts/JSP performance woes...

2002-11-01 Thread David Graham
TECTED]'" <[EMAIL PROTECTED]> Subject: WebLogic/Struts/JSP performance woes... Date: Fri, 1 Nov 2002 13:43:26 -0700 Greetings all... I'd like to try to find out if anyone else out there is using WebLogic (We're using version 6.1 SP2) with Struts and/or just JSPs that mi

WebLogic/Struts/JSP performance woes...

2002-11-01 Thread Davide Bruzzone
Greetings all... I'd like to try to find out if anyone else out there is using WebLogic (We're using version 6.1 SP2) with Struts and/or just JSPs that might have some performance tips that they might be able to share... Here's what's happening: I have a page that, for test purposes, is generati