• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Tiles + action mapping

 
Ranch Hand
Posts: 155
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have done the same thing given in the below link.
http://www.theserverside.com/articles/article.tss?l=Tiles101
i created a tiles definition like
<definition name="@dviewPDS" extends="basic.layout">
<put name.../>
<put name=.../>
</definition>
and then action mapping of struts-config.xml goes like this
<action path="/ViewPDS" type="com.xx.actions.ViewPDs">
<forward name="success" path="@dviewPDS"/>
</action>
when i run the application it getting error like "Error 404 File not found:/@dviewPDS"
Plz help
 
vijaya bacina
Ranch Hand
Posts: 155
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I dont know why but i got the result when i add something like this in struts-config.xml
<plugin ****>
<set-property property="moduleAware" value="true"/>
</plugin>
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic