Re: action tag with tile result causing StackOverflowError-

2016-11-28 Thread Christoph Nenning
You can file struts bugs here:

https://issues.apache.org/jira/browse/WW/


Regards,
Christoph



> From: Vishal Jhagadiawala <vish_...@yahoo.com.INVALID>
> To: Struts Users Mailing List <user@struts.apache.org>, 
> Date: 25.11.2016 20:04
> Subject: Re: action tag with tile result causing StackOverflowError-
> 
> Thanks Christoph for suggestion, That's best way to do it, 
> In my application I have lots of nested content, which is called by 
>  along with tiles result. 
> 
> The code worked fine upto struts 2.2.1.1 and tiles 2.0.6 versions. 
> after upgrading exactly same usage goes into infinite loop. and to 
> refactor application it will be a big effort. 
> 
> is there anyway to open jira ticket, as this is reproducible so it 
> can be tracked. 
> 
> 
> Regards,
> Vishal
> 
> 
> 
> On Tuesday, 22 November 2016, 3:37, Christoph Nenning 
> <christoph.nenn...@lex-com.net> wrote:
> 
> 
>  In our apps we do similar things in a different way.
> 
> 
> Our Tiles definition for layout looks like this:
> 
> 
> 
> 
> 
> 
> 
> 
> Inside layout.jsp we insert the content provided by action like this:
> 
> 
> 
> 
> 
> 
> 
> Actions provide content by using annotations:
> 
> @TilesDefinition(
> extend=".layout",
> putAttributes={
> @TilesPutAttribute(name="title", value="titel"),
> @TilesPutAttribute(name="content",value="content.jsp")
> }
> )
> 
> 
> 
> Hope that helps!
> 
> 
> 
> Regards,
> Christoph
> 
> 
> 
> 
> 
> > From: Vishal Jhagadiawala <vish_...@yahoo.com.INVALID>
> > To: Struts Users Mailing List <user@struts.apache.org>, 
> > Date: 21.11.2016 16:14
> > Subject: Re: action tag with tile result causing StackOverflowError-
> > 
> > Hi Christoph,
> > Please find my response below. 
> > 
> > Here is my actionTileResult.jsp (it is for test)
> > actionResult.jsp
> > This is text :
> > 
> > 
> > 
> > 
> > - how should showcase.index.actionResult and showcase.index belong to 
> each 
> > other?  showcase.index is a global layout, and there are dynamic 
> > pages based on action outcome eg . showcase.index.actionResult will 
> > be included in the global layout
> > 
> > - shouldn't showcase.index.actionResult set the body attribute?
> > currently to reproduce the issue, I have used title attribute, but 
> > we tile definition can be more specific based on need
> > 
> > - why is there an  tag in layout.jsp?  this is to 
> > include dynamic result based on outcome of the action logic. 
> > 
> > 
> > Regards,
> > Vishal
> > 
> >On Monday, 21 November 2016, 4:19, Christoph Nenning 
> > <christoph.nenn...@lex-com.net> wrote:
> > 
> > 
> >  Hi,
> > 
> > 
> > some questions about your code snippets:
> > 
> > - how does actionResult.jsp look?
> > - how should showcase.index.actionResult and showcase.index belong to 
> each 
> > other?
> > - shouldn't showcase.index.actionResult set the body attribute?
> > - why is there an  tag in layout.jsp?
> > 
> > 
> > Regards,
> > Christoph
> > 
> > 
> > 
> > > From: Vishal Jhagadiawala <vish_...@yahoo.com.INVALID>
> > > To: Struts Users Mailing List <user@struts.apache.org>, 
> > > Date: 19.11.2016 20:55
> > > Subject: Re: action tag with tile result causing StackOverflowError-
> > > 
> > > Hi ,
> > > I also verified the exactly same error happens in struts 2.5.5 with 
> > > tiles 3.0.7.
> > > if we try to use action tag as below with tiles result it's goes in 
> > > infinite loop and throws it throws java.lang.StackOverflowError,
> > >  executeResult="true"/>
> > > 
> > > Layout.jsp 
> > > 
> > >  Notice that this is a layout
> > > made in JSP > > name="myTestAction" namespace="/tiles" 
> > executeResult="true"/>
> > > 
> > > - struts.xml  
> > > showcase.index.actionResult  
> > > showcase.index.actionResult > > result>  --tiles.xml
> > >
> > >  > > value="Action Result"/>
> > > 
> > >  Let me know if somebody faced same issue. 
> > &g

Re: action tag with tile result causing StackOverflowError-

2016-11-25 Thread Vishal Jhagadiawala
Thanks Christoph for suggestion, That's best way to do it, 
In my application I have lots of nested content, which is called by  
along with tiles result. 

The code worked fine upto struts 2.2.1.1 and tiles 2.0.6 versions. after 
upgrading exactly same usage goes into infinite loop. and to refactor 
application it will be a big effort. 

is there anyway to open jira ticket, as this is reproducible so it can be 
tracked. 


Regards,
Vishal



On Tuesday, 22 November 2016, 3:37, Christoph Nenning 
<christoph.nenn...@lex-com.net> wrote:
 

 In our apps we do similar things in a different way.


Our Tiles definition for layout looks like this:


    
    




Inside layout.jsp we insert the content provided by action like this:


        




Actions provide content by using annotations:

@TilesDefinition(
        extend=".layout",
        putAttributes={
                @TilesPutAttribute(name="title", value="titel"),
                @TilesPutAttribute(name="content",value="content.jsp")
        }
)



Hope that helps!



Regards,
Christoph





> From: Vishal Jhagadiawala <vish_...@yahoo.com.INVALID>
> To: Struts Users Mailing List <user@struts.apache.org>, 
> Date: 21.11.2016 16:14
> Subject: Re: action tag with tile result causing StackOverflowError-
> 
> Hi Christoph,
> Please find my response below. 
> 
> Here is my actionTileResult.jsp (it is for test)
> actionResult.jsp
> This is text :
> 
> 
> 
> 
> - how should showcase.index.actionResult and showcase.index belong to 
each 
> other?  showcase.index is a global layout, and there are dynamic 
> pages based on action outcome eg . showcase.index.actionResult will 
> be included in the global layout
> 
> - shouldn't showcase.index.actionResult set the body attribute?    
> currently to reproduce the issue, I have used title attribute, but 
> we tile definition can be more specific based on need
> 
> - why is there an  tag in layout.jsp?          this is to 
> include dynamic result based on outcome of the action logic. 
> 
> 
> Regards,
> Vishal
> 
>    On Monday, 21 November 2016, 4:19, Christoph Nenning 
> <christoph.nenn...@lex-com.net> wrote:
> 
> 
>  Hi,
> 
> 
> some questions about your code snippets:
> 
> - how does actionResult.jsp look?
> - how should showcase.index.actionResult and showcase.index belong to 
each 
> other?
> - shouldn't showcase.index.actionResult set the body attribute?
> - why is there an  tag in layout.jsp?
> 
> 
> Regards,
> Christoph
> 
> 
> 
> > From: Vishal Jhagadiawala <vish_...@yahoo.com.INVALID>
> > To: Struts Users Mailing List <user@struts.apache.org>, 
> > Date: 19.11.2016 20:55
> > Subject: Re: action tag with tile result causing StackOverflowError-
> > 
> > Hi ,
> > I also verified the exactly same error happens in struts 2.5.5 with 
> > tiles 3.0.7.
> > if we try to use action tag as below with tiles result it's goes in 
> > infinite loop and throws it throws java.lang.StackOverflowError,
> > 
> > 
> > Layout.jsp 
> >         
> >  Notice that this is a layout
> > made in JSP         > name="myTestAction" namespace="/tiles" 
> executeResult="true"/>
> > 
> > - struts.xml              
> > showcase.index.actionResult          
> > showcase.index.actionResult > result>          --tiles.xml
> >                                
> >          > value="Action Result"/>
> > 
> >  Let me know if somebody faced same issue. 
> > Regards,Vishal
> > 
> >    On Saturday, 19 November 2016, 10:28, Vishal Jhagadiawala 
> > <vish_...@yahoo.com.INVALID> wrote:
> > 
> > 
> >  Hi ,
> > I have upgraded my struts application to version 2.3.30 and apache-
> > tiles 2.2.2 and I am facing issue with s:action tag and tiles 
> > result. it goes in recursive loop and throws StackOverflowError as 
> below. 
> > also I am able to reproduce this issue in showcase application, I 
> > have outlined the tiles.xml , struts-tile.xml and layout.jsp as below. 

> > it throws java.lang.StackOverflowError: null at 
> > org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> > (ApplicationHttpRequest.java:230)        at 
> > org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> > (ApplicationHttpRequest.java:230) at 
> > org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> > (ApplicationHttpRequest.java:230) at 
> > org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> > (Applicatio

Re: action tag with tile result causing StackOverflowError-

2016-11-22 Thread Christoph Nenning
In our apps we do similar things in a different way.


Our Tiles definition for layout looks like this:








Inside layout.jsp we insert the content provided by action like this:







Actions provide content by using annotations:

@TilesDefinition(
extend=".layout",
putAttributes={
@TilesPutAttribute(name="title", value="titel"),
@TilesPutAttribute(name="content",value="content.jsp")
}
)



Hope that helps!



Regards,
Christoph





> From: Vishal Jhagadiawala <vish_...@yahoo.com.INVALID>
> To: Struts Users Mailing List <user@struts.apache.org>, 
> Date: 21.11.2016 16:14
> Subject: Re: action tag with tile result causing StackOverflowError-
> 
> Hi Christoph,
> Please find my response below. 
> 
> Here is my actionTileResult.jsp (it is for test)
> actionResult.jsp
> This is text :
> 
> 
> 
> 
> - how should showcase.index.actionResult and showcase.index belong to 
each 
> other?   showcase.index is a global layout, and there are dynamic 
> pages based on action outcome eg . showcase.index.actionResult will 
> be included in the global layout
> 
> - shouldn't showcase.index.actionResult set the body attribute?
> currently to reproduce the issue, I have used title attribute, but 
> we tile definition can be more specific based on need
> 
> - why is there an  tag in layout.jsp?  this is to 
> include dynamic result based on outcome of the action logic. 
> 
> 
> Regards,
> Vishal
> 
> On Monday, 21 November 2016, 4:19, Christoph Nenning 
> <christoph.nenn...@lex-com.net> wrote:
> 
> 
>  Hi,
> 
> 
> some questions about your code snippets:
> 
> - how does actionResult.jsp look?
> - how should showcase.index.actionResult and showcase.index belong to 
each 
> other?
> - shouldn't showcase.index.actionResult set the body attribute?
> - why is there an  tag in layout.jsp?
> 
> 
> Regards,
> Christoph
> 
> 
> 
> > From: Vishal Jhagadiawala <vish_...@yahoo.com.INVALID>
> > To: Struts Users Mailing List <user@struts.apache.org>, 
> > Date: 19.11.2016 20:55
> > Subject: Re: action tag with tile result causing StackOverflowError-
> > 
> > Hi ,
> > I also verified the exactly same error happens in struts 2.5.5 with 
> > tiles 3.0.7.
> > if we try to use action tag as below with tiles result it's goes in 
> > infinite loop and throws it throws java.lang.StackOverflowError,
> > 
> > 
> > Layout.jsp 
> > 
> >  Notice that this is a layout
> > made in JSP > name="myTestAction" namespace="/tiles" 
> executeResult="true"/>
> > 
> > - struts.xml  
> > showcase.index.actionResult  
> > showcase.index.actionResult > result>  --tiles.xml
> >
> >  > value="Action Result"/>
> > 
> >  Let me know if somebody faced same issue. 
> > Regards,Vishal
> > 
> >On Saturday, 19 November 2016, 10:28, Vishal Jhagadiawala 
> > <vish_...@yahoo.com.INVALID> wrote:
> > 
> > 
> >  Hi ,
> > I have upgraded my struts application to version 2.3.30 and apache-
> > tiles 2.2.2 and I am facing issue with s:action tag and tiles 
> > result. it goes in recursive loop and throws StackOverflowError as 
> below. 
> > also I am able to reproduce this issue in showcase application, I 
> > have outlined the tiles.xml , struts-tile.xml and layout.jsp as below. 

> > it throws java.lang.StackOverflowError: null at 
> > org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> > (ApplicationHttpRequest.java:230)at 
> > org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> > (ApplicationHttpRequest.java:230) at 
> > org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> > (ApplicationHttpRequest.java:230) at 
> > org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> > (ApplicationHttpRequest.java:230) .. (truncated) 
> > .at 
> > com.opensymphony.xwork2.DefaultActionInvocation.invoke
> > (DefaultActionInvocation.java:245) at 
> > com.opensymphony.xwork2.interceptor.AliasInterceptor.intercept
> > (AliasInterceptor.java:193) at 
> > com.opensymphony.xwork2.DefaultActionInvocation.invoke
> > (DefaultActionInvocation.java:245) at 
> > 
> 
com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor.intercept
> &

Re: action tag with tile result causing StackOverflowError-

2016-11-21 Thread Vishal Jhagadiawala
Hi Christoph,
Please find my response below. 

Here is my actionTileResult.jsp (it is for test)
actionResult.jsp
This is text :




- how should showcase.index.actionResult and showcase.index belong to each 
other?   showcase.index is a global layout, and there are dynamic pages based 
on action outcome eg . showcase.index.actionResult will be included in the 
global layout

- shouldn't showcase.index.actionResult set the body attribute?    currently to 
reproduce the issue, I have used title attribute, but we tile definition can be 
more specific based on need

- why is there an  tag in layout.jsp?  this is to include 
dynamic result based on outcome of the action logic. 


Regards,
Vishal

On Monday, 21 November 2016, 4:19, Christoph Nenning 
<christoph.nenn...@lex-com.net> wrote:
 

 Hi,


some questions about your code snippets:

- how does actionResult.jsp look?
- how should showcase.index.actionResult and showcase.index belong to each 
other?
- shouldn't showcase.index.actionResult set the body attribute?
- why is there an  tag in layout.jsp?


Regards,
Christoph



> From: Vishal Jhagadiawala <vish_...@yahoo.com.INVALID>
> To: Struts Users Mailing List <user@struts.apache.org>, 
> Date: 19.11.2016 20:55
> Subject: Re: action tag with tile result causing StackOverflowError-
> 
> Hi ,
> I also verified the exactly same error happens in struts 2.5.5 with 
> tiles 3.0.7.
> if we try to use action tag as below with tiles result it's goes in 
> infinite loop and throws it throws java.lang.StackOverflowError,
> 
> 
> Layout.jsp 
>         
>  Notice that this is a layout
> made in JSP         name="myTestAction" namespace="/tiles" 
executeResult="true"/>
> 
> - struts.xml              
> showcase.index.actionResult          
> showcase.index.actionResult result>          --tiles.xml
>                                
>          value="Action Result"/>
> 
>  Let me know if somebody faced same issue. 
> Regards,Vishal
> 
>    On Saturday, 19 November 2016, 10:28, Vishal Jhagadiawala 
> <vish_...@yahoo.com.INVALID> wrote:
> 
> 
>  Hi ,
> I have upgraded my struts application to version 2.3.30 and apache-
> tiles 2.2.2 and I am facing issue with s:action tag and tiles 
> result. it goes in recursive loop and throws StackOverflowError as 
below. 
> also I am able to reproduce this issue in showcase application, I 
> have outlined the tiles.xml , struts-tile.xml and layout.jsp as below. 
> it throws java.lang.StackOverflowError: null at 
> org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> (ApplicationHttpRequest.java:230)        at 
> org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> (ApplicationHttpRequest.java:230) at 
> org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> (ApplicationHttpRequest.java:230) at 
> org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> (ApplicationHttpRequest.java:230) .. (truncated) 
> .        at 
> com.opensymphony.xwork2.DefaultActionInvocation.invoke
> (DefaultActionInvocation.java:245) at 
> com.opensymphony.xwork2.interceptor.AliasInterceptor.intercept
> (AliasInterceptor.java:193) at 
> com.opensymphony.xwork2.DefaultActionInvocation.invoke
> (DefaultActionInvocation.java:245) at 
> 
com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor.intercept
> (ExceptionMappingInterceptor.java:189) at 
> com.opensymphony.xwork2.DefaultActionInvocation.invoke
> (DefaultActionInvocation.java:245) at 
> org.apache.struts2.impl.StrutsActionProxy.execute
> (StrutsActionProxy.java:54) at 
> org.apache.struts2.components.ActionComponent.executeAction
> (ActionComponent.java:288) at 
> org.apache.struts2.components.ActionComponent.end
> (ActionComponent.java:172) at 
> org.apache.struts2.views.jsp.ComponentTagSupport.doEndTag
> (ComponentTagSupport.java:42) at 
> 
org.apache.jsp.WEB_002dINF.tiles.layout_jsp._jspx_meth_s_005faction_005f0
> (layout_jsp.java:210) at 
> 
org.apache.jsp.WEB_002dINF.tiles.layout_jsp._jspService(layout_jsp.java:109)
> 
> Here is my usage, 
> Layout.jsp
>     Struts2 Showcase -  name="title"/>     name="header"/>     Notice 
> that this is a layout made in JSP          name="myTestAction" namespace="/tiles" executeResult="true" 
/>
> 
> tiles.xml
>                                           template="/WEB-INF/tiles/actionTileResult.jsp">         attribute name="title" value="Tiles Result from action"/>    
    
> struts-tiles.xml
>                     type="tiles">showcase.index             name="success" type="tiles">showcase.index        
>          name="myTestAction">             type="tiles">showcase.index.actionResult             name="success" type="tiles">showcase.index.actionResult    
>      
> actionTileResult.jsp
>     
> Action tile result  title> Notice that this is a  jsp
> 
> 
> Please let me know anybody faced similar issue and any solution to it.
> Regards,Vishal
> 
> 

This Email was scanned by Sophos Anti Virus


   

Re: action tag with tile result causing StackOverflowError-

2016-11-21 Thread Christoph Nenning
Hi,


some questions about your code snippets:

- how does actionResult.jsp look?
- how should showcase.index.actionResult and showcase.index belong to each 
other?
- shouldn't showcase.index.actionResult set the body attribute?
- why is there an  tag in layout.jsp?


Regards,
Christoph



> From: Vishal Jhagadiawala <vish_...@yahoo.com.INVALID>
> To: Struts Users Mailing List <user@struts.apache.org>, 
> Date: 19.11.2016 20:55
> Subject: Re: action tag with tile result causing StackOverflowError-
> 
> Hi ,
> I also verified the exactly same error happens in struts 2.5.5 with 
> tiles 3.0.7.
> if we try to use action tag as below with tiles result it's goes in 
> infinite loop and throws it throws java.lang.StackOverflowError,
> 
> 
> Layout.jsp 
> 
>  Notice that this is a layout
> made in JSP   name="myTestAction" namespace="/tiles" 
executeResult="true"/>
> 
> - struts.xml   
> showcase.index.actionResult   
> showcase.index.actionResult result>   --tiles.xml
> 
>  value="Action Result"/>
> 
>  Let me know if somebody faced same issue. 
> Regards,Vishal
> 
> On Saturday, 19 November 2016, 10:28, Vishal Jhagadiawala 
> <vish_...@yahoo.com.INVALID> wrote:
> 
> 
>  Hi ,
> I have upgraded my struts application to version 2.3.30 and apache-
> tiles 2.2.2 and I am facing issue with s:action tag and tiles 
> result. it goes in recursive loop and throws StackOverflowError as 
below. 
> also I am able to reproduce this issue in showcase application, I 
> have outlined the tiles.xml , struts-tile.xml and layout.jsp as below. 
> it throws java.lang.StackOverflowError: null at 
> org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> (ApplicationHttpRequest.java:230) at 
> org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> (ApplicationHttpRequest.java:230) at 
> org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> (ApplicationHttpRequest.java:230) at 
> org.apache.catalina.core.ApplicationHttpRequest.getAttribute
> (ApplicationHttpRequest.java:230) .. (truncated) 
> .at 
> com.opensymphony.xwork2.DefaultActionInvocation.invoke
> (DefaultActionInvocation.java:245) at 
> com.opensymphony.xwork2.interceptor.AliasInterceptor.intercept
> (AliasInterceptor.java:193) at 
> com.opensymphony.xwork2.DefaultActionInvocation.invoke
> (DefaultActionInvocation.java:245) at 
> 
com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor.intercept
> (ExceptionMappingInterceptor.java:189) at 
> com.opensymphony.xwork2.DefaultActionInvocation.invoke
> (DefaultActionInvocation.java:245) at 
> org.apache.struts2.impl.StrutsActionProxy.execute
> (StrutsActionProxy.java:54) at 
> org.apache.struts2.components.ActionComponent.executeAction
> (ActionComponent.java:288) at 
> org.apache.struts2.components.ActionComponent.end
> (ActionComponent.java:172) at 
> org.apache.struts2.views.jsp.ComponentTagSupport.doEndTag
> (ComponentTagSupport.java:42) at 
> 
org.apache.jsp.WEB_002dINF.tiles.layout_jsp._jspx_meth_s_005faction_005f0
> (layout_jsp.java:210) at 
> 
org.apache.jsp.WEB_002dINF.tiles.layout_jsp._jspService(layout_jsp.java:109)
> 
> Here is my usage, 
> Layout.jsp
> Struts2 Showcase -  name="title"/> name="header"/> Notice 
> that this is a layout made in JSP   name="myTestAction" namespace="/tiles" executeResult="true" 
/>
> 
> tiles.xml
> template="/WEB-INF/tiles/actionTileResult.jsp"> attribute name="title" value="Tiles Result from action"/>

> struts-tiles.xml
>  type="tiles">showcase.index name="success" type="tiles">showcase.index
>  name="myTestAction"> type="tiles">showcase.index.actionResult name="success" type="tiles">showcase.index.actionResult
>   
> actionTileResult.jsp
> 
> Action tile result  title> Notice that this is a  jsp
> 
> 
> Please let me know anybody faced similar issue and any solution to it.
> Regards,Vishal
> 
> 

This Email was scanned by Sophos Anti Virus


Re: action tag with tile result causing StackOverflowError-

2016-11-19 Thread Vishal Jhagadiawala
Hi ,
I also verified the exactly same error happens in struts 2.5.5 with tiles 3.0.7.
if we try to use action tag as below with tiles result it's goes in infinite 
loop and throws it throws java.lang.StackOverflowError,


Layout.jsp 
         Notice that this is a layout made in JSP          

- struts.xml               showcase.index.actionResult            showcase.index.actionResult       
    --tiles.xml
         
                       
        

 Let me know if somebody faced same issue. 
Regards,Vishal

On Saturday, 19 November 2016, 10:28, Vishal Jhagadiawala 
 wrote:
 

 Hi ,
I have upgraded my struts application to version 2.3.30 and apache-tiles 2.2.2 
and I am facing issue with s:action tag and tiles result. it goes in recursive 
loop and throws StackOverflowError as below. 
also I am able to reproduce this issue in showcase application, I have outlined 
the tiles.xml , struts-tile.xml and layout.jsp as below. 
it throws java.lang.StackOverflowError: null at 
org.apache.catalina.core.ApplicationHttpRequest.getAttribute(ApplicationHttpRequest.java:230)
         at 
org.apache.catalina.core.ApplicationHttpRequest.getAttribute(ApplicationHttpRequest.java:230)
 at 
org.apache.catalina.core.ApplicationHttpRequest.getAttribute(ApplicationHttpRequest.java:230)
 at 
org.apache.catalina.core.ApplicationHttpRequest.getAttribute(ApplicationHttpRequest.java:230)
 .. (truncated) .        at 
com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:245)
 at 
com.opensymphony.xwork2.interceptor.AliasInterceptor.intercept(AliasInterceptor.java:193)
 at 
com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:245)
 at 
com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor.intercept(ExceptionMappingInterceptor.java:189)
 at 
com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:245)
 at 
org.apache.struts2.impl.StrutsActionProxy.execute(StrutsActionProxy.java:54) at 
org.apache.struts2.components.ActionComponent.executeAction(ActionComponent.java:288)
 at org.apache.struts2.components.ActionComponent.end(ActionComponent.java:172) 
at 
org.apache.struts2.views.jsp.ComponentTagSupport.doEndTag(ComponentTagSupport.java:42)
 at 
org.apache.jsp.WEB_002dINF.tiles.layout_jsp._jspx_meth_s_005faction_005f0(layout_jsp.java:210)
 at org.apache.jsp.WEB_002dINF.tiles.layout_jsp._jspService(layout_jsp.java:109)

Here is my usage, 
Layout.jsp
    Struts2 Showcase -        
  Notice that this is a layout made in 
JSP          

tiles.xml
         
                                                  
struts-tiles.xml
                    showcase.index            showcase.index        
                    showcase.index.actionResult            showcase.index.actionResult        
  
actionTileResult.jsp
    
Action tile result  Notice that this is a  
jsp


Please let me know anybody faced similar issue and any solution to it.
Regards,Vishal