Re: Complete list of framework bean keys

2013-04-04 Thread Lukasz Lenart
2013/4/5 Ken McWilliams : > Perfect. > > As an asides: There not appear to be a unit test for > XmlConfigurationProvider, is it tested indirectly? XmlConfigurationProviderMultilevelTest XmlConfigurationProviderInterceptorParamOverridingTest XmlConfigurationProviderResultsTest XmlConfigurationProvi

Re: Complete list of framework bean keys

2013-04-04 Thread Ken McWilliams
Perfect. As an asides: There not appear to be a unit test for XmlConfigurationProvider, is it tested indirectly? There was plans have Guice as a Struts2 Dependency? Is this still in progress? Just asking after reading over and trying to wrap my head around ContainerBuilder (a parameter of the reg

Re: Complete list of framework bean keys

2013-04-04 Thread Lukasz Lenart
2013/4/5 Ken McWilliams : > Sometimes I want to override a default framework implementation and the > first place I look is in struts-default.xml but I don't think it contains > all possible bean keys. > > Is such a list maintained? http://struts.apache.org/development/2.x/docs/plugins.html#Plugin

Re: generating taglib using Ant and Java 6

2013-04-04 Thread Steven Yang
I definitely will share when I figure out how and I am really interested in when Struts3 will be come GA, as I am just starting a new project will hope to adopt to the new version asap. On Fri, Apr 5, 2013 at 8:02 AM, Omar Ngarigari wrote: > Struts3 is coming? Great! how soon? > > > ___

Complete list of framework bean keys

2013-04-04 Thread Ken McWilliams
Sometimes I want to override a default framework implementation and the first place I look is in struts-default.xml but I don't think it contains all possible bean keys. Is such a list maintained? For instance I want to provide a custom ConfigurationProvider but see no reference to a configuratio

Re: generating taglib using Ant and Java 6

2013-04-04 Thread Omar Ngarigari
Struts3 is coming? Great! how soon? From: Dave Newton To: Struts Users Mailing List Sent: Thursday, April 4, 2013 7:45 PM Subject: Re: generating taglib using Ant and Java 6 Nope. On Apr 4, 2013 7:39 PM, "Omar Ngarigari" wrote: > Did you mean Struts2? > >

Re: generating taglib using Ant and Java 6

2013-04-04 Thread Dave Newton
Nope. On Apr 4, 2013 7:39 PM, "Omar Ngarigari" wrote: > Did you mean Struts2? > > > > From: Lukasz Lenart > To: Struts Users Mailing List > Sent: Thursday, April 4, 2013 12:36 PM > Subject: Re: generating taglib using Ant and Java 6 > > If you find a solution,

Re: generating taglib using Ant and Java 6

2013-04-04 Thread Omar Ngarigari
Did you mean Struts2?  From: Lukasz Lenart To: Struts Users Mailing List Sent: Thursday, April 4, 2013 12:36 PM Subject: Re: generating taglib using Ant and Java 6 If you find a solution, please share it as we can use with Struts 3 then :-) 2013/4/4 Steven

Re: generating taglib using Ant and Java 6

2013-04-04 Thread Lukasz Lenart
If you find a solution, please share it as we can use with Struts 3 then :-) 2013/4/4 Steven Yang : > Sorry this may not be directed to Struts2 > > I have written some Struts2 taglib and want to package them into a jar. > I am not using maven so I used to use Ant with apt tag. > And my task looks

Re: Update Cookie JSESSIONID

2013-04-04 Thread Antonios Gkogkakis
I don't have any experience with that. Your logic seems correct though and we have something similar working in tomcat. So I'd imagine it's the AS as you said. Antonios On 4 April 2013 15:47, Peter Lin wrote: > SAP Netweaver Java AS. We have up to date version 7.30 > > > On Thu, Apr 4, 2013 at

Re: Update Cookie JSESSIONID

2013-04-04 Thread Peter Lin
SAP Netweaver Java AS. We have up to date version 7.30 On Thu, Apr 4, 2013 at 9:45 AM, Antonios Gkogkakis wrote: > What application server are you using? I remember some people having issues > with session ids with spring security in jboss. > > On 4 April 2013 15:36, Peter Lin wrote: > > > Yes

Re: Update Cookie JSESSIONID

2013-04-04 Thread Antonios Gkogkakis
What application server are you using? I remember some people having issues with session ids with spring security in jboss. On 4 April 2013 15:36, Peter Lin wrote: > Yes. I do put data into session after line of code: session = > ActionContext.getContext().getSession(); > > I can see a new sessi

Re: Update Cookie JSESSIONID

2013-04-04 Thread Peter Lin
Yes. I do put data into session after line of code: session = ActionContext.getContext().getSession(); I can see a new session is created but with the original JSESSIONID associated. I need it to be associated with a brand new JSESSIONID. I believe this is a bug in our Application server and looki

Re: Update Cookie JSESSIONID

2013-04-04 Thread Antonios Gkogkakis
> > ((org.apache.struts2.dispatcher.SessionMap) > > session).invalidate(); > > session = ActionContext.getContext().getSession(); That code invalidates the existing session but does not create a new one. To create a new session you have to call request.getSession(true); on the HttpServletReque

Re: Update Cookie JSESSIONID

2013-04-04 Thread Peter Lin
That is exactly my problem. The application server does not send a new JSESSIONID back to browser as long as a JSESSIONID cookie came with the original request, even I specifically invalidate session and create a new one. What is work-around? Do we have a way to block JSESSIONID cookie come to my