Re: [jira] Created: (STR-2939) Provide a conversation scope (syn: Flash scope, dialog scope) object to store data between requests.

2006-08-29 Thread Antonio Petrelli
Michael Jouravlev (JIRA) ha scritto: In addition to standard J2EE scopes (page for JSP, request, session and application) provide a new scope object that would hold data between requests. Similar facilities in Tapestry and Stripes are called FlashScope, Struts 1 will call it as Conversation Sc

[OT] Re: [jira] Created: (STR-2939) Provide a conversation scope (syn: Flash scope, dialog scope) object to store data between requests.

2006-08-29 Thread Antonio Petrelli
Antonio Petrelli ha scritto: Micheal Whoops sorry, I mistyped your name ;-) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [jira] Created: (SB-39) Tiles 2 does not work with JSF

2006-08-29 Thread Mehdi Bahribayli
This issue is automatically created from apache Tiles 2 issue tracking system and I was not aware of that. The issue is resolved and it was a bug of Tiles 2 (https://issues.apache.org/struts/browse/SB-39). BTW the duplication of ids was my fault but it was not the cause of mentioned error. -

Re: Archetypes: A Proposal for the less-configuration future

2006-08-29 Thread Ted Husted
On 8/28/06, Jason Carreira <[EMAIL PROTECTED]> wrote: The idea is simple: In most apps, 90+% of actions will fall into one of a few "types" which will have very similar configuration. If we can pull these commonalities out into what I was calling "architypes", then we can just specify which ar

Re: Archetypes: A Proposal for the less-configuration future

2006-08-29 Thread Ted Husted
On 8/29/06, Ted Husted <[EMAIL PROTECTED]> wrote: Oops, this should be -Ted. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Session Timeout

2006-08-29 Thread John De Lello
Hey Everyone, I am trying to use a custom session timeout JSP. To do this, I extended "RequestProcessor" and overrode "processPreprocess" and added the following code: HttpSession sess = req.getSession(false); if(sess == null){ // even when the session

Re: svn commit: r437956 - in /struts/struts1/trunk/core/src/main/java/org/apache/struts: action/ chain/commands/ chain/commands/servlet/ config/ config/impl/ util/

2006-08-29 Thread Wendy Smoak
On 8/28/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Author: pbenedict Date: Mon Aug 28 21:26:25 2006 New Revision: 437956 URL: http://svn.apache.org/viewvc?rev=437956&view=rev Log: STR-2864 This should have a description of the change in addition to the JIRA issue. ( I've never tried it

RE: Session Timeout

2006-08-29 Thread John De Lello
Crap, sorry. Posted to the wrong list. -Original Message- From: John De Lello [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 29, 2006 11:15 AM To: dev@struts.apache.org Subject: Session Timeout Hey Everyone, I am trying to use a custom session timeout JSP. To do this, I extended "Re

Re: svn commit: r437956 - in /struts/struts1/trunk/core/src/main/java/org/apache/struts: action/ chain/commands/ chain/commands/servlet/ config/ config/impl/ util/

2006-08-29 Thread Phil Steitz
On 8/29/06, Wendy Smoak <[EMAIL PROTECTED]> wrote: On 8/28/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Author: pbenedict > Date: Mon Aug 28 21:26:25 2006 > New Revision: 437956 > > URL: http://svn.apache.org/viewvc?rev=437956&view=rev > Log: > STR-2864 > This should have a description of

Re: ApacheCon 2006

2006-08-29 Thread Don Brown
I should have a spare bed. Don James Mitchell wrote: I will be there. Anyone interested in sharing a room (1/2 price is always better than full price) ? -- James Mitchell 678.910.8017 On Aug 25, 2006, at 12:16 AM, Wendy Smoak wrote: On 8/24/06, Ted Husted <[EMAIL PROTECTED]> wrote:

RE: Session Timeout

2006-08-29 Thread faisal abdallah
This can be done easily with javascript inside the main layout email me on [EMAIL PROTECTED] and I will send you the code skillipedia.com John De Lello <[EMAIL PROTECTED]> wrote: Crap, sorry. Posted to the wrong list. -Original Message- From: John De Lello [mailto:[EMAIL PR

RE: Session Timeout

2006-08-29 Thread John De Lello
The mandate is no JS. I'd prefer to not use a filter either for this. I was just wondering why I was getting a valid session when the session was indeed expired. -Original Message- From: faisal abdallah [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 29, 2006 2:30 PM To: Struts Develope

Re: [jira] Created: (STR-2939) Provide a conversation scope (syn: Flash scope, dialog scope) object to store data between requests.

2006-08-29 Thread Michael Jouravlev
On 8/29/06, Antonio Petrelli <[EMAIL PROTECTED]> wrote: Michael Jouravlev (JIRA) ha scritto: > In addition to standard J2EE scopes (page for JSP, request, session and application) provide a new scope object that would hold data between requests. Similar facilities in Tapestry and Stripes are ca

RE: [jira] Created: (STR-2939) Provide a conversation scope (syn: Flash scope, dialog scope) object to store data between requests.

2006-08-29 Thread Chris.Mathews
We have added support to WebWork 2.2 for "Flash Scope" in a slightly different way... We support adding Flash-scope Action Messages and Action Errors without resorting to using the HttpSession. In our solution, we actually write out a small Session Cookie by extending ServletRedirectResult and

Re: [jira] Created: (STR-2939) Provide a conversation scope (syn: Flash scope, dialog scope) object to store data between requests.

2006-08-29 Thread Martin Cooper
On 8/29/06, Michael Jouravlev <[EMAIL PROTECTED]> wrote: On 8/29/06, Antonio Petrelli <[EMAIL PROTECTED]> wrote: > Michael Jouravlev (JIRA) ha scritto: > > In addition to standard J2EE scopes (page for JSP, request, session and application) provide a new scope object that would hold data between

Re: [jira] Created: (STR-2939) Provide a conversation scope (syn: Flash scope, dialog scope) object to store data between requests.

2006-08-29 Thread Michael Jouravlev
So you write out messages to the cookie? So this is limited to messages only? I am about to create a more generic storage, so cookies won't work. Also, sometime around Struts 1.2.4 or 1.2.6 the new way of handling messages was introduced. It is kinda of Flash/Conversation/Click scope (I will be ca

Re: [jira] Created: (STR-2939) Provide a conversation scope (syn: Flash scope, dialog scope) object to store data between requests.

2006-08-29 Thread Michael Jouravlev
On 8/29/06, Martin Cooper <[EMAIL PROTECTED]> wrote: Please, if we're going to consider adding a flash / click / dialog / whatever scope, let's decouple it from redirection. Such an intermediate scope has potential uses that have nothing to do with redirection, so it needs to be workable even for

Re: svn commit: r437956 - in /struts/struts1/trunk/core/src/main/java/org/apache/struts: action/ chain/commands/ chain/commands/servlet/ config/ config/impl/ util/

2006-08-29 Thread Paul Benedict
I never tried changing the log message and I don't know if I should :-) The message is exactly what I intended to be: completes the ticket. I don't want to touch multiple projects under this ticket; I will open up one for taglib and one for the examples app. But because you feel strongly I shou

Re: svn commit: r437956 - in /struts/struts1/trunk/core/src/main/java/org/apache/struts: action/ chain/commands/ chain/commands/servlet/ config/ config/impl/ util/

2006-08-29 Thread Martin Cooper
On 8/29/06, Paul Benedict <[EMAIL PROTECTED]> wrote: I never tried changing the log message and I don't know if I should :-) The message is exactly what I intended to be: completes the ticket. I don't want to touch multiple projects under this ticket; I will open up one for taglib and one for th

Re: svn commit: r437956 - in /struts/struts1/trunk/core/src/main/java/org/apache/struts: action/ chain/commands/ chain/commands/servlet/ config/ config/impl/ util/

2006-08-29 Thread Paul Benedict
You both make good points. I don't have a strong opinion on this matter, and so I can very easily say I'll do it the next time. Sorry for not meeting expectations. -- Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additio

Re: svn commit: r437956 - in /struts/struts1/trunk/core/src/main/java/org/apache/struts: action/ chain/commands/ chain/commands/servlet/ config/ config/impl/ util/

2006-08-29 Thread Martin Cooper
On 8/29/06, Paul Benedict <[EMAIL PROTECTED]> wrote: Sorry for not meeting expectations. Oh, that's not the way to look at it at all. It's a learning process that we're all going through all the time. We can hardly expect those "new in town" to instantly assimilate all that we've learned over

Retrieve Data From WebServer

2006-08-29 Thread Rokariya, Raman
Hi, I am developing web client using Struts Framework. I am facing a problem in following scenario. I have an arraylist of Data , which is populated in Table Grid using Display-Tag library. The first time when the page appears, the data comes from the Database. It is working fine for the first

DTD on site

2006-08-29 Thread Paul Benedict
In each version of the Struts website (/1.x/, /1.2.x/), I think it would be a great idea to have a link on the side-bar be to the DTD, like the following. Any thoughts? Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

Re: DTD on site

2006-08-29 Thread Paul Benedict
The DTD to the Struts Config. Paul Benedict wrote: In each version of the Struts website (/1.x/, /1.2.x/), I think it would be a great idea to have a link on the side-bar be to the DTD, like the following. Any thoughts? Paul -

Re: DTD on site

2006-08-29 Thread Wendy Smoak
On 8/29/06, Paul Benedict <[EMAIL PROTECTED]> wrote: The DTD to the Struts Config. Paul Benedict wrote: > In each version of the Struts website (/1.x/, /1.2.x/), I think it would > be a great idea to have a link on the side-bar be to the DTD, like the > following. Any thoughts? I'm still not s

Re: DTD on site

2006-08-29 Thread Paul Benedict
I wanted to link to the live DTD: http://struts.apache.org/dtds/struts-config/1_3/ Paul Wendy Smoak wrote: On 8/29/06, Paul Benedict <[EMAIL PROTECTED]> wrote: The DTD to the Struts Config. Paul Benedict wrote: > In each version of the Struts website (/1.x/, /1.2.x/), I think it would > be