html:checkbox or multibox?? how to value as getter from collection

2003-12-26 Thread shahfazal
Hi all i already posted twice about this but i guess my email program had trouble formatting my mail or somethign but anyway long thing short i have a collection of ApplicationVO value objects, i need to display them in rows on a jsp. so i iterate thru the collection of the value objects, and

Performance Issue

2003-12-26 Thread Raman
Our site is facing a performace issue we need to track what are the bottle necks in this. We are Using 1. Tomcat 4.1 2. Post Gre Sql 7.1 3. Struts 1.1 4. Red hat Linux Our pages required quite good number of results from database. you can say we fire around 20-30 queries to create dynamic left

What is wrong with this upload filename (UTF-8) decoding?

2003-12-26 Thread Zsolt Koppany
Hi, my application has to support UTF-8 including when files are uploaded with UTF-8 characters in the filename (for example: ??.txt). I use a servlet filter that always call request.setCharacterEncoding(UTF-8) and my jsp pages contain response.setContentType(text/html;

Initializing application data source org.apache.struts.action.DATA_SOURCE

2003-12-26 Thread Ricky Purnomo
Hello, I am new to Struts, and am trying to deploy to Tomcat an application that uses mySQL as database. However I am encountering the following errors: 2003-12-24 14:28:33 StandardWrapper[/necdcstruts1:action]: Marking servlet action as unavailable 2003-12-24 14:28:33

RE: What is wrong with this upload filename (UTF-8) decoding?

2003-12-26 Thread Zsolt Koppany
After posting now I see that the posted email contains ? characters instead of the original chinese characters I used in my example. Zsolt -Original Message- From: Zsolt Koppany [mailto:[EMAIL PROTECTED] Sent: Friday, December 26, 2003 11:45 AM To: Struts Users Mailing List Subject:

Re: Performance Issue

2003-12-26 Thread ....
And what DAO are you using? The slowest and most buggy part of J2EE is Data Access. I use OpenSta for testing! Once you have a DAO, do showplan on your SQL. But my guess is as soon as you pick a DAO you'll be fine. .V ps: (did I ever happen to say on this list that iBatis DAO has built in

Re: What is wrong with this upload filename (UTF-8) decoding?

2003-12-26 Thread Firat TIRYAKI
I think it depends on the operating system on your machine where the app server is running... Try to solve the problem with your OS. F. - Original Message - From: Zsolt Koppany [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, December 26, 2003 12:51 PM

RE: retrieving values from application.properties file

2003-12-26 Thread Kalra, Ashwani
Yeah,I think this was it. I will try it Thanks -Original Message- From: Mohan Radhakrishnan [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 24, 2003 8:13 PM To: 'Struts Users Mailing List' Subject: RE: retrieving values from application.properties file This might be the wrapper

RE: .NET: We are just like Struts... only better.

2003-12-26 Thread Edgar P Dollin
It is a complement that Microsoft is worried about the feature set of struts. However, a lot of the stuff that comes in ASP.NET sounds good compared to the java equivalents. Edgar -Original Message- From: Vic Cekvenich [mailto:[EMAIL PROTECTED] Sent: Thursday, December 25, 2003 6:16

RE: .NET: We are just like Struts... only better.

2003-12-26 Thread J Janesko
It seems that Microsoft has a growing concern for open source solutions. Recently, a Microsoft survey targeted Linux users to find out: *why Linux users have opted not to use Microsoft, *and what Microsoft could do to improve their operating system(s). See:

Re: File Upload

2003-12-26 Thread Martin Cooper
What is it that you are trying to do? Is there a reason you can't just use a FormFile object in your form bean? That would make your life a whole lot easier - you wouldn't have to know or care about the request wrapper, and you wouldn't have to iterate over the uploaded fields. Also, I'm not sure

[OT] Who owns Eclipse

2003-12-26 Thread Ramadoss Chinnakuzhandai
Hi, Is Eclipse owned by IBM or bought by IBM? Any idea? -Ram - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [OT] Who owns Eclipse

2003-12-26 Thread Martin Cooper
Neither. IBM originally created Eclipse, but then donated it to the open source community. See: http://www.ibm.com/news/us/2001/11/05.html My understanding is that Eclipse grew out of IBM's VisualAge for Java project. -- Martin Cooper Ramadoss Chinnakuzhandai [EMAIL PROTECTED] wrote in

RE: [OT] Who owns Eclipse

2003-12-26 Thread Ramadoss Chinnakuzhandai
Cooper Tnx for your information :) -Ramadoss -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of Martin Cooper Sent: Friday, December 26, 2003 3:22 PM To: [EMAIL PROTECTED] Subject: Re: [OT] Who owns Eclipse Neither. IBM originally created Eclipse, but then donated it to

Re: What is wrong with this upload filename (UTF-8) decoding?

2003-12-26 Thread Jason Lea
I have not used the file upload yet, but I believe you need to set the encoding for the headers formFile.setHeaderEncoding(UTF-8) setHeaderEncoding does this: Specifies the character encoding to be used when reading the headers of individual parts. When not specified, or |null|, the platform

Re: [OT] Who owns Eclipse

2003-12-26 Thread Ingo Adler
Eclipse developement is driven by OTI (www.oti.com), an IBM company. They developed Visual Age before. IBM (and maybe some of the OTI employees) builds WebSphere Studio Application Developer on top of it and sells it. Ingo Ramadoss Chinnakuzhandai wrote: Hi, Is Eclipse owned by IBM or

RE: [OT] Who owns Eclipse

2003-12-26 Thread Ramadoss Chinnakuzhandai
meaning eclipse own by===OTI===own by IBM== Eclipse own by IBM? -Original Message- From: Ingo Adler [mailto:[EMAIL PROTECTED] Sent: Friday, December 26, 2003 3:49 PM To: Struts Users Mailing List Subject: Re: [OT] Who owns Eclipse Eclipse developement is driven by OTI (www.oti.com),

checkbox value from getter in collection of value object

2003-12-26 Thread shahfazal
Hi all i already posted twice about this but i guess my email program had trouble formatting my mail or somethign but anyway long thing short i have a collection of ApplicationVO value objects, i need to display them in rows on a jsp. so i iterate thru the collection of the value objects, and

Re: [OT] Who owns Eclipse

2003-12-26 Thread Brice Ruth
Eclipse is an Open Source Project, bottom line. WSAD is built on the Eclipse framework ... you see, Eclipse isn't just an IDE, that's just one particular incarnation of Eclipse plugins. Eclipse is simply an extensible plugin framework that can be used for any type of application, by anyone out

Re: checkbox value from getter in collection of value object

2003-12-26 Thread atta-ur rehman
Hello Shahfazal, As i understand from the 'applicantId' getter, you want to use these checkboxes as a selecting indicator. If so, create a String[] getter/setter in your ActionForm, let say: setSelectedApplicants(String[] ids) String[] getSelectedApplicants() now in your jsp you can write:

RE: Problem with multibox check state

2003-12-26 Thread Rajesh, Harikrishnan (H.)
Hi, Thanks for the info, I can understand this type of program would suit a static multibox, I need some coding for a dynamic array of multiboxes with the same property value, how do I set the values in the action class? Thanks in advance Regards H.Rajesh -Original Message- From:

tiles, conditional choice of

2003-12-26 Thread Brady Hegberg
I've been trying to find the best way to handle a situation where you have various formats for a tile and the tile appearance is chosen at run-time. definition name=showList extends=mainLayout put name=header value=/header.jsp/ put name=body value=// put name=footer value=/footer.jsp/

hidden property null

2003-12-26 Thread ajay brar
hi! i have a value in request scope that i would like to pass on to an action, called when you submit a form on the page, i accessed the value on the page as % String tableName = request.getParameter(tableName); % and correctly retrieved the value. in my form then i initialized a hidden property