RE: Scriplet OK, JSTL OK - result different!!

2004-07-19 Thread Allistair Crossley
it didn't need to extends Properties, so I removed that extension, and it all started working. ADC > -Original Message- > From: Kris Schneider [mailto:[EMAIL PROTECTED] > Sent: 19 July 2004 16:46 > To: Tag Libraries Users List > Subject: RE: Scriplet OK, JSTL OK - result different!! >

RE: Scriplet OK, JSTL OK - result different!!

2004-07-19 Thread Kris Schneider
Which implements Map... Quoting Allistair Crossley <[EMAIL PROTECTED]>: > sorry i meant to let you all know .. my bean was extending > java.util.Properties > > AC > > > -Original Message- > > From: Karr, David [mailto:[EMAIL PROTECTED] > > Sent: 19 July 2004 16:33 > > To: Tag Libraries

RE: Scriplet OK, JSTL OK - result different!!

2004-07-19 Thread Allistair Crossley
sorry i meant to let you all know .. my bean was extending java.util.Properties AC > -Original Message- > From: Karr, David [mailto:[EMAIL PROTECTED] > Sent: 19 July 2004 16:33 > To: Tag Libraries Users List > Subject: RE: Scriplet OK, JSTL OK - result different!! > > > It might be inte

RE: Scriplet OK, JSTL OK - result different!!

2004-07-19 Thread Karr, David
It might be interesting to see what it does with the following: is empty node is empty node.title > -Original Message- > From: Allistair Crossley [mailto:[EMAIL PROTECTED] > > OK guys, this is an odd one. Have been using JSTL 1.1 for a > short while with no pr

Scriplet OK, JSTL OK - result different!!

2004-07-19 Thread Allistair Crossley
OK guys, this is an odd one. Have been using JSTL 1.1 for a short while with no problems until today. I am adding a request attribute called "node". The following is in my JSP... <% Node node = (Node) request.getAttribute("node"); out.println(node.getTitle()); %> is emp