Re: [Stripes-users] Can not get Stripes to read properties files

2009-10-28 Thread Simon Keen
I have now identified that it is a stripes issue as JSTL is happily using the properties file to resolve its locales. I have attached my web.xml file in case anyone can see the silly mistake I might have made. I am sure it must be in the param where I tell stripes about the localisation bundle.

Re: [Stripes-users] Stripes 1.5.2 Released

2009-10-28 Thread Alamgir Kahn
Awesome guys, for the great continued work on Stripes! Ben Gunter writes: > > Version 1.5.2 of Stripes has been released. It is a bug fix release and addresses several issues with Stripes 1.5.1. The full list of bug fixes and enhancements since 1.5.1 can be found here:http://www.stripesframew

Re: [Stripes-users] Stripes 1.5.2 Released

2009-10-28 Thread Samuel Santos
Thanks Ben and Freddy! Congrats for the new release. -- Samuel Santos http://www.samaxes.com/ On Wed, Oct 28, 2009 at 9:28 PM, Freddy Daoud wrote: > Thanks Ben for all of your tremendous work! > Very much appreciated! > > Cheers, > Freddy > http://www.stripesbook.com > > On Wed, 28 Oct 2009 15

Re: [Stripes-users] Stripes 1.5.2 Released

2009-10-28 Thread Freddy Daoud
Thanks Ben for all of your tremendous work! Very much appreciated! Cheers, Freddy http://www.stripesbook.com On Wed, 28 Oct 2009 15:33:36 -0400, "Ben Gunter" said: > Version 1.5.2 of Stripes has been released. It is a bug fix release and > addresses several issues with Stripes 1.5.1. The full li

Re: [Stripes-users] Bean Population with XMLBeans and Stripes?

2009-10-28 Thread Newman, John W
Yes we had to setup spring pooling of the marshaller/unmarshaller for anything to work under load. They (or maybe just one of the two.. I forget) are not threadsafe.. and the create() operation can be expensive. We can't even use validation due to a bug with xerces choking on one of the schem

[Stripes-users] Stripes 1.5.2 Released

2009-10-28 Thread Ben Gunter
Version 1.5.2 of Stripes has been released. It is a bug fix release and addresses several issues with Stripes 1.5.1. The full list of bug fixes and enhancements since 1.5.1 can be found here: http://www.stripesframework.org/jira/secure/ReleaseNote.jspa?projectId=1&styleName=Html&version=10110

[Stripes-users] Stripes 1.5.2 Released

2009-10-28 Thread Ben Gunter
Version 1.5.2 of Stripes has been released. It is a bug fix release and addresses several issues with Stripes 1.5.1. The full list of bug fixes and enhancements since 1.5.1 can be found here: http://www.stripesframework.org/jira/secure/ReleaseNote.jspa?projectId=1&styleName=Html&version=10110

Re: [Stripes-users] Storing an entity between requests

2009-10-28 Thread Poitras Christian
Full details are here : http://www.stripesframework.org/display/stripes/Save+ActionBean+fields+in+session You can remove the object from session either by setting it to null or removing it from session by it's key. Remove objects from session Just calling session.removeAttribute(key) will not

Re: [Stripes-users] Storing an entity between requests

2009-10-28 Thread Aaron Porter
From a quick glance at the source you just have to set your entity to null when you're done with it and it will be removed from the session. Aaron Stephen Nelson wrote: On Wed, Oct 28, 2009 at 1:30 PM, Aaron Porter > wrote: Stephen, It sounds like you can acco

Re: [Stripes-users] Bean Population with XMLBeans and Stripes?

2009-10-28 Thread Brown, Alex
Hey John, So Stripes 1.6 will have the ability to use factories with the population strategy? Is this documented anywhere as far as how it works or should I just peruse the code? Not sure what you mean about subclassing, subclassing the population strategy? Why do you like or not like jaxb?

Re: [Stripes-users] Storing an entity between requests

2009-10-28 Thread Stephen Nelson
On Wed, Oct 28, 2009 at 1:30 PM, Aaron Porter wrote: > Stephen, > It sounds like you can accomplish what you're trying to do by marking > the ServiceProvider declaration in your ActionBean with @Session from > the StripesStuff project. That will save sessionProvider in the > HttpSession at the en

Re: [Stripes-users] Bean Population with XMLBeans and Stripes?

2009-10-28 Thread Newman, John W
Stripes 1.6 will have the object factory - anywhere newInstance() was used is replaced with yourObjectFactory.newInstance(); .. this was stable in the trunk when I last tried it out, about 2 months ago. The @Before method probably wont work too well for very long. You could subclass We are

Re: [Stripes-users] Storing an entity between requests

2009-10-28 Thread Aaron Porter
Stephen, It sounds like you can accomplish what you're trying to do by marking the ServiceProvider declaration in your ActionBean with @Session from the StripesStuff project. That will save sessionProvider in the HttpSession at the end of each request and restore it at the beginning of subseque

Re: [Stripes-users] Storing an entity between requests

2009-10-28 Thread Stephen Nelson
Hi Aaron, Ben and Grzegorz Thanks for the replies. I think a code snippet may be helpful as I'm probably not explaining what I'm trying to do very well... @DefaultHandler @DontValidate public Resolution view() { ServiceProviderContext sp = getServiceProviderContext();