Re: problems using tiles with struts 2

2009-05-14 Thread manub
gt; http://www.manning.com/wannemacher > > > - > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > For additional commands, e-mail: user-h...@struts.apache.org > > > Using Struts 2.1.6 and

Re: problems using tiles with struts 2

2009-05-12 Thread Wes Wannemacher
On Tuesday 12 May 2009 11:54:35 am Lukasz Lenart wrote: > 2009/5/12 manub : > > Yes, I'm behind a proxy. How to disable that functionality? Thanks in > > advance. > > Sorry, no idea. It's related to Digester itself, try to look in that > direction. > > If I remember correctly, this problem is rela

Re: problems using tiles with struts 2

2009-05-12 Thread Antonio Petrelli
2009/5/12 manub : > I got a strange error when I try to develop a simple blank Struts2 > Application with Tiles support. The strangest thing is that this > application, without any modify, works on another PC. Versions of Struts and Tiles, please. Antonio

Re: problems using tiles with struts 2

2009-05-12 Thread Lukasz Lenart
2009/5/12 manub : > Yes, I'm behind a proxy. How to disable that functionality? Thanks in > advance. Sorry, no idea. It's related to Digester itself, try to look in that direction. Regards -- Lukasz http://www.lenart.org.pl/ -

Re: problems using tiles with struts 2

2009-05-12 Thread manub
> > > Yes, I'm behind a proxy. How to disable that functionality? Thanks in advance. -- View this message in context: http://www.nabble.com/problems-using-tiles-with-struts-2-tp23499528p23500811.html Sent from the Struts - User mailing list archive at Nabble.com.

Re: problems using tiles with struts 2

2009-05-12 Thread Lukasz Lenart
2009/5/12 manub : > Anyone can suggest me how to handle this? XML parser is trying to connect over the Internet to validate XML base on DTD, do you have proxy in use? It was possible to disable such function and to use local DTD copy instead. Regards -- Lukasz http://www.lenart.org.pl/ ---

problems using tiles with struts 2

2009-05-12 Thread manub
blems-using-tiles-with-struts-2-tp23499528p23499528.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: u

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

Tiles with Struts 2.1.5

2009-01-07 Thread Ercan Kayaonu
Hi, 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). Everything was working ok until today. i started using Tiles. I copied struts2-tiles-plugin-2.1.5.jar tiles-api-2.0.6.jar tiles-core-2.0.6.jar tiles-

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

Tiles with Struts 1.3.8

2007-07-20 Thread Phillip Blevins
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 using the struts blank appication as a base install inside of struts config i uncomment th

Re: issues with tiles with struts 2

2007-07-09 Thread AntonyJB
arate directory for web. > > (In a pdf book from InfoQ, the author says that, the result type of an > action should be stated as "tiles". i tried that, but i got the following > error - > There is no result type defined for type 'tiles') > > Please help. >

Re: issues with tiles with struts 2

2007-07-08 Thread Chris Pratt
Very true, I should have said or, not also. (*Chris*) On 7/8/07, Roberto Nunnari <[EMAIL PROTECTED]> wrote: Chris Pratt wrote: > Also, make sure you define the tiles result-type in your struts.xml. if your package extends tiles-default, you don't need that. -- Robi > > > > > > >

Re: issues with tiles with struts 2

2007-07-08 Thread Roberto Nunnari
Chris Pratt wrote: Also, make sure you define the tiles result-type in your struts.xml. if your package extends tiles-default, you don't need that. -- Robi (*Chris*) On 7/7/07, Roberto Nunnari <[EMAIL PROTECTED]> wrote: Hello shahab. make sure you have all the tiles librari

Re: issues with tiles with struts 2

2007-07-07 Thread Chris Pratt
Also, make sure you define the tiles result-type in your struts.xml. (*Chris*) On 7/7/07, Roberto Nunnari <[EMAIL PROTECTED]> wrote: Hello shahab. make sure you have all the tiles libraries: struts2-tiles-plugin-2.0.8.jar ties-api-2.0.3.jar tiles-core-2.0.3.jar tiles-jsp-2.0.3.jar

Re: issues with tiles with struts 2

2007-07-07 Thread Roberto Nunnari
Hello shahab. make sure you have all the tiles libraries: struts2-tiles-plugin-2.0.8.jar ties-api-2.0.3.jar tiles-core-2.0.3.jar tiles-jsp-2.0.3.jar then make sure your action's package extends tiles-default hope that helps. -- Robi shahab wrote: Hi: I need some help with using tiles 2 wit

issues with tiles with struts 2

2007-07-07 Thread shahab
thor says that, the result type of an action should be stated as "tiles". i tried that, but i got the following error - There is no result type defined for type 'tiles') Please help. -- View this message in context: http://www.nabble.com/issues-with-tiles-with-struts-2-tf4041

RE: Can SomeOne Help?? NullPointerException in TilesException using Tiles with Struts 2

2007-03-08 Thread Avinash Wable
Thank you very much Dave. I never looked at it. Copied from older version and changed only DTD. Thanks a lot!! DISCLAIMER == This e-mail may contain privileged and confidential information which is the property of Persistent Systems Pvt. Ltd. It is intended only for the use of the indiv

Re: Can SomeOne Help?? NullPointerException in TilesException using Tiles with Struts 2

2007-03-08 Thread Dave Newton
--- Avinash Wable wrote: > I already posted this in "NullPointerException in > TilesException using Tiles with Struts 2" thread. Sorry it took me so long; I've been training a vole to program Java so I can send it to work in my place. > Does anyone got the same problem w

Can SomeOne Help?? NullPointerException in TilesException using Tiles with Struts 2

2007-03-08 Thread Avinash Wable
I already posted this in "NullPointerException in TilesException using Tiles with Struts 2" thread. Does anyone got the same problem when using Tiles 2 with Struts 2 My jsps are simple (don't use tiles tags). I am using tiles just as a forward result type. You can look at my conf

RE: NullPointerException in TilesException using Tiles with Struts 2

2007-03-07 Thread Avinash Wable
Actually I am using same version of tiles: 2.0 as you said i.e for tiles.xml: http://struts.apache.org/dtds/tiles-config_2_0.dtd";> My jsps are simple and don't use tiles tags. I am using tiles just as a forward result type. You can look at my configuration given below 1. tiles.xml--

Re: NullPointerException in TilesException using Tiles with Struts 2

2007-03-06 Thread Aram Mkhitaryan
Hi, Yesterday I got the same problem, and here is the solution: Use new version of tiles: 2.0 for tiles.xml: http://struts.apache.org/dtds/tiles-config_2_0.dtd";> for jsps: <%@ taglib uri="http://tiles.apache.org/tags-tiles"; prefix="tiles" %> tags are a little bit changed but it's easy to upg

NullPointerException in TilesException using Tiles with Struts 2

2007-03-06 Thread Avinash Wable
I am trying to use Tiles with Struts 2. I have configured my application as follows When I fire http://localhost:8080/SampleStruts2/login/Login.action; I get following error 20:11:40,827 ERROR [BasicTilesContainer] Error rendering tile java.lang.NullPointerException at

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

Tiles with Struts-2

2007-02-19 Thread Ray Clough
I have been unable to get Tiles to work with Struts-2 (v2.05). When I add the Tiles-plugin and Tiles-core and Tiles-api jars to WEB-INF/lib I start getting ClassNotFoundExceptions about classes from Spring. When I add the Spring jars I start getting exceptions for codehaus/PlexusContainer. P

Re: [S2] configuring Tiles with Struts 2

2006-11-28 Thread quinmeda1
80/struts2tiles/searchByZip.do Thanks -- View this message in context: http://www.nabble.com/-S2--configuring-Tiles-with-Struts-2-tf2665690.html#a7585531 Sent from the Struts - User mailing list archive at Nabble.com. - To unsu

Re: [S2] configuring Tiles with Struts 2

2006-11-28 Thread Craig McClanahan
On 11/28/06, quinmeda1 <[EMAIL PROTECTED]> wrote: A little more info The following exception is thrown when trying to start the app with the listener: 2006-11-28 10:44:15 StandardContext[/myapp]Exception sending context initialized event to listener instance of class org.apache.struts2.til

Re: [S2] configuring Tiles with Struts 2

2006-11-28 Thread quinmeda1
xt: http://www.nabble.com/-S2--configuring-Tiles-with-Struts-2-tf2665690.html#a7584320 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [S2] configuring Tiles with Struts 2

2006-11-28 Thread David H. DeWolf
Can you find the entire stack trace? quinmeda1 wrote: I'm definitely using 2.0.1. Found I had some extra tiles-core* JARs lying around in lib. I cleared those out. Now the listener is working, but I'm back to getting java.lang.NoClassDefFoundError: org/apache/tiles/TilesContext when it tries

Re: [S2] configuring Tiles with Struts 2

2006-11-28 Thread quinmeda1
g. -- View this message in context: http://www.nabble.com/-S2--configuring-Tiles-with-Struts-2-tf2665690.html#a7584075 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL

Re: [S2] configuring Tiles with Struts 2

2006-11-28 Thread David H. DeWolf
Very odd, the 2.0.1 tag (http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_0_1/plugins/tiles/) has no reference to the TilesContainer, and I thought it was released/tagged before it was introduced. Are you sure you're using struts 2.0.1 and not struts 2.0.2-SNAPSHOT? David quinme

RE: [S2] configuring Tiles with Struts 2

2006-11-28 Thread quinmeda1
T.jar. Going to try hunting down TilesContainer in other JARs. If I get stuck, I'll try to throw together a sample app today to demonstrate the issue. -- View this message in context: http://www.nabble.com/-S2--configuring-Tiles-with-Struts-2-tf2665690.html#a7582882 Sent from the Str

RE: [S2] configuring Tiles with Struts 2

2006-11-28 Thread Dave Newton
FWIW I'm running 2.0.1 with Tiles without difficulty. I don't have the machine in front of me; I'm not sure which Tiles it's using, though; I can post tomorrow. Dave From: David H. DeWolf [mailto:[EMAIL PROTECTED] On Behalf Of David H. > I'm going to have to do some digging around to see if I ca

Re: [S2] configuring Tiles with Struts 2

2006-11-28 Thread David H. DeWolf
Sorry guys, I've been traveling with the family for thanksgiving. . . I'm going to have to do some digging around to see if I can replicate your problem. I don't currently have an app using 2.0.1 (using the trunk revision until 2.0.2 is released - this week I hope) If you can add a ticket to

Re: [S2] configuring Tiles with Struts 2

2006-11-27 Thread Sébastien LABEY
Hi Kim, No, sorry, no resolution to this :-( I'm waiting for an answer. I hope David will have a solution soon... If ever you find something to help, could you post it? Thanks. Sebastien On 11/27/06, Kim <[EMAIL PROTECTED]> wrote: > > On 11/22/06, Sébastien LABEY gmail.com> wrote: > > > > If

Re: [S2] configuring Tiles with Struts 2

2006-11-27 Thread Kim
> > On 11/22/06, Sébastien LABEY gmail.com> wrote: > > > > If I don't register the Tiles listener in the web.xml, Tomcat starts, my > > webapp works, but when I ask for a page build with tiles, I have a > > ClassDefNotFoundException on the TilesContext class... > > > > Maybe this can help you to

Re: [S2] configuring Tiles with Struts 2

2006-11-22 Thread Sébastien LABEY
> > > > > > > > org.apache.struts2.views.tiles.TilesResult.doExecute ( > > TilesResult.java:116) > > > > > > org.apache.struts2.dispatcher.StrutsResultSupport.execute( > &g

Re: [S2] configuring Tiles with Struts 2

2006-11-22 Thread Sébastien LABEY
ult( > DefaultActionInvocation.java :309) > > > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke( > DefaultActionInvocation.java:218) > > > > > > > com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor.doIntercept > (DefaultWorkflow

Re: [S2] configuring Tiles with Struts 2

2006-11-22 Thread Sébastien LABEY
gt; com.opensymphony.xwork2.DefaultActionInvocation.executeResult( DefaultActionInvocation.java:309) > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke( DefaultActionInvocation.java:218) > > > com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor.doIntercept (DefaultWo

Re: [S2] configuring Tiles with Struts 2

2006-11-21 Thread David H. DeWolf
invoke(DefaultActionInvocation.java:218) com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor.doIntercept(DefaultWorkflowInterceptor.java:177) ... Could someone tell me what jars I exactly need to use tiles with struts 2 and the files that I need to configure and how? Thanks very much in advance. Sebastien --

[S2] configuring Tiles with Struts 2

2006-11-19 Thread Sébastien LABEY
.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor.doIntercept(DefaultWorkflowInterceptor.java:177) ... Could someone tell me what jars I exactly need to use tiles with struts 2 and the files that I need to configure and how? Thanks very much in advance. Sebastien

Re: configuring tiles with struts 1.2.9

2006-09-07 Thread Frank W. Zammetti
Thanks for the help. -Original Message- From: Darren Hall [mailto:[EMAIL PROTECTED] Sent: Thursday, September 07, 2006 2:54 PM To: 'Struts Users Mailing List' Subject: RE: configuring tiles with struts 1.2.9 Do you have your regular Tomcat log entries for this webapp'

RE: configuring tiles with struts 1.2.9

2006-09-07 Thread Darren Hall
Friedman [mailto:[EMAIL PROTECTED] Sent: Thursday, September 07, 2006 2:38 PM To: Struts Users Mailing List Subject: RE: configuring tiles with struts 1.2.9 Since everything "looks" in order then you are missing something key in a log file. Do you have your regular Tomcat log entries fo

RE: configuring tiles with struts 1.2.9

2006-09-07 Thread Darren Hall
CTED] Sent: Thursday, September 07, 2006 2:38 PM To: Struts Users Mailing List Subject: RE: configuring tiles with struts 1.2.9 Since everything "looks" in order then you are missing something key in a log file. Do you have your regular Tomcat log entries for this webapp's start

RE: configuring tiles with struts 1.2.9

2006-09-07 Thread David Friedman
Since everything "looks" in order then you are missing something key in a log file. Do you have your regular Tomcat log entries for this webapp's startup as well a any error logs. Can you zero them out then start Tomcat and post them to us? Regards, David --

RE: configuring tiles with struts 1.2.9

2006-09-07 Thread Darren Hall
defined a layout called "home.page". All jsp pages related to the layout have been created and reside where they are supposed to. In my struts-config.xml file, I've created an action mapping as follows: mailto:[EMAIL PROTECTED] Sent: Thursday, September 07, 2006 10:50 AM

Re: configuring tiles with struts 1.2.9

2006-09-07 Thread Antonio Petrelli
Darren Hall ha scritto: Isn't the ".do" extension just a placeholder for ".jsp" or some other extension that is mapped in your struts-congif.xml? In fact you configure it in web.xml (when you configure the ActionServlet), and anyway the welcome file is treated as a different entity. I real

RE: configuring tiles with struts 1.2.9

2006-09-07 Thread Darren Hall
ig.xml and also associate action classes with my tiles. I'll try your " jsp page with a tag" idea and see how that goes. Thanks. -Original Message- From: Antonio Petrelli [mailto:[EMAIL PROTECTED] Sent: Thursday, September 07, 2006 10:09 AM To: Struts Users Mailing

Re: configuring tiles with struts 1.2.9

2006-09-07 Thread Antonio Petrelli
Darren Hall ha scritto: I think that the URL is wrong :-) If you configured your webapp in as the ROOT webapp, then you can access that action at: http://localhost/flc.do This application is not the root application, it is the "flc" application, located at the path "/flc" (under the web

RE: configuring tiles with struts 1.2.9

2006-09-07 Thread Darren Hall
Antonio, Thank you for your reply. > And you forgoto the "processorClass" attribute in tag in > struts-config.xml: > > processorClass="org.apache.struts.tiles.TilesRequestProcessor"/> I've update my controller element in my struts-config to appear as above. > I think that the URL is wrong :-

Re: configuring tiles with struts 1.2.9

2006-09-07 Thread Antonio Petrelli
Darren Hall ha scritto: When attempt to view http://localhost/flc through a browser I get a 404 error. What did I do wrong?? I think that the URL is wrong :-) If you configured your webapp in as the ROOT webapp, then you can access that action at: http://localhost/flc.do (I supposed that

configuring tiles with struts 1.2.9

2006-09-06 Thread Darren Hall
Hello all, I am somewhat new to struts and I'm attempting to create an application that uses tiles. I obviously have something configured incorrectly because I get a 404 error when attempting to display my page. Here's what I've done so far: 1) Create a template jsp page called site

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
nt: Tuesday, September 05, 2006 11:43 AM To: 'user@struts.apache.org' Subject: tiles with struts 1.2.9 Quick question, I'm using struts 1.2.9 and I'm attempting to configure tiles. In some online documentation files I've found, it outlines how tiles.jar should be included

RE: tiles with struts 1.2.9

2006-09-05 Thread Darren Hall
From: Darren Hall [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 05, 2006 11:43 AM To: 'user@struts.apache.org' Subject: tiles with struts 1.2.9 Quick question, I'm using struts 1.2.9 and I'm attempting to configure tiles. In some online documentation files I&

tiles with struts 1.2.9

2006-09-05 Thread Darren Hall
Quick question, I'm using struts 1.2.9 and I'm attempting to configure tiles. In some online documentation files I've found, it outlines how tiles.jar should be included with my struts deployment, however I don't see tiles.jar anywhere in my struts related files. Are the tiles objects compiled

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

Tiles with Struts

2005-12-22 Thread Buntin, Seth - KATE
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 totally empty. I think I have everything in my configuration co

Re: How to write Tiles with Struts?

2004-10-13 Thread Arnaud Vandyck
Sat, 9 Oct 2004 22:37:02 +0800, PC Leung <[EMAIL PROTECTED]> wrote: > It is my 1st trial of tiles. http://www.oracle.com/technology/oramag/oracle/04-may/o34dev_struts.html (this one does not work no more as I'm writing this mail -Err500- but maybe it'll be online again later) http://www.onjava

How to write Tiles with Struts?

2004-10-09 Thread PC Leung
It is my 1st trial of tiles. Referring the tiles documentation, my index.jsp like this. <%@ page language="java" %> <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %> It has header, menu bar, content and footer. It is a classic layout. In the content jsp, it has URL link. It points to