Tomcat performance - Was Clever trick required

2005-10-19 Thread hermod.opstvedt
2005 15:14 Til: Struts Users Mailing List Emne: Re: Clever trick required Hermod- Currently I am currently running tomcat 5.5.7 and not using any HTTP server for front end If I have no legacy CGI / Perl scripts or static content to server up would I need to front end Tomcat with an HTTP Server

Re: Tomcat performance - Was Clever trick required

2005-10-19 Thread Martin Gainty
I have noted your comments Thank You for responding Good Luck, Martin- - Original Message - From: [EMAIL PROTECTED] To: user@struts.apache.org Sent: Wednesday, October 19, 2005 2:00 AM Subject: Tomcat performance - Was Clever trick required Hi First of all: Please direct these types

RE: Clever trick required

2005-10-18 Thread Neil Meyer
Hi, I know this is probably of topic but I have huge problems with my webserver. We are running struts on this server under Tomcat 5.1. It seems like the tomcat server can't handle load. Any comment or recommendations will really be appreciated. I'm looking at Sun web server now. Regards Neil

Re: Clever trick required

2005-10-18 Thread Leon Rosenberg
1) Don't high-jack threads. Start a new one if you really want an answer. 2) This is hardly a topic for the struts-user list. mail to [EMAIL PROTECTED] 3) What is tomcat 5.1??? leon On 10/18/05, Neil Meyer [EMAIL PROTECTED] wrote: Hi, I know this is probably of topic but I have huge problems

SV: Clever trick required

2005-10-18 Thread hermod.opstvedt
any problem at all. Hermod -Opprinnelig melding- Fra: Neil Meyer [mailto:[EMAIL PROTECTED] Sendt: 18. oktober 2005 10:12 Til: Struts Users Mailing List Emne: RE: Clever trick required Hi, I know this is probably of topic but I have huge problems with my webserver. We are running struts

RE: Clever trick required

2005-10-18 Thread Neil Meyer
Hi, I'm not serving any static content; everything is dynamic out of a database. Neil -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: 18 October 2005 03:14 PM To: Struts Users Mailing List Subject: Re: Clever trick required Hermod- Currently I am currently

Clever trick required

2005-10-17 Thread Murray Collingwood
Hi all Bean 1 has a property, a list of Bean 2s. I want to display these on the screen but I don't want to display repeated occurrences of the same value from Bean 1. For example, lets assume Bean 1 is surname and Bean 2 is first names, and we have families, and what I want is something

Re: Clever trick required

2005-10-17 Thread Tamas Szabo
Hi mate :-), using the indexId property in the second logic:iterate and displaying jsp:getProperty name=aFamily property=name/ only if indexId is 0 would do waht you want? Tamas On 10/17/05, Murray Collingwood [EMAIL PROTECTED] wrote: Hi all Bean 1 has a property, a list of Bean 2s. I

Re: Clever trick required

2005-10-17 Thread Aldo Vadillo Batista
A possible solution could be: logic:notEmpty name=family logic:iterate name=family type=Family id=aFamily logic:notEmpty name=aFamily property=members bean:define id=firstRow value=true / logic:iterate name=aFamily property=members type=Member id=aMember logic:notEqual name=firstRow value=true tr

Re: Clever trick required

2005-10-17 Thread Vic Cekvenich
displaytag does it, and it's in sample screens on sf.net. displaytag should be included in struts! Also... using logic tag is deprecated. use jstl instead. .V Murray Collingwood wrote: Hi all Bean 1 has a property, a list of Bean 2s. I want to display these on the screen but I don't want to

Re: Clever trick required

2005-10-17 Thread Murray Collingwood
Thanks Tamas - exactly what I was after! Kind regards mc On 17 Oct 2005 at 21:04, Tamas Szabo wrote: Hi mate :-), using the indexId property in the second logic:iterate and displaying jsp:getProperty name=aFamily property=name/ only if indexId is 0 would do waht you want? Tamas