Re: Extending Template

2013-07-08 Thread Alireza Fattahi
Yes it is a typo. I have this in the struts.xml      ~Regards, ~~Alireza Fattahi From: Lukasz Lenart To: Struts Users Mailing List Sent: Tuesday, 9 July 2013, 11:12 Subject: Re: Extending Template 2013/7/9 Alireza Fattahi : > Hi, > > I want to extend t

Re: Extending Template

2013-07-08 Thread Lukasz Lenart
2013/7/9 Alireza Fattahi : > Hi, > > I want to extend the css_xhtml. > > 1- /WEB-INF/classes/template/mytemp > 2- Put the theme.properties in it . > 3- Add the parent = css_xhtml > 4- Update the the struts.xml as below: > > is it typo here or in your code? Regards -- Łukasz + 48 606 3

Extending Template

2013-07-08 Thread Alireza Fattahi
Hi, I want to extend the css_xhtml. 1- /WEB-INF/classes/template/mytemp 2- Put the theme.properties in it . 3- Add the parent = css_xhtml 4- Update the the struts.xml as below:             I got below error:    -- Error reading included file

Re: ServletResponseAware - request can be null?

2013-07-08 Thread Christian Grobmeier
On Mon, Jul 8, 2013 at 9:42 PM, Paul Benedict wrote: > Do this test. Put a breakpoint in the setter that is storing the response. > You either have the case where the interceptor is not being fired (and thus > your method is not being called) or you have found a null somehow being > passed in. I b

Re: ServletResponseAware - request can be null?

2013-07-08 Thread Paul Benedict
Do this test. Put a breakpoint in the setter that is storing the response. You either have the case where the interceptor is not being fired (and thus your method is not being called) or you have found a null somehow being passed in. I bet the former is the case, but you'll have to test to find out

Re: ServletResponseAware - request can be null?

2013-07-08 Thread Lukasz Lenart
2013/7/5 Christian Grobmeier : > I am implementing the ServletResponseAware interface and found out > that sometimes the HttpServletResponse is null when I execute() the > action. > > ServletConfigInterceptor is definitely executed before. Actually often > the HttpServletResponse is not null and my