[OT] Reminder: Struts-Atlanta meeting this week.

2003-07-27 Thread James Mitchell
I hope everyone is as excited as I am. Our next meeting (Tuesday evening) promises to be spectacular. The topic is on JSTL and Struts-EL. I am, as I'm sure many of you are, looking forward to this presentation. In the past, a few of us get together before these our meetings to meet, greet,

Possible to dynamically set value of an html:select element?

2003-07-27 Thread David Benoff
Pardon the newbie-ness but Ive searched the archives extensively and havent turned up anything on this. Any hints would be much appreciated. Id like to know whether there is any way to dynamically set the property attribute within an html:select element. The page Im working on iterates

Re: Possible to dynamically set value of an html:select element?

2003-07-27 Thread R Balaji
Have you ever tried with heml-el:select, where you can pass such expresions . balaji David Benoff wrote: Pardon the newbie-ness but Ive searched the archives extensively and havent turned up anything on this. Any hints would be much appreciated. Id like to know whether there is any way to

RE: OT: JSR-168 is available for review

2003-07-27 Thread Edgar Dollin
Vic gave a very interesting Flash demo the other day. Considering the poor state of java view options it was good to see a real alternative to the gobbledygook currently available. Edgar -Original Message- From: Vic Cekvenich [mailto:[EMAIL PROTECTED] Sent: Saturday, July 26, 2003

Action with no associated form bean?

2003-07-27 Thread Oguz Kologlu
Hi all, I'm having some problems getting a form that has no associated form bean to display. It's basically a logout form with no fields that calls a logout action but has no form values so doesn't require a form bean - yet it seems you must have a form bean to call an action. Is this the

Re: Can Validator javascript show more than one error at a time?

2003-07-27 Thread Brian Alexander Lee
There's currently a defect (http://issues.apache.org/bugzilla/show_bug.cgi?id=20754) in bugzilla that would use (bitwise operator) instead of so it would process all validations. You can apply the patch yourself. It's only two files ValidatorPlugIn.java and JavascriptValidatorTag.java. BAL

Mmap-backed form property and multiselect.

2003-07-27 Thread Jacek Zoch
I pot it again Does it work to combine map-backed form property and multiselect My code : public void setValue( String key, String[] val ) public String[] getValue(String key) does not work. Is there any other way to do it ? Thanks for your help. Jacek

RE: Possible to dynamically set value of an html:select element?

2003-07-27 Thread David Benoff
Thanks balaji, I'll try that:) David -Original Message- From: R Balaji [mailto:[EMAIL PROTECTED] Sent: Sunday, July 27, 2003 3:13 AM To: Struts Users Mailing List Subject: Re: Possible to dynamically set value of an html:select element? Have you ever tried with heml-el:select, where

expert group

2003-07-27 Thread message message
I was informed that the expert group can be found at Struts. Does that mean that as long I use struts Framework I will always be using a framework which is compliant to the various web standards. Does that also mean that J2EE architects are not experts but a bunch of lame Sun Microsystems

URG:Is there a Struts Equivalent Tag This??????

2003-07-27 Thread guruprasad jakka
Hi, I am currently doing a small project of converting an existing web-application written in JSPs to Struts framework. I have a selfregistration page which has many input fields. The data obtained from it is received in another jsp and processed further. I have given the piece of code where

RE: Action with no associated form bean?

2003-07-27 Thread Alex Shneyderman
You do not have to have a form to call an action. You have not stated your problem. What is the problem you encountered? -Original Message- From: Oguz Kologlu [mailto:[EMAIL PROTECTED] Sent: Sunday, July 27, 2003 9:42 AM To: Struts-User Subject: Action with no associated form bean?

Calculation...

2003-07-27 Thread m1k4
What is price of simple Ticket oriented Intranet application (10 jsp, 20-30 .java files) ??? Thank You - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Can Validator javascript show more than one error at a time?

2003-07-27 Thread Steve Raeburn
To correct myself: Due to the way the expression is evaluated, if any tests returns *false* the subsequent tests are not executed. This is because the operator uses short-circuit evaluation. If any of the tests return false then the whole expression must be false, so the subsequent tests are

Re: Validator - NullPointerException

2003-07-27 Thread Koni
After a few direct questions about how I solved the problem, here the answer: The database for my application was missing eg. not started. The error (NullPointerException) shown in the browser was more than strange but now it works fine... Koni Koni Roth wrote: Hello I'm running Netbeans 3.5

RE: ServletException Response has already been committed'

2003-07-27 Thread Ranko Bijelonic
Actually, I think I'm completely off on that include element. For some reason I tought a forward element would specify a forwarding ActionForward and include element would specify an included ActionForward. But I think the include element does not exist. You can always make this a servlet

Re: expert group

2003-07-27 Thread James Mitchell
There are many talented and helpful people on this list. There are also some who spew false rumors and outrageous predictions. You are free to form your own opinion(s), and I encourage you to do so. -- James Mitchell Software Developer/Struts Evangelist http://www.struts-atlanta.org

Re: expert group

2003-07-27 Thread message message
Yes thank you and I will keep my opinions to myself. The only reason I am here is because I was visiting www.amazon.com whilst looking for some books. Somebody wrote although JSP PRO has loads of typos it is very good book. I think the reason that person wrote the reviews was because it opens this

Re: expert group

2003-07-27 Thread message message
P.S. I did buy the book as a result of the reviews. From: message message [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: expert group Date: Mon, 28 Jul 2003 03:33:20 +0400 Yes thank you and I will keep my opinions to myself. The only

tomcat4.1

2003-07-27 Thread VIRU
Hello every body. recently i started working on tomcat 4.1 page container, previously i use to work in Resin page container i feel Resin is really very good page container then Tomcat. I m facing unexpected errors, some times my bean will get called some times for same the bean i get bean

SSL+struts

2003-07-27 Thread Nagendra Kumar O V S
SSLEXT really works great for me when i switch from "http" to "https". Well when i am in https mode i submit a form as post methods, however the subsequent page is not secured. Obviously the action redirects to http mode, that is ok with me but it appends the

Multiple modules - Please help

2003-07-27 Thread Ajay Patil
Hello, I am trying to configure Struts with multiple modules. I have got most of it working but I am stuck up at one point. When the action classes forward to a JSP page, everything works ok. But I get a 404 error if the action forwards to another action. action path=/list .

Re: Multiple modules - Please help

2003-07-27 Thread Nagendra Kumar O V S
hi, there is an SwitchAction available with struts, which can be used to switch bet' modules. try it i have't implemented though -- nagi ---Original Message--- From: Struts Users Mailing List

RE: Multiple modules - Please help

2003-07-27 Thread Steve Raeburn
If the action you are forwarding to is in a different module then you need to use the SwitchAction or specify contextRelative=true on your forward definition. forward name=edit path=/modulename/edit.do contextRelative=true Steve -Original Message- From: Ajay Patil [mailto:[EMAIL

Re: Nested Bean Problem

2003-07-27 Thread Frost, Gary [IT]
Or you could create a new class, JBNCCArrayList (Java Bean Naming Convention Compliant Array List) or some other (nicer) name, that extends ArrayList (remember to include all the appropriate constructors), that adds the following method public int getSize() {

newbie question!

2003-07-27 Thread Samanth Athrey
Hello, This question probably might have been asked many a times. But I searched the archive (though not fully) but could not find this. So, if anybody has a solution please do let me know. I have developed a sample application, which takes in an input and based on that displays either a success

Text Box on JSP Page

2003-07-27 Thread Anubhav Kale
Hello. I want to display a string inside text box on JSP Page. If the string contains spaces then only the 1st substring upto 1st space is diaplayed in text box on the page. (e.g. if string is anubhav kale then text box displays only anubhav ) I use the following code: input type =text name