Struts TilesPlugin broken in jboss 3.2.x ?

2003-12-04 Thread Jens Viebig
Has anyone successfully deployed a struts application with TilesPlugin in jboss 3.2.x (I have 3.2.3) I'm getting java.lang.AbstractMethodError: org.apache.struts.tiles.TilesPlugin.init(Lorg/apache/struts/action/ActionSer vlet;Lorg/apache/struts/config/ApplicationConfig;) errors when i try to

Re: Struts TilesPlugin broken in jboss 3.2.x ?

2003-12-04 Thread Jens Viebig
and after that (a) everything is working fine. when I deploy (a) first and (b) second i get that error ! I think jboss is putting WEB-INF/lib somewhere in the global classpath so things get broken ! So it seems not to be a struts-related problem - Original Message - From: Jens Viebig [EMAIL

Re: How to avoid a separate .jsp page for body definition when us ing Templates?

2002-04-04 Thread Jens Viebig
You don't need tiles for this issue Just use direct='true' in your template tag. template:insert template='/templates/template.jsp' template:put name='menu' content='/menu.jsp'/ template:put name='content' direct='true' body h1Your body goes here/h1 /body /template:put