Hello all,

I just downloaded release 2.0.3 of Tapestry.
I just want to send some (perhaps irrelevant) feedback.

The problem that I was having with the JRockit JVM
(caused by some weird interaction with the 1.4 JDK compiler)
is no more, but this is a JRockit bug, it never was a Tapestry bug.

All the code that I had that followed this pattern:

*******************************************************
 public void directListener(String[] context, IRequestCycle cycle)
 {
  FooBar foobar= (FooBar ) cycle.getPage("FooBar ");
  foobar.setX(context[0]);
  cycle.setPage(foobar);
 }
*******************************************************

had to be changed to this:

*******************************************************
 public void directListener(IRequestCycle cycle)
 {
  String[] parameters = cycle.getServiceParameters();
  FooBar foobar= (FooBar ) cycle.getPage("FooBar ");
  foobar.setX(parameters[0]);
  cycle.setPage(foobar);
 }
*******************************************************

It was not clear to me from the release notes that this was
necessary, but perhaps I was doing things wrong all the time.


Oh ... and another thing I keep getting this message in the console:

log4j:ERROR No appenders could be found for category
(net.sf.tapestry.util.xml.AbstractDocumentParser).
log4j:ERROR Please initialize the log4j system properly.

It's not clear to me what is causing it, I will look into it tomorrow.

All in all I am a happy guy, a new release of Tapestry, a
new release of resin (BTW thanks Christian for showing the
Caucho folks the error of their ways), a stable release of
Eclipse just around the corner... this Java stuff is great,
Christmas almost every week.

Bye,

Luis Neves



_______________________________________________________________

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

_______________________________________________
Tapestry-developer mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/tapestry-developer

Reply via email to