RE: [JavaScript-cool] Struts and Many Buttons on Single page

2002-08-29 Thread Susmita Pati
thats pretty cool I have a suggestion here...In the footer of the mail ( where we have the subscribe and unsubscribe info) why dont we add in very few words ... something abt the tag protocol so that new bees dont have to be reminded by it thanks susmita -Original Message- From: Galbrea

Re: [Proposal] Thread Topic Identification (was [BS] Are we getti ngo ff the topic)

2002-08-29 Thread mailinglist
> Thanks for offering to put this on the description for the mailing list - I > agree that they should be a recommended convention, not a requirement. I > also applaude you for offering to 'stomp' on anyone who takes a newbie to > task for not following the recommendation - after all, we were all

RE: [New Functionality] ApplicationResources.properties to DB?

2002-08-29 Thread Galbreath, Mark
I'm looking at the Struts API for the classes suggested by Craig and Eddie, and then I'll look at the source code to figure out what methods to override or add. Then I will have to come up with a db schema. All these things can be done concurrently and results/ideas posted to here to garner feed

RE: Confirmation prior to post

2002-08-29 Thread Trieu, Danny
Great, Before I found out about iframe I created hidden frame to do the work. danny -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 7:51 PM To: Struts Users Mailing List Subject: RE: Confirmation prior to post I saw an article about do

RE: Confirmation prior to post

2002-08-29 Thread Jacob Hookom
That's probably a better solution for browser compatibility; the only issue is that as you make requests to your "controller" frame, it gets stacked on the user's browser history. With iFrames, you can create the object at runtime and do what you need, then destroy it. | -Original Message---

Re: Struts and Many Buttons on Single page

2002-08-29 Thread JEWeaver
Have been through this one; originally used option 2 (javascript to on button click to change action), but as we use httpunit to acceptance test, which does not support javascript, we migrated to a third option: Have a generic action to route based on button pressed. In the html:

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread Galbreath, Mark
N...I want to pounce on the first one who doesn't conform because it's prima facia evidence the lamer didn't read the FAQs nor the email welcoming to Struts-user. Mark (running away from Craig...) -Original Message- From: Susmita Pati [mailto:[EMAIL PROTECTED]] Sent: Thursday, August

senfing query strings in action forward

2002-08-29 Thread dmitry
I'm trying to figure out how to forward success action to a jsp page with parameters. For example, I have a user.jsp page that shows user information, but it needs to be invoked with user_id parameter like this: user.jsp?user_id=100 When creating a new user, my action does all the db related stu

[BEER] Is it Friday Yet?

2002-08-29 Thread Galbraith, Paul
Just testing... Sorry folks, I just couldn't resist!

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread Jacob Hookom
Are you related to Mark? ;-) | -Original Message- | From: Galbraith, Paul [mailto:[EMAIL PROTECTED]] | Sent: Thursday, August 29, 2002 12:13 PM | To: [EMAIL PROTECTED] | Subject: [BEER] Is it Friday Yet? | | Just testing... | | Sorry folks, I just couldn't resist! | | --- | Incoming ma

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread Galbraith, Paul
Distantly, perhaps. But, please, let's not dwell on anything unpleasant. :-D Paul -Original Message- From: Jacob Hookom [mailto:[EMAIL PROTECTED]] Sent: August 29, 2002 1:15 PM To: 'Struts Users Mailing List' Subject: RE: [BEER] Is it Friday Yet? Are you related to Mark? ;-) | -

Re: [BEER] Is it Friday Yet?

2002-08-29 Thread Eddie Bush
Thank you for asking - I was wondering too, but didn't want to ... offend? ... anyone! Jacob Hookom wrote: >Are you related to Mark? ;-) > >| -Original Message- >| From: Galbraith, Paul [mailto:[EMAIL PROTECTED]] >| Sent: Thursday, August 29, 2002 12:13 PM >| To: [EMAIL PROTECTED] >| Su

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread Susmita Pati
Frankly speaking i didnt..read neither the email welcoming struts nor the FAQs :) -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 1:10 PM To: 'Struts Users Mailing List' Subject: RE: [Tag Protocol] How to let newbies know? N...I w

RE: First time penatly

2002-08-29 Thread Karr, David
> -Original Message- > From: Billy Ng [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 29, 2002 9:40 AM > To: [EMAIL PROTECTED] > Subject: First time penatly > > Hi folks, > > Everytime I start or restart the app, the user will > experience the slowness > becuase the jsp pages have

Re: [Tag Protocol] How to let newbies know?

2002-08-29 Thread Eddie Bush
Galbreath, Mark wrote: >N...I want to pounce on the first one who doesn't conform because it's >prima facia evidence the lamer didn't read the FAQs nor the email welcoming >to Struts-user. > >Mark (running away from Craig...) > ... you are ... encouragable (sp?) LOL >-Original Message--

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread Galbreath, Mark
Hey, we're both Scots/English (the Galbraith/Galbreath clan went native from its English roots in the 13th century by marrying into Clan MacReynolds)! What more commonality do you need other than a fine single malt and a good Scottish ale? BTW: I married a McKechnie of Clan MacReynolds. Incest i

Re: [Tag Protocol] How to let newbies know?

2002-08-29 Thread John Owen
I think you mean incorrigible... ;) - Original Message - From: "Eddie Bush" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, August 29, 2002 12:38 PM Subject: Re: [Tag Protocol] How to let newbies know? > Galbreath, Mark wrote: > > >N...I want t

Re: senfing query strings in action forward

2002-08-29 Thread dmitry
Found the answer: return new ActionForward(mapping.findForward("success").getPath() +"?user_id=" + iserId); Dmitry A. dmitry wrote: > I'm trying to figure out how to forward success action to a jsp page > with parameters. For example, > I have a user.jsp page that shows user information, but

Re: senfing query strings in action forward

2002-08-29 Thread Billy Ng
I don't know if this is the right way to handle this, but it works for me. ActionForward af = mapping.findForward(forward_name); af.setPath(path/user.jsp?user_id=100); return af; Also, I always like to call the Action instead of the calling the jsp file directly. This way, you can do some busi

Re: [Tag Protocol] How to let newbies know?

2002-08-29 Thread Eddie Bush
John Owen wrote: >I think you mean incorrigible... ;) > Yes and thank you! :-) -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread Susmita Pati
I wud say tats cool :) -Original Message- From: John Owen [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 1:45 PM To: Struts Users Mailing List Subject: Re: [Tag Protocol] How to let newbies know? I think you mean incorrigible... ;) - Original Message - From: "Eddie B

RE: senfing query strings in action forward

2002-08-29 Thread Jacob Hookom
If you are riding on true MVC, wouldn't it prudent to have the views just expect things as attributes of the request? It's pretty straight forward to take all parameters and put them as attributes in the request. Then your JSP's are standardized to only be looking for attributes, while the Actio

HTML:image tag question

2002-08-29 Thread Ashish Kulkarni
Hi, How can i have mouse effect in tag, my original tag is given below, what will be the same in struts. I want to get the images path from resource bundle, i have written it a bit like but dont know how to add the mouseover effects my struts tag: original tag: Ashish A$HI$H -

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread Galbraith, Paul
Hey there's a healthy mix of Irish in there, so don't sell yourself short! I think many were forcibly emigrated to Ireland after a few unfortunate misunderstandings with the local law enforcement. Ahhh, familyhey, at least my side can spell! :-p -Original Message- From: Galbreath

Re: Logging in struts-example

2002-08-29 Thread Craig R. McClanahan
You can configure the logging detail level for each named package separately -- the example webapp's components would all be covered by the pattern "org.apache.struts.webapp.example". Check your Log4J configuration to see what debug level would be assgned to package. Craig On Thu, 29 Aug 2002,

Re: senfing query strings in action forward

2002-08-29 Thread dmitry
Unfortunately there are some pages that users must be able to bookmark to. Jacob Hookom wrote: > If you are riding on true MVC, wouldn't it prudent to have the views > just expect things as attributes of the request? > > It's pretty straight forward to take all parameters and put them as > attri

RE: HTML:image tag question

2002-08-29 Thread Jacob Hookom
allows the same parameters to be set. You should read the struts tag documentation. -Jacob | -Original Message- | From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]] | Sent: Thursday, August 29, 2002 10:26 AM | To: Struts Users Mailing List | Subject: HTML:image tag question | | | Hi, |

Re: First time penatly

2002-08-29 Thread Billy Ng
Thanks, Karr! I am using Tomcat. I find the jspc.bat in TOMCAT_HOME/bin directory. Couple more questions, 1) after I pre-compile the jsp files, should I put them in the TOMCAT_HOME/work/ directory or in the TOMCAT_HOME/webapps/myApp/WEB-INF/classes/ directory. 2) should I put the package decl

RE: First time penatly

2002-08-29 Thread Karr, David
> -Original Message- > From: Billy Ng [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 29, 2002 11:20 AM > To: Struts Users Mailing List > Cc: [EMAIL PROTECTED] > Subject: Re: First time penatly > > Thanks, Karr! I am using Tomcat. I find the jspc.bat in > TOMCAT_HOME/bin > director

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread wbchmura
Can we have a [Mark] tag added? -Original Message- From: Galbreath [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 1:44 PM To: struts-user Subject: RE: [BEER] Is it Friday Yet? Hey, we're both Scots/English (the Galbraith/Galbreath clan went native from its English roots in

RE: First time penatly

2002-08-29 Thread Kevin A. Smith
> This has nothing to do with Struts. This is a web container issue. Read > your web container docs. --Kevin -Original Message- From: Billy Ng [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 2:20 PM To: Struts Users Mailing List Cc: [EMAIL PROTECTED] Subject: Re: First tim

dynamic forms and map-backed ActionForm beans

2002-08-29 Thread Donald Ball
Hi guys. I'm back to playing with the map-backed ActionForm beans again. I've got a dynamically created HTML form that I'm trying to make play nicely with a map-backed ActionForm. The ActionForm uses get/setProperty as described by Ted Husted and works nicely. The problem I'm having is accessing p

Re: [Tag Protocol] How to let newbies know?

2002-08-29 Thread Dave Derry
He's also easily encouragable ;-)) - Original Message - From: "John Owen" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, August 29, 2002 1:44 PM Subject: Re: [Tag Protocol] How to let newbies know? > I think you mean incorrigible... ;) >

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread Jeff_Mychasiw
"Can we have a [Mark] tag added?" +1 [EMAIL PROTECTED] on 08/29/2002 01:23:43 PM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To:[EMAIL PROTECTED] cc: Subject:RE: [BEER] Is it Friday Yet? Can we have a [Mark] tag added? -Original Message- From

Re: [BEER] Is it Friday Yet?

2002-08-29 Thread Eddie Bush
That's what the [BEER] tag is for, I think :-P [EMAIL PROTECTED] wrote: >Can we have a [Mark] tag added? > -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Re: Is Struts suitable for Java client?

2002-08-29 Thread Troy Hart
IMHO the value of the struts framework has more to do with providing a set of "actions" that invoke business processes in the request/response (ie servlet) paradigm. One of the cool features that struts provides in this endeavor is an automatic mapping of the request parameters into forms that can

Re: Struts and Many Buttons on Single page

2002-08-29 Thread adam kramer
Ashish, Try checking out husted.com struts tips and catalog: Struts Tip #2 - Use DispatchAction to organize related operations http://husted.com/struts/tips/002.htm Struts Tip #3 - Use LookupDispatchAction for a JavaScript-free dispatch http://husted.com/struts/tips/003.htm and Use multifunctio

RE:[Core] Setup globals per new session

2002-08-29 Thread Mark Kaye
> -Original Message- > From: Trieu, Danny [mailto:[EMAIL PROTECTED]] > > Implement the HttpSessionListener Thanks Danny. I've looked into this and it seems to be exactly what I'm looking for. You're a star. -- To unsubscribe, e-mail: For additional co

RE: Struts and Many Buttons on Single page

2002-08-29 Thread Rajesh Kalluri
Use a LookupDispatch Action, very convenient no java script no logic branching. (For more info look at Ted Husteds struts tips) Have your buttons setup like this... Action looks like this ...you have to map all your buttons to methods in this class and struts takes care of running your

RE: [New Functionality] ApplicationResources.properties to DB?

2002-08-29 Thread James Mitchell
Sorry guys... for not responding earlier. Eddie and I were discussing this very topic a while back and as Craig mentioned, this should be relatively painless given the pluggable architecture. Well, I had a couple ideas for enhancing the usefulness of any particular MessageResources implementatio

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread James Mitchell
funny guys!!! I think that from now on, when I respond to a thread, if it doesn't have some kind of tag description, I will just add it on my email subject line. There's no need to piss off anyone about using tagged subject lines. Eventually, everyone will get the hint, especially when people us

RE: [New Functionality] ApplicationResources.properties to DB?

2002-08-29 Thread Galbreath, Mark
Sure! -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 3:04 PM Also let me know if you want help getting a JDBCMessageResources using OJB rolling. -- To unsubscribe, e-mail: For additional commands, e-mail: <

Re: [New Functionality] ApplicationResources.properties to DB?

2002-08-29 Thread Eddie Bush
James Mitchell wrote: >Sorry guys... for not responding earlier. > Sorry I should have filled you in, James. I forwarded him the relevant part of your discussion. >Also, I'm not sure how many passes I would make over the list, you certainly >wouldn't want a circular reference. > Since we'r

Re: Re: Is Struts suitable for Java client?

2002-08-29 Thread Troy Hart
On Thu, 2002-08-29 at 12:28, Troy Hart wrote: > IMHO the value of the struts framework has more to do with providing a > set of "actions" that invoke business processes in the request/response > (ie servlet) paradigm. To clarify, I DO NOT mean to imply that the business processes know anything a

RE: Struts and Many Buttons on Single page

2002-08-29 Thread JEWeaver
That is a good alternative too. There is not much difference - in one case you inherit from a routing action and have the code to be executed for a given button separated by methods within a single action, in the case I posted you keep sepatate actions for the routing and the targets based on bu

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread Galbreath, Mark
Je pars du bureau tot pour obtenir une biere. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 2:21 PM "Can we have a [Mark] tag added?" +1 -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread Sri Sankaran
I disagree with the need for a tag protocol. The whole point of the subject line is to annotate the message with a concise (summary) description. Now you want to annotate the annotation? Next someone'll ask for a description of the tag Sri -Original Message- From: James Mitch

RE: [New Functionality] ApplicationResources.properties to DB?

2002-08-29 Thread Galbreath, Mark
My idea is to gather the properties into a static java.util.Properties object from a call to a stored procedure and instantiate it in context scope at application startup using the java -d argument to set the environment and filename in the system properties. The properties would then be availabl

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread James Mitchell
Mais vous reviendrez samedi à la finition ce que vous avez négligé. James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the "Open Minded Developer Network" http://www.open-tools.org/struts-atlanta > -Original Message- > From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] >

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread Galbreath, Mark
A DTD? Great idea Mark -Original Message- From: Sri Sankaran [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 3:20 PM Next someone'll ask for a description of the tag Sri -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread Chappell, Simon P
Have you taken time to look at some of the subject lines we get around here? The tags have the potential to help greatly. Simon >-Original Message- >From: Sri Sankaran [mailto:[EMAIL PROTECTED]] >Sent: Thursday, August 29, 2002 2:20 PM >To: Struts Users Mailing List >Subject: RE: [Tag P

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread James Mitchell
Not sure about you, but I can have from 5 to 500 unread emails sitting in my inbox over a weekend. Having [tiles], [security], [validator] or [whatever] would greatly reduce my "scan - read - respond - delete" cycle. You might not like it, but I intend to use it. James "If Sasquatch had the mea

Validating a Range

2002-08-29 Thread David Geary
I'm trying to validate a range using the validator. I've got this in validation.xml... min 5 max

RE: [New Functionality] ApplicationResources.properties to DB?

2002-08-29 Thread James Mitchell
> -Original Message- > From: Eddie Bush [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 29, 2002 3:11 PM > To: Struts Users Mailing List > Subject: Re: [New Functionality] ApplicationResources.properties to DB? > > > James Mitchell wrote: > > >Sorry guys... for not responding earlier.

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread Galbreath, Mark
Mon dieu! J'espère pas! -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 3:28 PM Mais vous reviendrez samedi à la finition ce que vous avez négligé. James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the "Open Minded Deve

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread Sri Sankaran
If the writer cannot summarize in 5-10 words (the subject) we are expecting that (s)he can in 1 or 2 words? Sri -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 3:26 PM To: Struts Users Mailing List Subject: RE: [Tag Protocol] How to

tag question

2002-08-29 Thread Ashish Kulkarni
Hi, How can i handle Mouse Events in tag, ??my preivous tag when not using struts was like this, what would be the equivalant struts tag A$HI$H - Do You Yahoo!? Yahoo! Finance - Get real-time stock quotes

Re: [BEER] Is it Friday Yet?

2002-08-29 Thread David Geary
Je bois beacoup de biere dans mon bureau tous les jour. ;-) david Galbreath, Mark wrote: >Je pars du bureau tot pour obtenir une biere. > >-Original Message- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] >Sent: Thursday, August 29, 2002 2:21 PM > >"Can we have a [Mark] tag added?

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread Desjardins, Nicolas
la liste s'est transformée en liste francophone??? :o) -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 3:34 PM To: 'Struts Users Mailing List' Subject: RE: [BEER] Is it Friday Yet? Mon dieu! J'espère pas! -Original Message- Fr

RE: [BEER ] Is it Friday Yet?

2002-08-29 Thread Tim T. Young
Common guys, keeping up is hard enough without having to babelfish everything! "Galbreath,

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread Sri Sankaran
I'm just trying to pre-empt vague tags like [Struts] or [Help Me] I know -- no one is forcing me to read it Sri P.S. Wouldn't it be more appropriate to have instead of [Tag] :) -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 3:33 PM

RE: Logging in struts-example

2002-08-29 Thread NP-KARRYS MIKE
Craig Thanks for the reply: I have figured out that I can see the MemoryDatabasePlugin.destroy() get executed but not the MemoryDatabasePlugin.init() get executed. In what sequence do plugins get initialized along with the main application. Mike Karrys PRC Public Sector Inc. -Original Mes

BUG REPORT: Multiple Application resources with sub-apps and Validator's use of ApplicationResources

2002-08-29 Thread Greg Hess
Hi All, I have been trying to take advantage of using the sup-apps capabilities of Struts 1.1b1 and have come across some problems. I read a message from Craig that stated if a sub-apps struts-config.xml had to be changed in order to work as a sub-app that would be considered a bug. I have found

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread Jerry Jalenak
We don't expect a summarization of the problem in 1 or 2 words - we simply want a 'tag' to identify the topic. Jerry > -Original Message- > From: Sri Sankaran [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 29, 2002 2:43 PM > To: Struts Users Mailing List > Subject: RE: [Tag Protocol

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread James Mitchell
J'ai peur que ce soit vrai. Le PHBs de l'enfer ruinera toujours votre week-end. James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the "Open Minded Developer Network" http://www.open-tools.org/struts-atlanta > -Original Message- > From: Galbreath, Mark [mailto:[EMAIL P

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread wbchmura
I agree on that one... Worse yet - when I come in after the weekend and have all those e-mails... If I did not have my e-mail client running, my rules will not process all the new ones in my inbox so I have to sort all the lists apart... -Original Message- From: jmitchtx [mailto:[EM

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread Jerry Jalenak
God, let's hope not. :-) > -Original Message- > From: Desjardins, Nicolas [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 29, 2002 2:43 PM > To: 'Struts Users Mailing List' > Subject: RE: [BEER] Is it Friday Yet? > > > la liste s'est transformée en liste francophone??? :o) > >

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread James Mitchell
Je suis jaloux! James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the "Open Minded Developer Network" http://www.open-tools.org/struts-atlanta > -Original Message- > From: David Geary [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 29, 2002 3:46 PM > To: Struts Us

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread wbchmura
I would like to propose adding a [US_en] or suitable tag also :) -Original Message- From: Nicolas.Desjardins [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 3:43 PM To: struts-user Subject: RE: [BEER] Is it Friday Yet? la liste s'est transformée en liste francophone??? :o) -

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread James Mitchell
Non, nous employons le convertisseur anglais-français d'email. C'est une application de contrefiches! James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the "Open Minded Developer Network" http://www.open-tools.org/struts-atlanta > -Original Message- > From: Desjardins

RE: [New Functionality] ApplicationResources.properties to DB?

2002-08-29 Thread Ian Vellosa
But what do you do each time you add a new language, say German? you need to update the database structure adding a new column? Surely any solution should be generic enough not to need that. Unfortunately you would need the table to look something more like: key language value ---

RE: [Tag Protocol] How to let newbies know?

2002-08-29 Thread wbchmura
It does not replace the subject line... just catagorize it... -Original Message- From: Sri.Sankaran [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 3:43 PM To: struts-user Subject: RE: [Tag Protocol] How to let newbies know? If the writer cannot summarize in 5-10 words (the

RE: Struts and Many Buttons on Single page

2002-08-29 Thread Rajesh Kalluri
I would think the two approaches are quite different in the sense that. 1- Forwards to different actions based on the struts-config setup clutter with lot of actions having repetitive code, and struts-config have to define all the actions to forward to 2- Sends to the same action reducing

Re: tag question

2002-08-29 Thread Tim T. Young
Not tested or anything, but from http://jakarta.apache.org/struts/doc-1.0.2/struts-html.html#image ... Ashish Kulkarni

RE: BUG REPORT: Multiple Application resources with sub-apps and Validator's use of ApplicationResources

2002-08-29 Thread James Mitchell
You should log this in Bugzilla. Have you used it before? It's pretty straight forward. Here's the URL: http://nagoya.apache.org/bugzilla/ James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the "Open Minded Developer Network" http://www.open-tools.org/struts-atlanta >

[BEER] beer update

2002-08-29 Thread mailinglist
Chuck, could you update www.beer4all.com with these ones ? http://vanel.free.fr/ "En France, on a pas de bière mais on sait ou les trouver" -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread Robert J. Sanford, Jr.
Ou sont me cles? > -Original Message- > From: James Mitchell [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 29, 2002 2:57 PM > To: Struts Users Mailing List > Subject: RE: [BEER] Is it Friday Yet? > > > Non, nous employons le convertisseur anglais-français d'email. C'est une > applic

Using Struts in Weblogic & Eclipse

2002-08-29 Thread Madhavan Srinivasan
Friends I use weblogic 7.0 and eclipse 2.0. I try to integrate struts sample app with weblogic and eclipse. I installed easie weblogic plugin to eclipse, so I could start weblogic server from eclipse. Now I want to debug the web application of the weblogic server instance thru eclipse IDE. If

[OT] And let that be a lesson to you...

2002-08-29 Thread wbchmura
I think I have seen more off topic and vaguely related e-mail in the past two days on this list than I have since I joined. Ironically it all started with ... you know the rest... WINMAIL.DAT Description: application/vnd.ms-tnef -- To unsubscribe, e-mail:

RE: Logging in struts-example

2002-08-29 Thread Craig R. McClanahan
On Thu, 29 Aug 2002, NP-KARRYS MIKE wrote: > Date: Thu, 29 Aug 2002 15:42:25 -0400 > From: NP-KARRYS MIKE <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: RE: Logging in struts-example > > Craig > > Thanks for the reply: > > I have

RE: [New Functionality] ApplicationResources.properties to DB?

2002-08-29 Thread Craig R. McClanahan
On Thu, 29 Aug 2002, Ian Vellosa wrote: > Date: Thu, 29 Aug 2002 21:54:10 +0200 > From: Ian Vellosa <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Subject: RE: [New Functionality] ApplicationResources.propertie

RE: Struts and Many Buttons on Single page

2002-08-29 Thread JEWeaver
There isn't any more repetitive code with a routing action than the LookupDispatcher approach. For each page that has multiple submit buttons, I will have a routing action defined in the struts config xml that explicitly routes to other actions based on the button name. Since the routing action

RE: [New Functionality] ApplicationResources.properties to DB?

2002-08-29 Thread Jason Rosen
I was actually hoping to have it implemented where the entire store would be able to be updated on-the-fly and not have the application cache it on initialization. I would at least think that the MessageResources or MessageResourceFactory implementation would have a reload() method so the entire

RE: [New Functionality] ApplicationResources.properties to DB?

2002-08-29 Thread James Mitchell
Isn't this all done after the data is loaded? James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the "Open Minded Developer Network" http://www.open-tools.org/struts-atlanta > -Original Message- > From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] > Sent: Thursday, A

Re: [BEER] Is it Friday Yet?

2002-08-29 Thread Mark Nichols
Heureusement je travaille pour le gouvernement, où le travail après 5 et des week-ends même n'a pas été découvert encore. /\/\ark - Original Message - From: "James Mitchell" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, August 29, 2002 2:28 PM Su

RE: [New Functionality] ApplicationResources.properties to DB?

2002-08-29 Thread Craig R. McClanahan
On Thu, 29 Aug 2002, James Mitchell wrote: > Date: Thu, 29 Aug 2002 16:36:30 -0400 > From: James Mitchell <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Subject: RE: [New Functionality] ApplicationResources.pro

RE: [BEER] Is it Friday Yet?

2002-08-29 Thread Emmanuel Boudrant
Oui, ...faudrait peut etre arréter de boire. BTW: Do you the famous beer named Kronenbourg --- "Desjardins, Nicolas" <[EMAIL PROTECTED]> a écrit : > la liste s'est transformée en liste francophone??? :o) > > -Original Message- > From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] > Sent:

logic:iterate question (index available?)

2002-08-29 Thread Mark Silva
hello all, is there any way to get the current loop number (or index) of a an iterate tag? i have the following code: do i need to use another tag library for this? or should i resort to a scriplet setting a variable and incrementing it... (please dont make me do that!) thanks, mark -

RE: [New Functionality] ApplicationResources.properties to DB?

2002-08-29 Thread Jason Rosen
The Locale inheritance functionality Craig is referring to is implemented in PropertyMessageResources.getMessage(Locale locale, String key). If all MessageResource implementations are expected to use this logic for finding keys by Locale, maybe it should be documented in the MessageResources abst

RE: logic:iterate question (index available?)

2002-08-29 Thread Karr, David
> -Original Message- > From: Mark Silva [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 29, 2002 2:46 PM > To: [EMAIL PROTECTED] > Subject: logic:iterate question (index available?) > > hello all, > > is there any way to get the current loop number (or index) of > a an iterate tag?

[OT ARTICLE] JavaServer Faces on theserverside

2002-08-29 Thread Emmanuel Boudrant
Just released on theserverside, an interview from Amy Fowler, JavaServer Faces Spec Lead. http://www.theserverside.com/home/thread.jsp?thread_id=15227 ___ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http

tabindex not working ?

2002-08-29 Thread Edwin van Nuil
I'm using struts version 1.1b2 and I'm using tabindex with my formfields and this is working. But when I use tabindex with it's not. Example: Jsp : Inloggen Html (view source) : Inloggen With it's working good. Regards, Edwin -- To unsubscribe, e-mail: For addi

Re: [OT ARTICLE] JavaServer Faces on theserverside

2002-08-29 Thread Emmanuel Boudrant
I just check the JavaServer Faces web site and I nitice that the specs and a tutorial are available ! Since how long these document are available ? http://java.sun.com/j2ee/javaserverfaces/download.html -Emmanuel --- Emmanuel Boudrant <[EMAIL PROTECTED]> a écrit : > Just released on theserv

Struts and forward to non-html content

2002-08-29 Thread Vinit Carpenter
Hi there. I have a question about Struts and forwarding to non-html content such as servlets, JSP's and HTML pages. In a project that I am currently working on I am using Struts (1.0.2) under WebLogic 6.1 SP3 with VXML (Voice XML) and JSP's. I've noticed that I can't forward to a VXML file with

Re: Struts and forward to non-html content

2002-08-29 Thread Emmanuel Boudrant
I think, If you wan't to forward to a non jsp-servlet-action, you need to use a redirection with setting the attribute redirect=true: -Emmanuel --- Vinit Carpenter <[EMAIL PROTECTED]> a écrit : > Hi there. I have a question about Struts and forwarding to non-html content > such as servlets

RE: Logging in struts-example

2002-08-29 Thread NP-KARRYS MIKE
Well I removed all the other webapps in the jetty.xml and now the MemoryDatabasePlugin.init() routine shows up in the log file. I removed the expanded webapps struts-blank, struts-documentation, tiles-documentation, and tiles-tutorial (which I created) Maybe someday I will figure out why this is

RE: Struts and forward to non-html content

2002-08-29 Thread Vinit Carpenter
Hi Emmanuel and thank you. Does that mean that Struts CANNOT forward to a non jsp-servlet-action without having to redirect and cause a round-trip? Thanks -Original Message- From: Emmanuel Boudrant [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 5:12 PM To: Struts Users Mailin

Re:[LOL][BEER] Is it Friday Yet?

2002-08-29 Thread micael
lol At 12:34 PM 8/29/2002 -0500, you wrote: >Thank you for asking - I was wondering too, but didn't want to ... offend? >... anyone! > >Jacob Hookom wrote: > >>Are you related to Mark? ;-) >> >>| -Original Message- >>| From: Galbraith, Paul [mailto:[EMAIL PROTECTED]] >>| Sent: Thursday,

Help me shake the cobwebs out...

2002-08-29 Thread Craig Tataryn
Alrighty, really have been out of the loop for the last year w.r.t Struts, last time I used it was pre-1.0. However, I will be using it on a project shortly and I have been brushing up. Can you help me with this query? I have set a simple demo where I have made a loginUser Action, who's inpu

Re: [OT ARTICLE] JavaServer Faces on theserverside

2002-08-29 Thread Craig R. McClanahan
On Fri, 30 Aug 2002, Emmanuel Boudrant wrote: > Date: Fri, 30 Aug 2002 00:02:26 +0200 (CEST) > From: Emmanuel Boudrant <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Subject: [OT ARTICLE] JavaServer Faces on th

<    1   2   3   >