?? What is up with the MDaemons ??

2003-07-12 Thread Micael
What is with the hundreds of MDaemons I am getting on this list? LEGAL NOTICE This electronic mail transmission and any accompanying documents contain information belonging to the sender which may be confidential and legally privileged. This information is intended only for the use of the

Re: newbie question - setting form parameter in Javascript

2003-07-12 Thread Firat TIRYAKI
probably you can not see the javascript error, because the form submits in the function, remove the submit(); in the function and see the error, and also I recommend you not to use onclick event, try onchange, it's better in this situation. F. - Original Message - From: Shyam A [EMAIL

Re: Using JSTL tags instead of Struts tags

2003-07-12 Thread Ted Husted
Yansheng Lin wrote: It doesn't sound right to me. Java still support deprecated methods from years ago. Besides, when we look at the struts tag lib API reference, there is no warning about these tags being deprecated. Craig R. McClanahan wrote: IMHO, it would be a disservice to the Struts

Re: JBoss Problem

2003-07-12 Thread Joe @ Team345
The easiest thing to debug and get JBoss started is to accept ALL the defaults - i.e. just unzip the zip file to your top most directory. Then start your run.bat script. Read the first few lines and make sure all the settings are correct. The output should help tell you if, for instance,

Re: question about ActionErrors

2003-07-12 Thread Yan Zhu
I might be wrong about this, but doesn't this still force it to look for files in app's classpath, such as in directories like WEB-INF/classes or /lib ? I need to load the property file from WEB-INF/conf/myapp.message, how would I do that? thanks yan Peter Smith wrote: Hi Yan, For your

Re: newbie question - setting form parameter in Javascript

2003-07-12 Thread Rick Reumann
My Javascript function is given below: SCRIPT language=JavaScript function submitForm(form) { form.action.value=Lookup; form.submit(); return true; } # and I invoke this function in my HTML form as shown below:

Help needed - running Rick Reumann's lesson 1- Urgent!!

2003-07-12 Thread Rajat Nayer
Hi, I am running the lesson 1( turorial by Rick Reumann) and am getting the foll. error: Error in using tag library uri='/WEB-INF/struts-html-el.tld' prefix='html': The Tag class 'org.apache.strutsel.taglib.html.ELOptionTag' has no setter method corresponding to TLD declared attribute 'bundle',

Re: Help needed - running Rick Reumann's lesson 1- Urgent!!

2003-07-12 Thread Rick Reumann
On Sat, Jul 12,'03 (08:20 AM GMT-0700), Rajat wrote: Hi, I am running the lesson 1( turorial by Rick Reumann) and am getting the foll. error: Error in using tag library uri='/WEB-INF/struts-html-el.tld' prefix='html': The Tag class 'org.apache.strutsel.taglib.html.ELOptionTag' has no

[OT] Raj, please start a new message vs reply

2003-07-12 Thread Rick Reumann
On Sat, Jul 12,'03 (08:20 AM GMT-0700), Rajat wrote: Hi, I am running the lesson 1( turorial by Rick Reumann) and am getting the foll. error: Also, Rajat, please start a new message (vs replying to a thread) if the subject has changed. Now this message as well as my previous one and yours

Re: [OT] Raj, please start a new message vs reply

2003-07-12 Thread James Mitchell
On Saturday 12 July 2003 11:46, Rick Reumann wrote: On Sat, Jul 12,'03 (08:20 AM GMT-0700), Rajat wrote: Hi, I am running the lesson 1( turorial by Rick Reumann) and am getting the foll. error: Also, Rajat, please start a new message (vs replying to a thread) if the subject has

action forward to real jsps under Tiles

2003-07-12 Thread Erez Efrati
I am new to Tiles: 1) What are the downsides over writing your own? 2) While using the Tiles+Struts, is it possible to put forward an action to a real JSP file rather than a Tiles definition? Would it (Tiles request processor) know the difference? Thanks, Erez

Re: Problem with DynaActionForms

2003-07-12 Thread Richard Stack
Thanks That solved my problem. Richard Tan Khay Ong wrote: You are using the Dynamic form. It doesn't create java class for loginForm. All values are stored in the Map of DynaValidatorFrom. You can retrieve form value as below. DynaValidatorForm dyform = (DynaValidator) form; String userName =

html format in tiles

2003-07-12 Thread Yan Zhu
when you are using tiles, and put all these jsps together in one page, is there a good way to keep the html tags lined up? Thanks yan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: newbie question - setting form parameter in Javascript

2003-07-12 Thread Shyam A
Mark, Thanks a lot for your mails. I have used action as a form bean property and not as a parameter in struts-config. Unfortunately, the Javascript function doesn't seem to work...it does not set the value of the ActionForm property, action. When I tried to print out the value of the action

Re: question about ActionErrors

2003-07-12 Thread Jing Zhou
- Original Message - From: Yan Zhu [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, July 12, 2003 9:10 AM Subject: Re: question about ActionErrors I might be wrong about this, but doesn't this still force it to look for files in app's classpath, such

Re: question about ActionErrors

2003-07-12 Thread Yan Zhu
I like all the features currently implemented in the PropertyMessageResources. It just seems a bit odd to me that the only way implemented is to look for the property file in the classpath, and you don't have a way to specify the path to the file. Is there an example of extending that class for

Re: question about ActionErrors

2003-07-12 Thread Yan Zhu
nevermind, the source code for PropertyResourceMessages is good enough. thanks! yan Yan Zhu wrote: I like all the features currently implemented in the PropertyMessageResources. It just seems a bit odd to me that the only way implemented is to look for the property file in the classpath,