How to control no of session

2007-02-21 Thread ruchira
Hi, In my struts application i want to control on no of session.Can we control no of session.If yes then how? Regards Ruchira -- View this message in context: http://www.nabble.com/How-to-control-no-of-session-tf3265520.html#a9077369 Sent from the Struts - Dev mailing list archive at Nabb

Re: [s2] [VOTE] Struts 2.0.6 Quality

2007-02-21 Thread Pedro Herrera
Beta. struts2-blank-2.0.6.war doesn´t work !!! husted wrote: > > The Struts 2.0.6 test build is now available. > > Release notes: > > * http://struts.apache.org/2.x/docs/release-notes-206.html > > Distribution: > > * http://people.apache.org/builds/struts/2.0.6/ > > Maven 2 staging

Re: [s2] [VOTE] Struts 2.0.6 Quality

2007-02-21 Thread Rene Gielen
Am Di, 20.02.2007, 16:17, schrieb Nate Drake: > [X] Beta > > > Due to WW-1747. > Finally, WW-1747 and the related issues should be fixed now. We've now got additional tests in place for all reported issues, and they all pass (yes, even no broken build 8-). My vote is [x] Beta for 2.0.6 as is [

Re: [s2] [VOTE] Struts 2.0.6 Quality

2007-02-21 Thread Ted Husted
Were the problems associated with WW-1747 restricted to non-string types only? We can't patch 2.0.6 in this way, but I think a 2.0.7 was always a foregone conclusion. There are a number of worthwhile tweaks on the 2.0.7 TODO list. I'd expect there to be several 2.0.x GA releases, as we find "i's

Re: [s2] [VOTE] Struts 2.0.6 Quality

2007-02-21 Thread Rene Gielen
Am Mi, 21.02.2007, 12:59, schrieb Ted Husted: > Were the problems associated with WW-1747 restricted to non-string types > only? > Not solely. Also, there are problems with with collection handling (no matter which type of objects found in collection) causing no options being rendered as selected

Re: [s2] [VOTE] Struts 2.0.6 Quality

2007-02-21 Thread Ted Husted
There would be no reason for it to take longer. Along with WW-1747, there are a number of quick and harmless fixes on the 2.0.7 TODO list. Given something to put in the release notes, I'm up for rolling a milestone on any given Sunday. And, honestly, if this issue has been lurking for so long, un

Re: [s2] [VOTE] Struts 2.0.6 Quality

2007-02-21 Thread Don Brown
On 2/21/07, Ted Husted <[EMAIL PROTECTED]> wrote: And, honestly, if this issue has been lurking for so long, undoubtedly, there are going to be others. But, we are not going to catch those until more people try the product. At this point, I don't believe we are going to hook many more people wit

Re: [VOTE] Struts 2.0.6 Quality

2007-02-21 Thread cilquirm
[X] Leave at test build Checked out 2.0.6 from https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_0_6/ and i noticed that the struts-tags.tld file is not in core.jar. - Posted via Jive Forums http://forums.opensympho

Re: [VOTE] Struts 2.0.6 Quality

2007-02-21 Thread Ted Husted
If you are building from the tag, then you have to build it twice to get the TLD. There a known timing issue in the Maven build. The TLD is in the distribution. -Ted. On 2/21/07, cilquirm <[EMAIL PROTECTED]> wrote: [X] Leave at test build Checked out 2.0.6 from https://svn.apache.org/repos/a

Re: [s2] [VOTE] Struts 2.0.6 Quality

2007-02-21 Thread Ted Husted
On 2/21/07, Don Brown <[EMAIL PROTECTED]> wrote: I completely agree. It is unrealistic for an active project that uses this particular release process to find/fix zero bugs and make zero improvements from the time the test build is created to when it is voted upon. We've started to call the vo

Re: [VOTE] Struts 2.0.6 Quality

2007-02-21 Thread Musachy Barroso
That should be fixed already on the 2.0.X branch. regards musachy On 2/21/07, Ted Husted <[EMAIL PROTECTED]> wrote: If you are building from the tag, then you have to build it twice to get the TLD. There a known timing issue in the Maven build. The TLD is in the distribution. -Ted. On 2/21

[s1] Help to Initialize Commands

2007-02-21 Thread Paul Benedict
One thing I noticed in s1 is that there is no way to initialize a command. I am not speaking about the public constructor, but a way for a servlet-aware command to perform first-time initialization before its execute() method gets invoked. What should be done? I was thinking of adding a Servle

Struts 1.4 & 2.1 sharing localization code

2007-02-21 Thread Paul Benedict
I'd like to propose creating a sub-project like the annotations for localization. I am not at the point of committing my 1.4 changes, but real important classes are independent of s1 and could be used in s2. This is all theory. I haven't spent enough time looking at s2 to figure out in-depth i

Re: [s1] Help to Initialize Commands

2007-02-21 Thread Niall Pemberton
On 2/22/07, Paul Benedict <[EMAIL PROTECTED]> wrote: One thing I noticed in s1 is that there is no way to initialize a command. I am not speaking about the public constructor, but a way for a servlet-aware command to perform first-time initialization before its execute() method gets invoked. Wha

Re: [s1] Help to Initialize Commands

2007-02-21 Thread Paul Benedict
Niall Pemberton wrote: The Commands have access to the application scope through the context - isn't that the best way to get any required resources that it needs to use during execution? Niall, the context is only available at invocation time. What about first time setup? I cannot solve concur

Re: [s1] Help to Initialize Commands

2007-02-21 Thread Martin Cooper
On 2/21/07, Paul Benedict <[EMAIL PROTECTED]> wrote: One thing I noticed in s1 is that there is no way to initialize a command. I am not speaking about the public constructor, but a way for a servlet-aware command to perform first-time initialization before its execute() method gets invoked.

Re: [s1] Help to Initialize Commands

2007-02-21 Thread Paul Benedict
I can't even make that assumption in Struts? I should be able to assume how the Struts Chain works for a Struts Command. But in terms of a solution, what do you suggest? I find it implausible there is no way for a command to perform first-time initialization in Struts. Paul Martin Cooper wrot

Re: Struts 1.4 & 2.1 sharing localization code

2007-02-21 Thread Don Brown
For the unaware like me, could you go more into the problem that exists in Struts 1 and 2, and the solution that involves these annotations? Just from this message, I'm a bit confused why we would use annotations for something like this. Don On 2/21/07, Paul Benedict <[EMAIL PROTECTED]> wrote:

Re: Struts 1.4 & 2.1 sharing localization code

2007-02-21 Thread Paul Benedict
Ah. Good email. I didn't realize that my sentence could be read as such, but now I can see that interpretation. Here's what I meant: I'd like to propose creating a sub-project (like the annotations) for localization. Not creating annotations for localization, but a subproject like you did for

Re: Struts 1.4 & 2.1 sharing localization code

2007-02-21 Thread Don Brown
Ah, that makes much more sense :) As for collaborating, I'm all for it, however in the case of Struts 2, it would happen probably at the XWork 2 layer. Since this code would be useful to non-Struts projects, perhaps it would be better to move it to Jakarta Commons, say commons-i18n? I believe t

Re: [s1] Help to Initialize Commands

2007-02-21 Thread Antonio Petrelli
2007/2/22, Paul Benedict <[EMAIL PROTECTED]>: I was thinking of adding a ServletAwareCommand interface which a Command can implement to accept the ActionServlet, so it can access other pieces of data from the web application. It seems like Dependency Injection, why don't use Spring to accomplis