• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Filter-mapping in web.xml error

 
Greenhorn
Posts: 24
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello, Im having an issue with my web.xml's filter-mapping configuration.
Im using sitemesh with struts2.
My initial jsp page is called, people submit their login info, the info is sent to an action class which forwards
to my Success.jsp page.

My problem lies within my web.xml's filter-mapping.
In my filter-mapping for sitemesh, under <dispatcher> i have Request and Forward. If I use both then
my Requests get decorated, but not my Forwards.
If I designate Forward, but not Request, then my requests show up, but not after an action class is executed and a Forward takes place.
ie:

<filter-mapping>
<filter-name>sitemesh</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>FORWARD</dispatcher>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>

VS

<filter-mapping>
<filter-name>sitemesh</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>FORWARD</dispatcher>
</filter-mapping>

I would like to use both FORWARD and REQUEST and have my requests AND forwards show up.
Everything I read online points toward this being the default if you specify both forward and request in <dispatcher>,
but mine seems to do only one or the other.

Any ideas?

Sincerely,

thebravedave


 
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
well the only things is, this is not servlet case. but how to decorating your correct template into your pages.
You can defines what mappers SiteMesh is going to apply while finding decorators for a particular page by editing WEB-INF/sitemesh.xml.
Mostly i attach "com.opensymphony.module.sitemesh.mapper.PageDecoratorMapper" into decorator-mapper so that i can see each template applied into my page by switching it using decorator&confirm parameter. Such as like this :

http://localhost:8080/MyDemo/login.htm?decorator=headerfooter&confirm=true
http://localhost:8080/MyDemo/login.htm?decorator=mainMenu&confirm=true


My web.xml using FORWARD only since I use frontController such as SpringMVC or Struts/Webwork action.

Rgds,

 
I am going to test your electrical conductivity with this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic