Re: [Stripes-users] Using dependency injection on action beans when I use MockRoundtrip

2013-02-11 Thread Jocke Eriksson
Just mock the initial context factory. see http://stackoverflow.com/questions/10045466/how-to-fake-initialcontext-with-default-constructor. Date: Mon, 11 Feb 2013 10:18:05 -0800 From: d...@mirthcorp.com To: stripes-users@lists.sourceforge.net Subject: [Stripes-users] Using dependency injection

Re: [Stripes-users] 1.6

2011-12-31 Thread Jocke Eriksson
this answered by Ben Gunter - http://old.nabble.com/What-is-the-expected-release-date-of-Stripes-1.6--td32982902.html Cheers,Sonny On Thu, Dec 29, 2011 at 11:45 AM, Jocke Eriksson jockeeriks...@msn.com wrote: Hello Stripes community I was wondering if there will be any 1.6 release or has

[Stripes-users] 1.6

2011-12-29 Thread Jocke Eriksson
Hello Stripes community I was wondering if there will be any 1.6 release or has the development stopped completely.Really looking forward to have my own object factory. Regards Joakim Eriksson

Re: [Stripes-users] Direct access to .jsp, no security manager (stripesstuff security)

2011-07-13 Thread Jocke Eriksson
You should prohibit direct access to your jsp. This can be done by moving your jsps under WEB-INF or declare a security constraint in web.xml. Regards Jocke. From: alexk...@gmail.com Date: Wed, 13 Jul 2011 09:40:37 +0600a To: stripes-users@lists.sourceforge.net Subject: Re: [Stripes-users]

[Stripes-users] Stripes for people that love beautiful code!

2010-11-06 Thread Jocke Eriksson
Stripes the web framework for people that love beautiful code!This is my replay to the thread on what put on sourceforge. I have to say that the one thing that I love most about stripes it's that it makes my code look good.I think that a statement that holds the essence of stripes should make

Re: [Stripes-users] Stripes and GWT

2010-10-25 Thread Jocke Eriksson
I have successfully used stripes and GWT. I found that the best approach was to have the GWT project as an maven overlay and have the stripes project depend on that.Then I also had an shared project with interfaces that my entities and my overlays implemented. The javascript resolution was a

Re: [Stripes-users] Need help: problem with SecurityManager and persistence

2010-10-08 Thread Jocke Eriksson
You could change one of your relations to a Set, then will it work but that is not always an option. But I would never use open session in view filter that's my opinion Jocke. Date: Thu, 7 Oct 2010 14:59:55 -0400 From: j...@ncphotography.com To: stripes-users@lists.sourceforge.net

Re: [Stripes-users] Stripersist.getEntityManager() -- NullPointerException

2010-07-08 Thread Jocke Eriksson
The path should be for junit tests target/test-classes/META-INF/persistence.xml Date: Thu, 8 Jul 2010 01:58:28 -0500 From: d...@plektos.com To: stripes-users@lists.sourceforge.net Subject: Re: [Stripes-users] Stripersist.getEntityManager() -- NullPointerException apologies: i

Re: [Stripes-users] Stripersist.getEntityManager() -- NullPointerException

2010-07-07 Thread Jocke Eriksson
I use maven and it ends up in target/test-classes/META-INF when I junit test. Date: Wed, 7 Jul 2010 01:42:04 -0500 From: d...@plektos.com To: stripes-users@lists.sourceforge.net Subject: Re: [Stripes-users] Stripersist.getEntityManager() -- NullPointerException hi aaron, thank

Re: [Stripes-users] Creating a multiple select using stripes:select and stripes:options-collection

2010-05-24 Thread Jocke Eriksson
Why would he want to switch EJB with stripersist?Is stripersist a better framework? Could this issue not be solved using EJB? From: gunter...@gmail.com Date: Mon, 24 May 2010 08:24:48 -0400 To: stripes-users@lists.sourceforge.net Subject: Re: [Stripes-users] Creating a multiple select using

Re: [Stripes-users] RedirectResolution using POST

2009-11-10 Thread Jocke Eriksson
is disabled...). A controller solution is very intriguing as, while another specification workaround, it is hidden from the view and the protocol layers preserving the data being passed around. Regards, TIm On 11/10/09 2:15 AM, Jocke Eriksson jockeeriks...@msn.com wrote: I would go

Re: [Stripes-users] RedirectResolution using POST

2009-11-09 Thread Jocke Eriksson
I would go with the URL Connection class, this will give you the possibility to implement failover whenneeded. Date: Mon, 9 Nov 2009 19:54:48 +0100 From: g...@karko.net To: stripes-users@lists.sourceforge.net Subject: [Stripes-users] RedirectResolution using POST Hi, I'm integrating