Re: Tiles with Struts 2.1.5

2009-01-07 Thread Wendy Smoak
On Wed, Jan 7, 2009 at 8:38 AM, Ercan Kayaonu wrote: > I'm using Struts 2.1.5 with convention plugin. I'm in the learning process > and trying several things (action, rule annotations, hibernate etc). Since we're on the user list, be aware that Struts 2.1.5 is not an official release. It was a

Re: Tiles with Struts 2.1.5

2009-01-07 Thread Musachy Barroso
btw this is not related to tiles, it all applies to any plugin that defines results. musachy On Wed, Jan 7, 2009 at 12:23 PM, Musachy Barroso wrote: > The "value" attribute needs to match the name of a package that is > defined somewhere, if you do this: > > > > make sure that your package is l

Re: Tiles with Struts 2.1.5

2009-01-07 Thread Musachy Barroso
The "value" attribute needs to match the name of a package that is defined somewhere, if you do this: make sure that your package is like ... musachy On Wed, Jan 7, 2009 at 12:17 PM, Ercan Kayaonu wrote: > Hi, > Sorry for disturbing you guys this much. Be sure that i first google to > solve

Re: Tiles with Struts 2.1.5

2009-01-07 Thread Antonio
2009/1/7 Ercan Kayaonu : > Can someone advice a tutorial > on tiles and struts2 (step by step). Heh, Tiles and Struts 2 seem to be two isolated worlds. The strangest thing is that a lot of people are using this pair, but no one is contributing. If you *really* want them to work well together, stop

Re: Tiles with Struts 2.1.5

2009-01-07 Thread Ercan Kayaonu
Hi, Sorry for disturbing you guys this much. Be sure that i first google to solve the problem and read related parts of the documentation. But unfortunately some of them are very concise. Anyways. I tried both and but I got this error: Unable to locate parent package [actions] - [unknown

RE: Tiles with Struts 2.1.5

2009-01-07 Thread Biesbrock, Kevin
Sent: Wednesday, January 07, 2009 11:30 AM To: Struts Users Mailing List Subject: Re: Tiles with Struts 2.1.5 There's commons-digester-1.8.jar under struts 2.1.5 lib files. you also need commons-beanutils-1.7.0.jar. The location for 2.1.5 is http://people.apache.org/builds/struts/2.1.5/ On Wed, J

Re: Tiles with Struts 2.1.5

2009-01-07 Thread Musachy Barroso
To use a result, the action needs to be in the package that defines the result, or in a package that extends the package where the result is defined. There are several ways to fix this, in this case you can just set the parent package of the action, to your package: @ParentPackage("admin") or ch

Re: Tiles with Struts 2.1.5

2009-01-07 Thread Ercan Kayaonu
[mailto:musa...@gmail.com] > Sent: Wednesday, January 07, 2009 10:43 AM > To: Struts Users Mailing List > Subject: Re: Tiles with Struts 2.1.5 > > You are missing dependencies, in this case Commons Digester > (http://commons.apache.org/digester/) > > musachy > > On Wed, Ja

Re: Tiles with Struts 2.1.5

2009-01-07 Thread Ercan Kayaonu
Thank you Musachy, That solved my problem, but I got this error, which might be very familiar for most of you: The Result type [tiles] which is defined in the Result annotation on the class [class actions.admin.LoginAction] or determined by the file extension or is the default result type for the

RE: Tiles with Struts 2.1.5

2009-01-07 Thread Biesbrock, Kevin
so [mailto:musa...@gmail.com] Sent: Wednesday, January 07, 2009 10:43 AM To: Struts Users Mailing List Subject: Re: Tiles with Struts 2.1.5 You are missing dependencies, in this case Commons Digester (http://commons.apache.org/digester/) musachy On Wed, Jan 7, 2009 at 10:38 AM, Ercan Kayaonu wro

Re: Tiles with Struts 2.1.5

2009-01-07 Thread Musachy Barroso
You are missing dependencies, in this case Commons Digester (http://commons.apache.org/digester/) musachy On Wed, Jan 7, 2009 at 10:38 AM, Ercan Kayaonu wrote: > Hi, > I'm using Struts 2.1.5 with convention plugin. I'm in the learning process > and trying several things (action, rule annotations

Re: Tiles with Struts 1.3.8

2007-07-20 Thread Paul Benedict
If you aren't using modules, get rid of the moduleAware property. Phillip Blevins wrote: Greetings!, I am trying to get tiles to work with struts 1.3.8. Specificly I would like my action mapping to foward to a tile definition. I have a tiles definition of I'm

Re: Tiles with Struts-2

2007-02-19 Thread Brian Bruns
I had a similar problem...I believe I resolved it by putting the tiles servlet (which I'm not using) in the web.xml. Something about tiles needing to be configured before use. Maybe someone else can expound on this? IIRC there was another way to make this happen too. Brian 2007/2/19, Ray Clou

Re: tiles with struts 1.2.9

2006-09-05 Thread Wendy Smoak
On 9/5/06, Monkeyden <[EMAIL PROTECTED]> wrote: http://struts.apache.org/1.x/struts-tiles/installation.html Now I see the reference to 'tiles.jar'. That documentation is for Struts 1.3, in which we've split the distribution into several jar files: struts-core, struts-tiles, struts-el, etc. F

Re: tiles with struts 1.2.9

2006-09-05 Thread Monkeyden
Add an init-param to the ActionServlet Add the plug-in the struts-config.xml Add the taglib directive to the JSP pages using tiles. http://struts.apache.org/1.x/struts-tiles/installation.html On 9/5/06, Darren Hall <[EMAIL PROTECTED]> wrote: Ignore that last message. I see the tiles package i

RE: tiles with struts 1.2.9

2006-09-05 Thread Darren Hall
Ignore that last message. I see the tiles package in the 1.2.9 API. The tld file still needs to be included, though, I take it - and I need a tiles-config.xml file. Is there anything else I'm missing to get tiles running on 1.2.9? Thanks, Darren -Original Message- From: Dar

RE: Tiles with Struts

2005-12-22 Thread Buntin, Seth - KATE
Thanks Antonio. That was it. I just found that off a web site and I guess the site was somewhat old. Seth Buntin Web Resources Coordinator Kentucky Academy of Technology Education Murray State University

Re: Tiles with Struts

2005-12-22 Thread brenmcguire
> > >DoFirst.java: > >package edu.msu.kate.struts.action; > > > >import org.apache.struts.action.*; > >import javax.servlet.http.*; > > > >public class DoFirst extends Action { > >public ActionForward perform( > >ActionMapping aMapping, > >

Re: Tiles with Struts

2005-12-22 Thread Buntin, Seth - KATE
My web.xml file has: index.jsp index.jsp: <%@ taglib uri="/tags/struts-logic" prefix="logic" %> struts-config.xml: DoFirst.java: package edu.msu.kate.struts.action; import org.apache.struts.action.*; import

Re: Tiles with Struts

2005-12-22 Thread Greg Reddin
On Dec 22, 2005, at 8:59 AM, Buntin, Seth - KATE wrote: I am having an issue getting Tiles to work. I am totally new to Struts so bear with me. The issue is I don't see anything. I got to home.do (which is set up as what the user will see first) and it is totally blank and the source is to

Re: Tiles with Struts

2005-12-22 Thread brenmcguire
How about your "home.do" action mapping and the connected action? Maybe you return a wrong ActionForward... Ciao Antonio Petrelli Buntin, Seth - KATE ha scritto: >I am having an issue getting Tiles to work. I am totally new to Struts >so bear with me. The issue is I don't see anything. I got t