Re: Is Struts suitable for Java client?

2002-08-29 Thread thart
I'm not sure the answer is no. Struts is not tied to forwarding to a jsp, or any other type of resource for that matter. In fact you can simply return null from an action and have the action generate the response itself. You may need to think about your problem a little differently (???), but

Re: confusion about view part!!!

2002-08-29 Thread Billy Ng
I am working on very large scale b2b portal containing Jsp pages which usus javascripts and style sheets in bulk. So, I am confused that view pages should be made directly using struts tag or it should be easy to make in html and then convert into struts. I am confused too. Since you have

Re: Re: Is Struts suitable for Java client?

2002-08-29 Thread Tom Klaasen
Makes you wonder what the advantage of using struts might be then. Struts is a framework for mapping html form fields to bean properties (yeah, I know, there's a lot of other stuff in it, but if this wasn't in there, nobody would be using struts). Hey, I found a nice hammer, let's slice this

RE: Struts Presentation at AJUG

2002-08-29 Thread René Eigenheer
Great presentation Thanks a lot ...and yes...I've ordered your book a while ago;-))) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Donnerstag, 29. August 2002 03:07 To: [EMAIL PROTECTED] Subject: Struts Presentation at AJUG For anyone that is

Re: confusion about view part!!!

2002-08-29 Thread John Yu
Hi Amit, Converting static html pages into struts pages is a pretty common routine in medium/large projects, in which programmers get the mock-up pages from graphical designers. Using javascript and stylesheet shouldn't add any complication to the conversion process. One thing to watch out

RE: java.lang.IllegalStateException: Already called getOutputStream()FINAL

2002-08-29 Thread Miguel Angel Mulero Martinez
It's really strange. I've found the problem. If the redirect page is a JSP or Servlet (Action included) the tag works well, but if the redirect page is a HTML, then I've the problem described here. Someone know the reason? I will change any html to jsp, but I'm interested in the cause of the

html:image Problem

2002-08-29 Thread BAYSSE Vincent (EURIWARE)
I want to use a rollover action on a submit image button The first example works fine with HTML attributes. But the second one doesn't work with Struts tags. Any idea ? Thanks. First example: A onmouseover=MM_swapImage('accueil_over','','/siquael/images/eqfccpressed.gi f',1)

Re: Re[2]: Composite jsp files

2002-08-29 Thread Leonard Wolters
Thanks man, this was exactly the info i needed. Going to check it right away... As you probably could guessed, struts is still a little bit new to me ! Anyway, thanks man Cheers, Leonard - Original Message - From: Dariusz Wojtas [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL

RE: html:image Problem

2002-08-29 Thread Miguel Angel Mulero Martinez
Try to see the source generated by struts in the second example. -Mensaje original- De: BAYSSE Vincent (EURIWARE) [mailto:[EMAIL PROTECTED]] Enviado el: jueves, 29 de agosto de 2002 10:42 Para: 'Struts Users Mailing List' Asunto: html:image Problem I want to use a rollover action on a

RE: html:image Problem

2002-08-29 Thread BAYSSE Vincent (EURIWARE)
Here it is. But doesn't work (the second one) and i want to use it as a submit button ! A onmouseover=MM_swapImage('accueil_over','','/siquael/images/eqfccpressed.gi f',1) onmouseout=MM_swapImgRestore() href=http://c20285/acas/vacances/control/accueil; IMG src=/siquael/images/eqfcc.gif

RE: Hashmap and logic:equal

2002-08-29 Thread Darryl Nortje
I see what you're saying... I don't know why it doesn't work. What I would try then is to set the Hashmap in the form and retrieve it off the form object. Tell me, if item1 = Y do you want to show nothing, and can item2 be equal to x -Original Message- From: [EMAIL PROTECTED]

[groupware] Good project management tools

2002-08-29 Thread David Mulligan
Anyone know of good (free) groupware webDAV software? Something like (or better then) Savannah PHProjekt SourceForge BitKeeper It doesn't have to be Java (But that would be a plus). I need something to keep track of different projects, build version that are deployed to client, bug

when the validate retrun null,then the excute in action will not call?

2002-08-29 Thread wu qihua
when the field is wqh ,there isn't any message print in the console,but if the field is wqh,then it will print begin to process not equal and if the excute run ,print the sentence begin to process is a must,but really it did not,that means the function of excute never

RE: How to retrieve value from actionservlet?

2002-08-29 Thread Darryl Nortje
yes you can. Let's say your user object, is you form class. or similar bean... it has in particular a getFullname() method. You store this user bean on the request or session as userstuff. Then when you want to write out the username on a jsp page all you do is this -- bean:write

Re: Re[2]: Composite jsp files

2002-08-29 Thread Leonard Wolters
Dariusz, Someway, somehow, I get an error message from struts or tomcat saying: MAPPING configuration error for request URI In my jsp i have: img src='/myImgServlet?imgId=%= imgId %' And my web.xml has the following mappings / declarations: !-- Display Photo Servlet -- servlet

RE: when the validate retrun null,then the excute in action will not call?

2002-08-29 Thread Fabian Sommer
I think the behaviour is exactly as expected: If the field is wqh, then procedure validate returns a not empty ActionError and therefore you get redirected to the page specified by input within your action-mapping (normally the same page from where you submit your form). If the field is wqh the

RE: struts-config windows 2 unix?

2002-08-29 Thread Umberto Nicoletti
/usr/bin/awk '{gsub(/\r/,); print $0; }' $0 will dump the file without ^M on stdout. Just pipe it to a file. HTH, umberto On Wed, 2002-08-28 at 22:51, Tero P Paananen wrote: To convert a windows file into a unix format you can use the dos2unix command under unix. It will get rid of all

Re: Tiles, overriding extended definitions and Breadcrumbing

2002-08-29 Thread Cedric Dumoulin
The override mechanism only override attributes from the extended definition. In your example, you insert a tiles and want some of its attributes be overriden by attributes from its insertor which is not working. Cedric Mark Takacs wrote: Summary: Can a page override a

Re: tons of tiles debug messages!

2002-08-29 Thread Cedric Dumoulin
I have put it to false in latest builds. I use such flags for testing and development. They should normally be set to false in struts sources. Cedric Holman, Cal wrote: Cedric There is a debug flag set to true in the TilesRequestProcessor. Can you make it configurable? Do I open a

RE: Cannot Retrieve Mapping for Action

2002-08-29 Thread Todd G. Nist
Chandra, Remove the .do from you action attribute in the form definition: %@ taglib uri=/WEB-INF/struts-html.tld prefix=html % html:html head /head body html:form method=post action=/logon . . . HTH. Regards, Todd -Original Message- From: Chandrasekar [mailto:[EMAIL PROTECTED]]

RE: Message Resource Properties file not loading.

2002-08-29 Thread Galbreath, Mark
The parameter must be the full package name of the file. Mark -Original Message- From: Struts Rodolphe [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 5:42 PM To: [EMAIL PROTECTED] Subject: Message Resource Properties file not loading. Can anyone tell me what I am

Re: Tiles Definition Bug ?

2002-08-29 Thread Cedric Dumoulin
Hello, Maybe its a bug. Do you have a simple war file allowing me to reproduce the problem and track it ? You can sent it to me directly rather than on the list. Cedric Ricardo de Souza Moura wrote: I have a action that use validation And at the input attribute I need to put

Re: Tiles and Frames.

2002-08-29 Thread Cedric Dumoulin
It is possible. The Tiles example war has a simple example of using frames (tutorial/frameset.jsp, tutorial/basicFramesetPage.jsp, ...) Hope this help, Cedric Cristian Cardenas wrote: I'm using tiles from struts. I'd like to know if it's possible to use Frames with Tiles, and

Re: How to access current Tiles definition name?

2002-08-29 Thread Cedric Dumoulin
Hi, There is no way to retrieve the current definition name. The actual solution is to add an attribute identifying the definition. Hope this help, Cedric Christian Oldiges wrote: Hi! Is it possible to retrieve the tiles definition name within a JSP that is part of the

Client Side Caching

2002-08-29 Thread mhanel
Is there a possibility to use Client Side Caching? For example to Save a picture and reload it from the browsers cache, when nothing has changed. or A Page which contains contents from a Database and when nothing has changed on the DB reload the old page from the cache. Thanks Matthias

Re: Sub-apps using Tiles/SecureRequestProcessor

2002-08-29 Thread Cedric Dumoulin
Hi, Tiles doesn't require that all your subapps use them. But, you need to use the TilesRequestProcessor, or a subclass of it, for each subapps using tiles. The TilesRequestProcessor is set by the tiles plug-in. So, if you want to use tiles and SecureRequestProcessor in the same subapps,

RE: when the validate retrun null,then the excute in action will not call?

2002-08-29 Thread wu qihua
The execute-method is entered and the result is a system-output: begin to process as the execute is started. The field is still not equal to wqh (it would have been invalidate otherwise!), so next output is not equal. So of course the execute is called! Where is your problem with this

RE: Struts Presentation at AJUG

2002-08-29 Thread Galbreath, Mark
Thanks, Chuck! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 9:07 PM To: [EMAIL PROTECTED] Subject: Struts Presentation at AJUG For anyone that is interested, the presentation and demo Struts application that I gave at the

RE: when the validate retrun null,then the excute in action will not call?

2002-08-29 Thread wu qihua
The execute-method is entered and the result is a system-output: begin to process as the execute is started. The field is still not equal to wqh (it would have been invalidate otherwise!), so next output is not equal. So of course the execute is called! Where is your problem with this

Re: Try to load Tiles factory

2002-08-29 Thread Cedric Dumoulin
Hi, Do you try to use namespace in you tiles config file ? Check it to see if there is no namespace use. Cedric Xinhong Luo, NY wrote: Hi, I tried to run the tomcat with tile example tiles-blank.war from tile.zip download and got the following error: Start Tiles initialization

RE: [Newbie] Where to put Model Access whenever Action class is not an option?

2002-08-29 Thread Robert Taylor
A general strategy would be to have a set up action which populates your form or retrieves data and places it in the appropriate scope and then forwards to the page. For example: If I want to display a page which allows a user to edit their account, I would have a showEdit action to prepare the

RE: Struts Presentation at AJUG

2002-08-29 Thread Galbreath, Mark
Hey Chuck - Love page 8 of your presentation! Wish I had been there. Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 9:07 PM To: [EMAIL PROTECTED] Subject: Struts Presentation at AJUG For anyone that is interested, the

RE: [Newbie] Where to put Model Access whenever Action class is not an option?

2002-08-29 Thread Andrew Hill
I tend to make use of the dispatch action so that I can bundle the pre and post action code in the same class. (Along with some other associated code). This is useful in that both often need to make use of the same methods, and it helps me keep my code organised (by reducing the number of classes

Re: Mapping troubles with a dynamically generated template include

2002-08-29 Thread Cedric Dumoulin
Hi, Check Tiles. They are compatible with templates, and accept an action has content. Also, you can associate a controller to a tile. This controller will populate your tile. Hope this help, Cedric Chip Paul wrote: My site features a news sidebar that is present on every

Re: template:insert to an Action

2002-08-29 Thread Cedric Dumoulin
Use Tiles instead of Templates. Cedric Miguel Angel Mulero Martinez wrote: If I put in a JSP the tag: template:insert template=page.jsp/ the thing works perfectly, but if I do: template:insert template=action.do/ the thing don't work. Is there a similar way to do this?

Re: Tiles Struts Form

2002-08-29 Thread Cedric Dumoulin
You can declare an attribute action=anAction and try something like the following in you jsp: tiles:useAttribute name=action/ html:form action=%=action% ... / Hope this help, Cedric Elderclei R Reami wrote: Hi again, SecurityFilter is going pretty well, Max. Thank you for the

RE: Client Side Caching

2002-08-29 Thread Galbraith, Paul
As far as I know, you (as a person writing server code) have no control over this. The best you can hope for is that the browser is smart enough to cache the image. One thing I can think of, though, is to make sure that the browser believes that the images are static. Make sure that

RE: Struts Presentation at AJUG

2002-08-29 Thread Emmanuel Boudrant
Hi, Really cool presentation ! Just two question, How time take this presentation at AJUG ? And when www.beer4all.com will be open ? Thanx a lot, -Emmanuel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 9:07 PM To: [EMAIL

RE: Struts Presentation at AJUG

2002-08-29 Thread chuckcavaness
The length of the presentation at AJUG was a little over two hours. It should have lasted longer, but I had to spend up at the end because I realized how long I had been going. It was a fun presentation, I tried to keep it light and humorous. Marc Fleury actually interrupted me half way

RE: Struts Presentation at AJUG

2002-08-29 Thread chuckcavaness
I was thinking of your beer stories as I was putting it together :) Chuck Hey Chuck - Love page 8 of your presentation! Wish I had been there. Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 9:07 PM To: [EMAIL

[Proposal] Thread Topic Identification (was [BS] Are we gettingo ff the topic)

2002-08-29 Thread Jerry Jalenak
comment Still chuckling about the Veggie Tales thread from yesterday. Thanks to everyone for lightening up the afternoon! /comment James Mitchell had a suggestion yesterday about using a [topic] prefix in the subject line that can be used to filter threads. I know that I would use

Re: Memory Leak[OT]

2002-08-29 Thread Michael Lee
No problem. I have no problem with some OT posts as long as someone thinks it may be struts(like this memory leak). As soon as they find out it's not, they should redirect appropriately. I asked a security question here a week ago or so that I thought was related to struts but wasn't. A very nice

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

2002-08-29 Thread Michael Lee
I think a filter is good...the best filter being [OT] My 5 c add... [APPSVR-WLS] [APPSVR-JBOSS] [WEBSVR-TOMCAT] [WEBSVR-JRUN] etc... Michael Lee - Original Message - From: Jerry Jalenak [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 29, 2002 9:28 AM Subject: [Proposal]

RE: [Proposal] Thread Topic Identification (was [BS] Are we getting o ff the topic)

2002-08-29 Thread Galbreath, Mark
While Tomcat and JRun include a webserver to run in stand-alone mode, they are not webservers; they are app servers as well. I like your idea, though. Mark -Original Message- From: Michael Lee [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 9:40 AM To: Struts Users Mailing

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

2002-08-29 Thread Mark Nichols
+1 /\/\ark - Original Message - From: Jerry Jalenak [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 29, 2002 8:28 AM Subject: [Proposal] Thread Topic Identification (was [BS] Are we gettingo ff the topic) comment Still chuckling about the Veggie Tales thread from

RE: Client Side Caching

2002-08-29 Thread Lisa van Gelder
You could look at using a tablib like OSCache: http://www.opensymphony.com/oscache/ You can cache a whole page or just a part of a page by putting the taglib round the part of the page you want to cache. Works for images and dynamic content. Lisa -Original Message- From: [EMAIL

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

2002-08-29 Thread Cliff Rowley
It's a good idea, but in practice I think it's going to be a hassle, especially if this list grows. Those who are filtering will have to go through the rigmarole of setting them up again should they have to reinstall their client. And new users will also have to start filtering, and I can

RE: Client Side Caching

2002-08-29 Thread Lisa van Gelder
Oops - I just actually read the question. :) OSCache won't do client side caching, but it will stop you actually reloading stuff from the db to serve to people if it hasn't changed. Lisa -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 29 August 2002 12:21

Re: [Proposal] Thread Topic Identification (was [BS] Are we gettingo ff thetopic)

2002-08-29 Thread Tim T. Young
My fear with another list is that good information will be available in both, and I will have to process 300+ emails a day (2 lists x 150 a list). Tim

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

2002-08-29 Thread Cliff Rowley
I guess the question is, filter one list or two. Is the volume of two separate lists going to be more than the same information in one list? On Thu, 2002-08-29 at 15:04, Tim T. Young wrote: My fear with another list is that good information will be available in both, and I will have to

Where is the Tiles Tutorial

2002-08-29 Thread Michael
In the Struts 1.1b2 distribution, the Tiles tutorial is missing. I submitted a bug to Bugzilla, but I'm still stuck trying to learn Tiles. There is no tutorial or User Guide. I found an old tutorial with Google, but it's dated 9 Sep 2001. Is there a current tutorial or user guide I can use??

RE: Client Side Caching

2002-08-29 Thread Galbraith, Paul
Lisa, I've only glanced at OSCache, but this would be server-side caching, no? -Original Message- From: Lisa van Gelder [mailto:[EMAIL PROTECTED]] Sent: August 29, 2002 9:50 AM To: 'Struts Users Mailing List' Subject: RE: Client Side Caching You could look at using a tablib like

RE: Client Side Caching

2002-08-29 Thread Galbraith, Paul
Dittooops! Sorry :-) -Original Message- From: Lisa van Gelder [mailto:[EMAIL PROTECTED]] Sent: August 29, 2002 9:56 AM To: 'Struts Users Mailing List' Subject: RE: Client Side Caching Oops - I just actually read the question. :) OSCache won't do client side caching, but it will

RE: [Proposal] Thread Topic Identification (was [BS] Are we gettingo ff the topic)

2002-08-29 Thread Kidd, Polly
bound to be... if someone isn't sure which category their problem falls into, they will probably mail to both... -Original Message- From: Cliff Rowley [mailto:[EMAIL PROTECTED]] Sent: 29 August 2002 15:08 To: Struts Users Mailing List Subject: Re: [Proposal] Thread Topic Identification

RE: [Proposal] Thread Topic Identification (was [BS] Are we gettingo ff the topic)

2002-08-29 Thread Cliff Rowley
True, I hadn't though of that. On Thu, 2002-08-29 at 15:10, Kidd, Polly wrote: bound to be... if someone isn't sure which category their problem falls into, they will probably mail to both... -Original Message- From: Cliff Rowley [mailto:[EMAIL PROTECTED]] Sent: 29 August 2002

RE: Where is the Tiles Tutorial

2002-08-29 Thread Kamal . K . Kang
I read about tiles from Struts book on ServerSide, http://www.serverside.com/. It is chapter 14th. kamal -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 10:09 AM To: [EMAIL PROTECTED] Subject: Where is the Tiles Tutorial In the

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

2002-08-29 Thread Eddie Bush
Are filters really _that_ hard to set up? ... I've got probably 30 of them going to sift and sort my mail -- continually having to edit them as projects evolve (ie there is tomcat5 stuff floating around now, and I had to edit my tc-dev filter). I don't see it as much of a problem -- and most

Re: Where is the Tiles Tutorial

2002-08-29 Thread Eddie Bush
And don't forget you can order it now too! [EMAIL PROTECTED] wrote: I read about tiles from Struts book on ServerSide, http://www.serverside.com/. It is chapter 14th. kamal -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 10:09 AM

ApplicationResources.properties to DB?

2002-08-29 Thread Galbreath, Mark
Has anybody given any thought to (much less actually done it) placing properties files into the database and having the app server load/methods call a persistent bean containing the keys/values? We are developing for different clients using basically the same framework and I am thinking that

Question About Multiple Struts-Config Files In 1.1 (B2)

2002-08-29 Thread Hohlen, John
I'm trying split our large web application into several sub-applications using the multiple struts-config files functionality added in 1.1 (beta 2) . There is no documentation on how to do this on the Jakarta Struts 1.1 website. It's simply says To Do. Therefore, I've basically followed

Re: ApplicationResources.properties to DB?

2002-08-29 Thread Eddie Bush
James and I bandied about this topic some time ago (I think you were either out-of-country or on vacation) in response to someone else wanting to do exactly the same thing. I think the suggestion Craig put forth was to extend MessageResources (ie build JDBCMessageResources). Oh, and, if you

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

2002-08-29 Thread vellosa
Afternoon chaps! My problem with starting these [topic] subject headers for our emails is that every time a new person posts to the list you'll be going through the same hell telling them how to format their headers correctly, (as well as how to search the archive, how to phrase questions . .

AW: ApplicationResources.properties to DB?

2002-08-29 Thread Juraj Lenharcik
Hi, is this feature provided for the next releases? I mean this feature should be supported. There should be at least connectors for databases and xml-application ressources (like in ant, the xml property files). Juraj -Ursprüngliche Nachricht- Von: Tero P Paananen [mailto:[EMAIL

Re: AW: ApplicationResources.properties to DB?

2002-08-29 Thread Eddie Bush
I was seriously lookint at doing JDBCMessageResources back when we talked about it. Unfortunately, my time constraints don't give me much mobility right now ... Feel free to build it and contribute it! As I said to Mark, talk to James Mitchell before you get along too far in building it -

Setup globals per new session

2002-08-29 Thread Mark Kaye
Hi, Please bear with me, I'm a Struts newbie :) I need to be able to detect and store some data based upon the request.getServerName() method result. i.e. When a user connects to my application (which will be listening on several different hostnames) I need to detect which host they are

RE: ApplicationResources.properties to DB?

2002-08-29 Thread Galbreath, Mark
Outstanding...thanx! -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 10:46 AM To: Struts Users Mailing List Subject: Re: ApplicationResources.properties to DB? James and I bandied about this topic some time ago (I think you were either

RE: Setup globals per new session

2002-08-29 Thread Stephen . Thompson
Hello, You could have an index page that automatically redirects to a struts action. This action could retrieve the information you require and then decide which way to direct the user. Regards. Stephen. -Original Message- From: Mark Kaye [mailto:[EMAIL PROTECTED]] Sent: 29 August

RE: AW: ApplicationResources.properties to DB?

2002-08-29 Thread Galbreath, Mark
Well, I'm gonna try it...James? Your thoughts? -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 10:54 AM To: Struts Users Mailing List Subject: Re: AW: ApplicationResources.properties to DB? I was seriously lookint at doing

RE: [Newbie] Where to put Model Access whenever Action class is not an option?

2002-08-29 Thread Karr, David
-Original Message- From: Rademacher Tobias [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 10:15 PM To: '[EMAIL PROTECTED]' Subject: [Newbie] Where to put Model Access whenever Action class is not an option? Hi Folks, first of all I'm a newbie to Struts. As far

RE: Setup globals per new session

2002-08-29 Thread Mark Kaye
-Original Message- From: [EMAIL PROTECTED] You could have an index page that automatically redirects to a struts action. This action could retrieve the information you require and then decide which way to direct the user. I had thought of this option. But that wouldn't work if

RE: AW: ApplicationResources.properties to DB?

2002-08-29 Thread Craig R. McClanahan
On Thu, 29 Aug 2002, Galbreath, Mark wrote: Date: Thu, 29 Aug 2002 11:01:29 -0400 From: Galbreath, Mark [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: AW: ApplicationResources.properties to DB? Well,

RE: AW: ApplicationResources.properties to DB?

2002-08-29 Thread Mark Kaye
-Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] If you (or anyone else) actually builds one of these things, I'll happily post it into the contrib area so that it gets included in the source distribution That would be great. I was thinking that this

Re: [Proposal] Thread Topic Identification (was [BS] Are we getting off the topic)

2002-08-29 Thread Eddie Bush
Maybe we could sweet-talk Craig into getting something put on the site about using them? I don't know if he'd be willing/able to permit it (or get it permitted), but we could ... do something like has been done with the commons, at least. There is a little blurb up listed with their list

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

2002-08-29 Thread wbchmura
I would agree with putting the tags on. I don't think there needs to be an official list of tags, just having them there will be easy enough. Hopefully, if everyone starts doing it, new people would notice that every time there is a question of something about tiles (for example) it seems

RE: [Proposal] Thread Topic Identification (was [BS] Are we getting o ff the topic)

2002-08-29 Thread wbchmura
Even if they come close like: [tiles] [tiles problem] [tiles help] They would still be useful and sortable and to a degree filterable . -Original Message- From: ekbush [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 11:14 AM To: struts-user Subject: Re: [Proposal] Thread

RE: Setup globals per new session

2002-08-29 Thread Stephen . Thompson
I would possible embed a flag in the session and have each action check for it's existence. if it doesn't exist, redirect them to the index page. I always have an action before I go into a page and one to exit a page. Regards, Stephen. -Original Message- From: Mark Kaye

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

2002-08-29 Thread Michael Delamere
wouldn´t it be nice if there was a convention of how filtering rules have to look like? That way one could just import them in to any mail program *sigh* . Regards, Michael - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 29, 2002 5:32 PM

RE: [Proposal] Thread Topic Identification (was [BS] Are we getting o ff the topic)

2002-08-29 Thread wbchmura
Heck I would just be happy if Outlook rules worked consistently and applied to server store... -Original Message- From: home [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 11:47 AM To: struts-user Subject: Re: [Proposal] Thread Topic Identification (was [BS] Are we getting

Re: AW: ApplicationResources.properties to DB?

2002-08-29 Thread Eddie Bush
Mark Kaye wrote: -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] If you (or anyone else) actually builds one of these things, I'll happily post it into the contrib area so that it gets included in the source distribution That would be great. I was

RE: [Proposal] Thread Topic Identification (was [BS] Are we getting o ff the topic)

2002-08-29 Thread Galbraith, Paul
I agree, I just can't see tagging like this ever working all that well. If there is an easily identifiable (esp. to non-Struts gurus) topic that seems to generate a fair amount of traffic, then I think a separate mailing list is a better idea. Tiles is a good example, I think. Paul

RE: Struts Presentation at AJUG

2002-08-29 Thread James Mitchell
Hey Chuck, if you want to point that domain to my server, I'll gladly setup the beer4all app and host it for you using MySQL, SQL Server, or Oracle. Sorry, can't help with VC. James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the Open Minded Developer Network

Re: [Proposal] Thread Topic Identification (was [BS] Are we getting off the topic)

2002-08-29 Thread Eddie Bush
It really *can* work quite well. You must not be subscribed to commons-dev, or you'd know how well it can (and does!) work. Galbraith, Paul wrote: I agree, I just can't see tagging like this ever working all that well. If there is an easily identifiable (esp. to non-Struts gurus) topic that

RE: Setup globals per new session

2002-08-29 Thread Trieu, Danny
Implement the HttpSessionListener -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 7:56 AM To: [EMAIL PROTECTED] Subject: RE: Setup globals per new session Hello, You could have an index page that automatically redirects to a

Struts and Many Buttons on Single page

2002-08-29 Thread Ashish Kulkarni
Hi, I am developing a struts applicatian, I have a jsp page where i have 5 buttons, say Add, Change,Delete, Display. When i click these buttons they must call different jsp with different parameters, how can i do it??? Ashish A$HI$H - Do You Yahoo!?

RE: AW: ApplicationResources.properties to DB?

2002-08-29 Thread Craig R. McClanahan
On Thu, 29 Aug 2002, Mark Kaye wrote: Date: Thu, 29 Aug 2002 16:09:24 +0100 From: Mark Kaye [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: RE: AW: ApplicationResources.properties to DB? -Original

RE: [Proposal] Thread Topic Identification (was [BS] Are we gettingo ff the topic)

2002-08-29 Thread Craig R. McClanahan
On Thu, 29 Aug 2002 [EMAIL PROTECTED] wrote: Date: Thu, 29 Aug 2002 11:25:01 -0400 From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: [Proposal] Thread Topic Identification (was [BS] Are we getti ngo ff the topic) I

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

2002-08-29 Thread Eddie Bush
Craig R. McClanahan wrote: I will put them on the description of the STRUTS-USER mailing list, but only as a recommended convention -- not as a requirement. Personally, I leave my mail reader in sort-by-thread mode with a different folder per subscribed list -- and the first menu option I

RE: [Proposal] Thread Topic Identification (was [BS] Are wegetti ngo ff the topic)

2002-08-29 Thread Jerry Jalenak
Craig, 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

Logging in struts-example

2002-08-29 Thread NP-KARRYS MIKE
I have managed to get the Log4j package logging to a log file, when Jetty starts, for the struts-example application. I expected to see the log messages from the log.info() entries in the MemoryDatabasePlugin class but they do not show up in the log files. Are there additional configurations to

Re: Struts and Many Buttons on Single page

2002-08-29 Thread Renato Aganippe
Hi, I see two solution for this. 1) For each button, you can define a different form with a different action attribute 2) You can use a javascript function to change the action attribute Ex: script language=JavaScript function doSubmit(val) { if (val==1) {

RE: AW: ApplicationResources.properties to DB?

2002-08-29 Thread Galbreath, Mark
Well, I've convinced the team to let me give it a shot, so I'll let you know; It should only take a couple of days, since I can devote all my attention to it (well, all that's not spent on [OT] threads here!). Mark -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]]

First time penatly

2002-08-29 Thread Billy Ng
Hi folks, Everytime I start or restart the app, the user will experience the slowness becuase the jsp pages have to be compiled. Long time ago, I read a book saying there is a way to pre-compile the jsp files to avoid this first time penatly, but I can't make it work. Would anybody tell me

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

2002-08-29 Thread Galbreath, Mark
Just testing the tag protocol :-) -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 10:32 AM To: Struts Users Mailing List Subject: Struts and Many Buttons on Single page Hi, I am developing a struts applicatian, I have a jsp

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

2002-08-29 Thread Galbreath, Mark
No kidding! I'm on servlet-interest, j2ee-interest, struts-user, and hash-l. Ad to that all the spam crap I get and I'm up to around 300 msgs/day. I want to join an Oracle list but the volume already is bordering on the unmanageable. Mark -Original Message- From: Craig R. McClanahan

RE: confusion about view part!!!

2002-08-29 Thread Trieu, Danny
Amit, I've been using Struts/Tiles for quite sometime. They works well together. My only advice is stay away from frame and JavaScript that control the lookfeel as much as possible(this doesn't mean you have to avoid using it). danny -Original Message- From: Amit Badheka

RE: Struts and Many Buttons on Single page

2002-08-29 Thread Susmita Pati
in ur action handler u can do a getParameters(request) into a hashtable and then do a request.getParameterValues(name) for each of them. Once u have the name of the button which have pressed then u can do something lik given below if (parameters.containsKey(submit)) { submitValues =

RE: Struts and Many Buttons on Single page

2002-08-29 Thread Jim Conrad
If the multiple buttons are part of the same form, then give them different names. When the form submits you will see a name/value pair submit=buttonname. Get this value out of the request, then use the value to take your processing in the right direction. For development, set your form

RE: ApplicationResources.properties to DB?

2002-08-29 Thread Jason Rosen
If you decide to start developing a DB MessageResouces implementation, I would like to contribute - this is functionality I need as well and have thought about taking on. Let me know if you need/want any help. Jason -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]

RE: [JSP-Compile] First time penatly

2002-08-29 Thread Galbreath, Mark
RTFM that you downloaded with your servlet container and all will be revealed. Mark -Original Message- From: Billy Ng [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 12:40 PM To: [EMAIL PROTECTED] Subject: First time penatly Hi folks, Everytime I start or restart the app,

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:

  1   2   3   >