Re: Basic Tiles question!

2004-02-05 Thread Mark Lowe
On 5 Feb 2004, at 06:47, Anand Stephen wrote: Any idea what would cause this exception? 500 Servlet Exception java.lang.NullPointerException at org.apache.struts.taglib.tiles.InsertTag.processName(InsertTag.java: 528) at org.apache.struts.taglib.tiles.InsertTag.createTagHand

RE: Basic Tiles question!

2004-02-04 Thread Michael McGrady
And, more "Hmm...", it looks like whatever is assumed to have a value other than null at line 528 of InsertTag.java, so that you can look at the source code to see what that might be. My guess is that there is some "name" object that is being passed into that "processName" method that is null.

RE: Basic Tiles question!

2004-02-04 Thread Andrew Hill
Hmm... Looks like you got yourself a null pointer mate! ;-) -Original Message- From: Anand Stephen [mailto:[EMAIL PROTECTED] Sent: Thursday, 5 February 2004 13:48 To: Struts-User Subject: Basic Tiles question! Any idea what would cause this exception? 500 Servlet Exception ja

Re: Basic Tiles question

2003-03-06 Thread Cedric Dumoulin
Hi, A tile attribute is only visible in its tile, not in its parent, not in the sub tiles. You should pass the attribute explicitly from the current tile to the inserted tile, or put the value in the request context: Cedric Steve Stair wrote: How do I get the contents of a variab