Re: request.getContextPath() and Tiles

2002-12-18 Thread Susan Bradeen
snip using the requestURI='request.getContextPath().concat(/showlist.do)' gets me closer, but still not quite there. I can get around this by hard coding myModule into the path, such as ... requestURI='request.getContextPath().concat(/myModule/showlist.do)' and the links are

Re: request.getContextPath() and Tiles

2002-12-17 Thread Cedric Dumoulin
What URL do you use to call the page or action in which you do the request.getContextPage() ? Cedric Susan Bradeen wrote: This is exactly what I am trying to do ... http://www.mail-archive.com/struts-user@jakarta.apache.org/msg37691.html I would like to set

Re: request.getContextPath() and Tiles

2002-12-17 Thread Susan Bradeen
Hi Cedric, Currently, I am using an html:link from a simple navigation bar JSP tile to get to this page. snip from navbar.jsp tdhtml:link page=/showlist.dobean:message key=main.list//html:link/td /snip which correctly becomes: snip tda href=/myWebApp/myModule/showlist.doView

Re: request.getContextPath() and Tiles

2002-12-17 Thread Susan Bradeen
Please see below ... On 12/17/2002 02:12:23 PM Susan Bradeen wrote: Hi Cedric, Currently, I am using an html:link from a simple navigation bar JSP tile to get to this page. snip from navbar.jsp tdhtml:link page=/showlist.dobean:message key=main.list//html:link/td /snip which