RE: Struts and Together CC

2002-09-27 Thread David McLure
Has anyone try to deploy a struts app on Together CC 6.0 with struts plugin? When doing it, my ApplicationResource.properties file does not get place in the WAR file. any ideas? thanks in advanced. -gus Not sure which plugin you are referring to, but I've been using Together 6.+ (build

Re: Struts and Together CC

2002-09-27 Thread David McLure
I wanted to make sure I properly posted the link to these instructions (my web link may not have worked previously) : http://www.mclures.net/java/struts/Together/index.html David McLure wrote: Has anyone try to deploy a struts app on Together CC 6.0 with struts plugin? When doing it,

RE: How to call an array setter

2002-09-27 Thread mail
I placed this in the Action class and everything compiled, but it moved everything iteration of gridDetermination MessageCodes into only the first array iteration. For example, if I have 7 MessageCodes to load into the MsgCode array, I only get one MsgCode in the array. How should I do this to

RE: How to call an array setter

2002-09-27 Thread Adrian Brown
Hi, A String cannot be handed in when it expects a String array. Try public String[] getMessageCode() { return new String[] { string here }; } Adrian --- mail [EMAIL PROTECTED] wrote: getMessageCode() returns a String. The error message I get is: setMsgCode(java.lang.String[]) in

RE: How to return changes made on a JSP iteration of object properties to the Action Class

2002-09-27 Thread mail
Thanks for the link. Are there any complete working examples out there to look at? -Original Message- From: Joe Latty [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 25, 2002 11:49 PM To: Struts Users Mailing List Subject: RE: How to return changes made on a JSP iteration of

RE: How to call an array setter

2002-09-27 Thread Adrian Brown
for this, try: return new String[] { string1, string2, string3, string4, string5, string6, string7 }; Adrian --- mail [EMAIL PROTECTED] wrote: I placed this in the Action class and everything compiled, but it moved everything iteration of gridDetermination MessageCodes into only the

Re: org.apache.coyote.http11.Http11Processor.process taking a long time

2002-09-27 Thread Steve Vanspall
Ok two extra questions then Do I need any extra taglib's for using JSTL? and does the list itself need to be a variable in the form I am using, or can it be a variable on the page? Regards Steve - Original Message - From: Eddie Bush [EMAIL PROTECTED] To: Struts Users Mailing List

RE: How to call an array setter

2002-09-27 Thread mail
I was braindead. This code took care of it: for(int i = 0; i determinationsArray.length; i++) { gridDeterminations = (GridDeterminations) determinationsArray[i]; msgCode[i] = gridDeterminations.getMessageCode(); } responseProcessForm.setMsgCode(msgCode); -Original

[OT][JavaScript][Lazy] Product Rego number automatic JavaScript focus shifting

2002-09-27 Thread Andrew Hill
pleasedomyworkforme excuse sin=sloth Doubtless their are tons on resources on the net but its Friday ,Im feeling lazy, and Im sure many of you have already done this... excuse Ive got a product registration field on a form which consists in the html of a few input fields. I want the focus to

Is it really worth the effort to have a single instance of the Action?

2002-09-27 Thread Andrew Hill
Given that for modern JVMs object creation and cleanup isnt the chore it used to be , I am wondering if it might not be more convienient to create a new Action instance for each request. This would eliminate the need to write the Actions in a thread-safe manner and allow for the use of member

Struts tag handlers

2002-09-27 Thread Mohan Radhakrishnan
Hi, I am trying to understand some tag handlers. html:form name=report action=report.action onsubmit=validate(this) html:select name=ReporterParameterForm property=applications multiple=true size=2 html:options collection=ReporterParameterForm name=ReporterParameterForm

Re: Tile and parameters use...

2002-09-27 Thread Cedric Dumoulin
Hi, Sorry for this late answer, I am abroad since 2 weeks, and have some trouble with my mails. I see different solutions to your problem: Sol 1: Define different menu definition, and use them in your page definition: definition name=main.menu2 extends=main.menu put

Re: tabsLayout.jsp ServletException??

2002-09-27 Thread Cedric Dumoulin
Hi, Sorry for this late answer, I am abroad since 2 weeks, and have some trouble with my mails. Don't you have more message error ? Maybe you have a problem with one of your tiles. Can you try them separately, especially the ones inserted inside tabs. Also, can you confirm

Re: Tiles/Template Automation

2002-09-27 Thread Cedric Dumoulin
Hi, Sorry for this late answer, I am abroad since 2 weeks, and have some trouble with my mails. The preferred way is to use definitions defined in a centralized xml file. This is more flexible than having some attributes hardcoded in the jsp files themselves. Cedric Adam

Re: Tiles and Internationaliation

2002-09-27 Thread Cedric Dumoulin
Hi, Normally, the TilesRequestProcessor do everything its parent (REquestProcessor) does. If it doesn't, please report the bug to bugzilla. If you use Tiles definitions, you need TilesRequestProcessor, so you need to extend it. Cedric Cristian Cardenas wrote: I found

again ArrayList and javax.servlet.ServletException: BeanUtils.populateexception

2002-09-27 Thread Martin Grebac
Hi, I'm looking for any hint or advice. I've got code like this on my jsp page: html:select property=folders multiple=true html:options property=folders/ /html:select property folders is a property of my ModulePathForm bean: /* ModulePathForm.java */ public class ModulePathForm

[Cust-Taglibs] How to mark a option using html:select?

2002-09-27 Thread Rademacher Tobias
I'm currently struggling with the fine custom taglibs of struts. I have question about the selection tag. I'm currently using: html:select property=role style=margin-left:25% html:options collection=roles labelProperty=name

RE: [Cust-Taglibs] How to mark a option using html:select?

2002-09-27 Thread Mohan Radhakrishnan
Hi, Seems that the documentation for tag handlers is tricky. I've spend a whole day on this functionality and it is still not working. bye, Mohan -Original Message- From: Rademacher Tobias [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 4:25 PM To: '[EMAIL PROTECTED]'

Re: [OT] CMA in WebSphere iAS 3.5

2002-09-27 Thread Vilya Harvey
Eddie, I haven't used WebSphere myself, but a quick bit of googling found these: http://www.websphere.org/docs/pauld.pdf http://www-3.ibm.com/software/webservers/appserv/doc/v35/ae/infocenter/was/0 50102.html http://www-3.ibm.com/software/webservers/appserv/doc/v40/ae/infocenter/was/0

RE: Sub Project Example

2002-09-27 Thread Galbreath, Mark
Chuck explains this in his forthcoming O'Reilly book. You can read the drafts at http://www.theserverside.com/resources/download.jsp. Unfortunately, I don't remember in which chapter he covers that material. Mark -Original Message- From: Steven Leija [mailto:[EMAIL PROTECTED]] Sent:

RE:[HOUSE CLEANING] About some odd postings...

2002-09-27 Thread Galbreath, Mark
Pain In The Arse. Now, if we could just get rid of that Mark Galbreath guy -Original Message- From: Peter A. J. Pilgrim [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 9:06 PM Galbreath, Mark wrote: Thanks, Pier - that guy is one big PITA. PITA == A type of bread

RE: [HOUSE CLEANING] About some odd postings...

2002-09-27 Thread Andrew Hill
Oh that Galbreath fellow. Yeh. Ive been filtering him a long time now ;- -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 19:35 To: 'Struts Users Mailing List' Subject: RE:[HOUSE CLEANING] About some odd postings... Pain In The

RE: again ArrayList and javax.servlet.ServletException: BeanUtils.populate exception

2002-09-27 Thread thorsten_soebirk
Hi, I think the problem is that your html:select... and html:options... tags both reference the folders property. Judging by your code, the html:options... tag is doing what you expect i.e. getting the list of folders the user can select from. However, your html:select... tag is telling

RE: [FRIDAY] Middle East Policy

2002-09-27 Thread Galbreath, Mark
Martin pointed out to me that this may be offensive to some and divisive on the list. I hope neither occurs. It may or may not represent my political views, but in this context IT IS MERELY A JOKE. Mark -Original Message- From: David Derry [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: [Cust-Taglibs] How to mark a option using html:select?

2002-09-27 Thread thorsten_soebirk
You cannot nest tags this way. You need to do something like: html:select ... value=%=user.getCompany()%/ or bean:define id=userCompany name=user property=company/ html:select ... value=%=userCompany.toString()%/ - Thorsten -Original Message- From: Rademacher Tobias [mailto:[EMAIL

RE: [OT][JavaScript][Lazy] Product Rego number automatic JavaScript focus shifting

2002-09-27 Thread Galbreath, Mark
function moveNext( field) { switch( field) { case areacode : if( document.forms[0].areacode.value.toString().length == 3) { document.forms[0].phoneExchange.focus(); } break; case phoneExchange : if(

RE: [OT][JavaScript][Lazy] Product Rego number automatic JavaScript focus shifting

2002-09-27 Thread Andrew Hill
Cheers :-) -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 19:58 To: 'Struts Users Mailing List' Subject: RE: [OT][JavaScript][Lazy] Product Rego number automatic JavaScript focus shifting function moveNext( field) { switch( field)

RE: [Cust-Taglibs] How to mark a option using html:select?

2002-09-27 Thread Ravi Kora
I think you can't have a scriplet in a Struts tag as in the statement html:select ... value=%=user.getCompany()%/ However, if you have tried it and it worked, please mail me back -Ravi Thanks Regards, Ravi Kora [EMAIL PROTECTED] 337-739-3434(M) -Original Message- From: [EMAIL

RE: [Cust-Taglibs] How to mark a option using html:select?

2002-09-27 Thread Kevin A. Smith
I think you can. In the TLD you set rtexprvalue to true for that tag attribute and it should work. --Kevin -Original Message- From: Ravi Kora [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 8:09 AM To: 'Struts Users Mailing List' Subject: RE: [Cust-Taglibs] How to mark a

RE: Please help with iteration problem

2002-09-27 Thread Holman, Cal
There was a bug in 4.1.10 Jasper that did not compile the nested iterate tags - it has been fixed. Try 4.1.12 - I have a three deep nested iterate and it works on 4.1.12. Cal http://www.calandva.com/ -Original Message- From: Michael Bowman [mailto:[EMAIL PROTECTED]] Sent:

Re: again ArrayList and javax.servlet.ServletException: BeanUtils.populate exception

2002-09-27 Thread Martin Grebac
No, it doesn't work also. I get the same exception everytime. I want to have the possibility to select multiple folders, so I did what you suggested: added property selectedFolders of type String[], so I added this code to my ModulePathForm: private String[] selectedFolders;

RE: [Cust-Taglibs] How to mark a option using html:select?

2002-09-27 Thread Sri Sankaran
This topic has been addressed *numerous* times on this list. However, I understand what a PITA searching on mail-archive is, so here goes: Firstly take a look at the html-select.jsp that is part of the struts-exercise-taglib application that ships with struts. It should answer all your

RE: again ArrayList and javax.servlet.ServletException: BeanUtils .populate exception

2002-09-27 Thread Mohan Radhakrishnan
Hi, Mine is slightly different but doesn't work. public void setWanLinks( String[] wanLinks ){ this.wanLinks = wanLinks; } public Collection getWanLinkOptions(){ return wanLinkOptions; } The Collection returns LabelValueBeans.

RE: again ArrayList and javax.servlet.ServletException: BeanUtils .populate exception

2002-09-27 Thread thorsten_soebirk
What you have there looks right, so silly question (maybe): have you reloaded the web application after recompiling the ModulePathForm class? - Thorsten -Original Message- From: Martin Grebac [mailto:[EMAIL PROTECTED]] Sent: 27 September 2002 13:32 To: Struts Users Mailing List

Struts ActionMapping / OC4J problem

2002-09-27 Thread Thomas Delnoij
Dear colleagues, I have a problem configuring Struts to run properly with the embedded OC4J app server in Oracle 9i JDeveloper. It can only find the first Action Object of these two ActionMappings I configured. action-mappings type=org.apache.struts.action.ActionServlet action

RE: ActionForm

2002-09-27 Thread Desjardins, Nicolas
thanks... why i didnt think of that! Shame on me! :o) -Original Message- From: Robert Taylor [mailto:[EMAIL PROTECTED]] Sent: 26 septembre, 2002 10:53 To: Struts Users Mailing List Subject: RE: ActionForm I just ran into a similar problem where I have a set up action which populates

Retrieving list of Roles defined in web.xml [Revised]

2002-09-27 Thread Vinh Tran
I can also manage if there is a simple way to identify the roles a user particpates in (using container managed security). There is a call for isUserInRole() but nothing for getUserRoles()? Any ideas? Thanks. -Original Message- From: Vinh Tran [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: RE: [Cust-Taglibs] How to mark a option using html:select?

2002-09-27 Thread Rademacher Tobias
HI Sri, -Ursprüngliche Nachricht- Von: Sri Sankaran [mailto:[EMAIL PROTECTED]] Gesendet am: Freitag, 27. September 2002 14:40 An: Struts Users Mailing List Betreff: RE: [Cust-Taglibs] How to mark a option using html:select? This topic has been addressed *numerous* times on this

Re: again ArrayList and javax.servlet.ServletException: BeanUtils .populate exception

2002-09-27 Thread Martin Grebac
Yes, I built everything anew, and also restarted server. I forgot to mention I'm using Struts 1.0.2 (but I think it's not relevant). Since Mohan has almost the same problem and everything we are using seems to be OK for you, and also according to the documentation it should work, I assume

Re: [FRIDAY] Middle East Policy

2002-09-27 Thread jsadove
L very OL Galbreath, Mark [EMAIL PROTECTED] on 09/26/2002 07:14:11 PM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To: Struts (E-mail) [EMAIL PROTECTED] cc:(bcc: Joseph Sadove/DKBDS USA/DKB) Subject: [FRIDAY] Middle East Policy [IMAGE] (See attached file:

issue with multiple message-resources

2002-09-27 Thread Chen, Dean (Zhun)
Hi, I've implemented multiple message-resources. I'm running into issue where some actionErrors exists in one bundle and not another, hence causing displaying errors like this: TEST ERROR ???en_US.err.test??? My JSP looks like this: html:errors/ html:errors bundle=FRAMEWORK/ In

changing action for a form dynamically

2002-09-27 Thread deepank
Hi, how can i cange the action attrbute of the html:form tag dynamically, so that the path that to which the form will be submitted changes everytime the JSP is brought up if i do something like this in my action class if (((ReviewTeamForm)form).getCommand()!=null)

RE: changing action for a form dynamically

2002-09-27 Thread Andrew Hill
This has nothing to do with the action attribute per se, but rather the sad fact that you cannot 'nest' jsp tags in that manner. You will need to use an ugly scriptlet in place of that nice clean bean:write tag to render the attribute value to the page. -Original Message- From:

[FRIDAY] Tee Time

2002-09-27 Thread Galbreath, Mark
Have a great weekend, alls...my account rep just decided to take me out of the office for 18 holes on the swankest links in Baltimore County. Mark (likes the 19th the best)

RE: [FRIDAY] Tee Time

2002-09-27 Thread Darren Hill
FORE! -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: September 27, 2002 9:40 AM To: Struts (E-mail) Subject: [FRIDAY] Tee Time Have a great weekend, alls...my account rep just decided to take me out of the office for 18 holes on the swankest links in

Re: Globals

2002-09-27 Thread David Graham
I would use the constants from Globals. That text sounds very much like the Action constants will be deprecated. It doesn't make sense to define the constants in 2 places so one of them has to go. Dave From: Anthony Martin [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL

RE: Retrieving list of Roles defined in web.xml [Revised]

2002-09-27 Thread Jacob Hookom
You can also getPrincipal from the request, from that, you can ask for the roles You might want to pass this to tomcat users list... this is struts. | -Original Message- | From: Vinh Tran [mailto:[EMAIL PROTECTED]] | Sent: Friday, September 27, 2002 7:55 AM | To: [EMAIL PROTECTED] |

Re: again ArrayList and javax.servlet.ServletException: BeanUtils .populate exception

2002-09-27 Thread Martin Grebac
Hi, so here is the Bugid: 13075 . May I expect something's gonna happen with it, or will it die in the deeps of the bug database ;O)) Martin Martin Grebac wrote: Yes, I built everything anew, and also restarted server. I forgot to mention I'm using Struts 1.0.2 (but I think it's

RE: [FRIDAY] Tee Time

2002-09-27 Thread Greg.Reddin
(likes the 19th the best) ++1 -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: [FRIDAY] Middle East Policy

2002-09-27 Thread Mazza, Glen R, PERSCOM
I didn't see Mark's need for waxing politically correct on this [FRIDAY] posting, especially for something this benign. A list with over a thousand members will always have someone offended at something or other--or more likely, acting offended, in order to get their kicks at neutering yet

How to Unsubscribe manually???? Automated crap doesn't work....

2002-09-27 Thread cody . burleson
So, my email has changed and the automatic unsubscribve doesn't work for me. I still get the emails from the group, however, because I still have an inbox only pointer to the old email. Long story - please don't make me explain or think that I don't know what I'm talking about. I just need to

Re: [FRIDAY] Tee Time

2002-09-27 Thread John Owen
The 19th is great, but there's no sensation like being out on the links and getting a quick glimpse at the cart cutie stopping by with a beer. - Original Message - From: Galbreath, Mark [EMAIL PROTECTED] To: Struts (E-mail) [EMAIL PROTECTED] Sent: Friday, September 27, 2002 8:39 AM

RE: Declarative exception handling

2002-09-27 Thread Juan Alvarado \(Struts List\)
Charles: Thanks for your help on this. I don't think I made myself clear in terms of what I need. What I need is not only the message I have stored possibly in a resources file, but also the output of say exception.toString() in the message too. As I am seeing it, I can't find a way to do that

Internationalization

2002-09-27 Thread Ryan Cuprak
Hello, To test internationalization on my struts application I tossed a properties file webapp_de.properties into the same directory as my webapp.properties. I know that struts is finding webapp.properties (English/US) as bean:message correctly retrieves the proper labels. If I change the

Re: Internationalization

2002-09-27 Thread David Graham
I had a problem like this and solved it by restarting the server and browser. Struts only checks your browser locale when you first hit the page and then stores it in your session. To speed debugging you could manually set the locale code under the Action.LOCALE_KEY (i think) session

Please help decide a religious discussion

2002-09-27 Thread Stephen . Chambers
All, My team is currently at loggerheads about the correct place to put the database calls that are prepopulating our drop downs. We can not decide if they should be in the ActionForm or in the Action class. We are trying to stick them in the validate method in the ActionForm to make sure they

Re: Please help decide a religious discussion

2002-09-27 Thread David Graham
The Action class...but the action should be asking a helper object for a list of whatever goes in your drop down. It shouldn't know about the database directly. So you might have in your action.execute(): List list = StateHelper.getStateList(); // put list in your form Dave From: [EMAIL

RE: all this traffic

2002-09-27 Thread adam kramer
There's seems to be alot of resistance to any sort of suggestion that might create better documentation and useability of Struts. Rather than telling people they have bad management skills, the obvious thing to do would be to actually listen and try to find solutions. There are lots of messages

Re: Internationalization

2002-09-27 Thread Ryan Cuprak
I haven't tried the Action.LOCALE_KEY yet, but restarting the server and browser as well as dumping the cookies hasn't fixed it. Thanks, -Ryans On Friday, September 27, 2002, at 10:12 AM, David Graham wrote: I had a problem like this and solved it by restarting the server and browser.

Re: Please help decide a religious discussion

2002-09-27 Thread Eddie Bush
+1 David Graham wrote: The Action class...but the action should be asking a helper object for a list of whatever goes in your drop down. It shouldn't know about the database directly. So you might have in your action.execute(): List list = StateHelper.getStateList(); // put list in

Re: How to Unsubscribe manually???? Automated crap doesn't work....

2002-09-27 Thread Eddie Bush
Do you remember the confirmation letter you got when you joined? Do you recall it stating that you could contact [EMAIL PROTECTED] to have things like this handled - and not to post them on the list? :-) [EMAIL PROTECTED] wrote: So, my email has changed and the automatic unsubscribve

Re: Please help decide a religious discussion

2002-09-27 Thread Stephen . Chambers
That is what we are doing now. It goes through a controller to the database, but we are using the validator and when an error occurs, the form does not go to the Action class and the helper methods are not called and as a result, the drop downs are empty. Steve

Re: changing action for a form dynamically

2002-09-27 Thread Eddie Bush
Or use the newly-contributed struts-el taglib. You can get rid of the RTE (what I think Andrew was calling a scriplet) and use an EL-expression to refer to the name of your form once you're using struts-el. -- Eddie Bush -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

ValidatorForm

2002-09-27 Thread Darren Hill
Question. I have a ValidatorForm form that works with a LookupDispatchAction. One of the the actions is 'view'. But this populates the form after validation. The question is ... how can I selectively validate a ValiatorForm ( ie. Don't validate for 'view', 'create', but validate for

RE: Internationalization

2002-09-27 Thread James Mitchell
Not sure why your browser is sending deu in Accept-Language, but you can try this: Change the properties file name to webapp_de.properties Here's some further information: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.10

Re: Internationalization

2002-09-27 Thread David Graham
I've submitted a custom tag to bugzilla that's really helped me test i18n. If you're interested you can find it here: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12648 Dave From: Ryan Cuprak [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users

Re: Struts ActionMapping / OC4J problem

2002-09-27 Thread Eddie Bush
Have you looked at your console/log file yet? You're about the fourth person in two days to ask a similar question. If you have a misconfiguration you will get a stack trace - find it, read it, and if it doesn't make sense to you then ... search the archive (by all means :-) and then post

RE: Internationalization

2002-09-27 Thread James Mitchell
Oops meant to say this: Change the properties file name to webapp_deu.properties ^^^ James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the Open Minded Developer Network http://www.open-tools.org/struts-atlanta -Original

Re: Please help decide a religious discussion

2002-09-27 Thread David Graham
Put the list of objects to go in your select box in the session. Your jsp will use that session attribute to populate the select box, either using a struts tag or anything else. Your ActionForm only needs a String variable to hold the one option the user selected (for multiple selects I

RE: Please help decide a religious discussion

2002-09-27 Thread Andrew Hill
Sounds like you need to define the action and not the jsp as your input in struts-config. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 22:40 To: Struts Users Mailing List Subject: Re: Please help decide a religious discussion

[FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Peter S. Hamlen
Yesterday, I sent an email to a co-worker on a topic, and added at the bottom YMMV without bothering to explain the acronym. This morning (about ten minutes ago), she showed up and asked: What does YMMV mean? You Make Me Vomit? Anyone else have any choice examples of misunderstood acronyms?

Validator never fails on DynaValidatorForm

2002-09-27 Thread John Nicholas
I'm using the DynaForm / Validator stuff for the first time, I've always written out the Forms and Actions before. Everything seems in place but the Validator never catches an error and the submit always succeeds.This is a test where a form submits to testformSubmit which should fail if the

RE: changing action for a form dynamically

2002-09-27 Thread Andrew Hill
I keep seeing references to this struts-el in the list. While Im not using JSPs myself I wouldnt mind taking a look at what features it provides. Where does one get it from? -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 22:42 To: Struts

RE: Please help decide a religious discussion

2002-09-27 Thread Sri Sankaran
Wait a minute. Is this the current setup? Action-A (does stuff, preps form-B for page-B) -- Forward to Page-B -- User does stuff and submits -- Validation of form-B fails -- Page-B re-displayed but with empty selects? Hard to believe!

Re: org.apache.coyote.http11.Http11Processor.process taking a long time

2002-09-27 Thread Eddie Bush
I am unclear on what your question is. ... but I think you're (basically) asking what you need to do in order to use the JSTL. Could I possibly suggest that you: - actually read the information that came with your JSTL distrib (you'll find what you need to do to have the taglib

RE: Please help decide a religious discussion

2002-09-27 Thread Stephen . Chambers
If I do that, will validation always go to the action class, even when it fails? Steve Andrew Hill

Re: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Eddie Bush
LOL - I'm not familiar with that one either ... and what's up with this [sic]/(sic) stuff? Where did that start, and why am I unfamiliar with it - arrgh! Peter S. Hamlen wrote: Yesterday, I sent an email to a co-worker on a topic, and added at the bottom YMMV without bothering to explain the

RE: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Andrew Hill
ummm.. So what does it actually mean? -Original Message- From: Peter S. Hamlen [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 22:51 To: Struts Users Mailing List Subject: [FRIDAY] [OT] Best misunderstanding of an acronym? Yesterday, I sent an email to a co-worker on a

Re: changing action for a form dynamically

2002-09-27 Thread Eddie Bush
It's been added to contrib (but not committed yet that I can tell). You can find it as an attachment to bug ... Well, I'll quote David :-) : The library isn't in the form of a patch, it's an independent library, and the distribution is an attachment on the enhancement request (#12365). You'll

RE: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Kevin A. Smith
I think it stands for Your Mileage May Vary. AFAIK ;) -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 10:56 AM To: Struts Users Mailing List Subject: RE: [FRIDAY] [OT] Best misunderstanding of an acronym? ummm.. So what does it actually

RE: Please help decide a religious discussion

2002-09-27 Thread Stephen . Chambers
No, it is a little different. The user calls Page-A --- form-A is instantiated ---action-A is run and the execute method is called, prepopulating the drop downs -- the user does stuff and submits -- Validation of form-A fails and does not go to Action-A -- Page-A re-displayed, but with

RE: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread James Mitchell
I like the vomit one better ;) James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the Open Minded Developer Network http://www.open-tools.org/struts-atlanta -Original Message- From: Kevin A. Smith [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 11:01 AM

RE: Please help decide a religious discussion

2002-09-27 Thread Andrew Hill
Well if the Action is needed to populate the drop-downs (these values being in request scope I presume?) then after the form is submitted and validation has failed, you will need to reload these values. If you are loading the values in an action you will need to go through that action. (The other

RE: Please help decide a religious discussion

2002-09-27 Thread Trieu, Danny
Drop down list data should be cached, if data is not updated dynamicly. With Struts, if you are using Tiles, you can created a drop down list components get the list data from cache via controller class. -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Friday,

Re: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Daniel Jaffa
a quick search on the web and i found THE ACRONYM DATABASE Search for: YMMV among acronyms YMMV 040: Your Mileage May Vary 040: Your Mileage May Vary (exclusion clause) 2 matching entries Searched 21874 entries http://www.ucc.ie/cgi-bin/acronym?YMMV - Original Message - From: Andrew

RE: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Andrew Hill
Ah! No wonder I didnt recognise it. We use kilometres here. -Original Message- From: Kevin A. Smith [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 23:01 To: Struts Users Mailing List Subject: RE: [FRIDAY] [OT] Best misunderstanding of an acronym? I think it stands for Your

RE: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Miller, Jason
so your mileage varied? hah aha ha ha uh *cough cough* -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 11:06 AM To: Struts Users Mailing List Subject: RE: [FRIDAY] [OT] Best misunderstanding of an acronym? Ah! No wonder I

[FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Kevin A. Smith
The one that always baffles me is TANSTAAFL. A quick Google search reveals There Aint No Such Thing As A Free Lunch. --Kevin -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Internationalization

2002-09-27 Thread Ryan Cuprak
Okay, tried that but it still didn't work. Do I have to add an entry into the web.xml for every language? I also added bean:message key=login.username locale=deu/ but that didn't find it either. -Ryan On Friday, September 27, 2002, at 10:49 AM, James Mitchell wrote: Oops meant to say

Re: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread John Owen
For the longest time I had no idea what TTFN meant. - Original Message - From: Kevin A. Smith [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, September 27, 2002 10:07 AM Subject: [FRIDAY] [OT] Best misunderstanding of an acronym? The one that always

RE: Please help decide a religious discussion

2002-09-27 Thread Andrew Hill
Yes, but what happens if the user 'wanders off' in the meantime (ie: through one of the many navigation links ubiquitious to most sites) and never invokes the save action? (Having raised this point I should point out that I myself abuse the convienience of session context more than I ought too!)

RE: changing action for a form dynamically

2002-09-27 Thread Trieu, Danny
I would rather using Tiles to do the work then javaScript(j/k... JavaScript is evil). You can create a form layout that know how to config its action, and allow different definition using. In your action mapping you can have as many local forward mapping as you can for you action to returns or

RE: Retrieving list of Roles defined in web.xml [Revised]

2002-09-27 Thread Vinh Tran
I suppose you are right this is related to Tomcat. My apologies, I will repost there as well. For the record, I still don't see how you can get Roles from Principal but I will keep looking. Thanks anyway. -Original Message- From: Jacob Hookom [mailto:[EMAIL PROTECTED]] Sent: Friday,

RE: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread James Mitchell
hoo hoo h!! T I double GA RR James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the Open Minded Developer Network http://www.open-tools.org/struts-atlanta -Original Message- From: John Owen [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002

Re: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Dave Derry
YKMV ?? ;-} - Original Message - From: Andrew Hill [EMAIL PROTECTED] Ah! No wonder I didnt recognise it. We use kilometres here. -Original Message- From: Kevin A. Smith [mailto:[EMAIL PROTECTED]] I think it stands for Your Mileage May Vary. AFAIK ;) -- To

RE: Struts ActionMapping / OC4J problem

2002-09-27 Thread Karr, David
-Original Message- From: Thomas Delnoij [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 5:43 AM To: [EMAIL PROTECTED] Subject: Struts ActionMapping / OC4J problem Dear colleagues, I have a problem configuring Struts to run properly with the embedded OC4J app

Re: [FRIDAY] Middle East Policy

2002-09-27 Thread Rick Fincher
I'm a hawk and hard core conservative, but that is still funny! A conservative with a sense of humor, Rick - Original Message - From: Galbreath, Mark [EMAIL PROTECTED] To: Struts (E-mail) [EMAIL PROTECTED] Sent: Thursday, September 26, 2002 7:14 PM Subject: [FRIDAY] Middle East Policy

Re: all this traffic

2002-09-27 Thread Eddie Bush
Don't take this wrong :-) This is open-source. If you find something lacking, you are free to contribute to it's betterment! Bugzilla does not discriminate on any basis, so everyone can submit patches. Also, there's nothing stopping someone who wants to compile messages under some index

RE: Struts ActionMapping / OC4J problem

2002-09-27 Thread Thomas Delnoij
Eddie. This doesn't help me in any way. I did search the archives, and no, nothing special in the logs/console. You could play a helpfull role by sending me the EMails with the similar questions you are talking about. Kind regards Thomas Delnoij Internet Engineer IMN - SSE Baarn Mobile: +31

Re: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Eddie Bush
LOL - settle down there! Now I wish I knew what James looked like -- I have this mental picture of him doing the bouncy, bouncy thing while he says that -- but no real image to animate! James Mitchell wrote: hoo hoo h!! T I double GA RR James Mitchell Software Engineer\Struts

  1   2   3   >