Turbine <[EMAIL PROTECTED]> wrote:
>Actually, lets be careful of that. I can't speak more about *why* >quite yet
>but will be able to in a couple of days hopefully.
Hummm, can't wait to hear this.
Okay, so here's an initial thought on the DynamicURI problem.
What if you add a ContextTool to WebMacro. They are
easy to configure via the property file. With the context
tool you can access it via $dynamic.setScreen("Blah") etc...
Here's what it'll look like:
public class DynamicURITool implements ContextTool
{
public Object init(Context context)
throws InvalidContextException
{
try {
WebContext wc = (WebContext) context;
DynamicURI uri = new DynamicURI(wc.get("data"));
return uri;
} catch (ClassCastException ce) {
throw new InvalidContextException(
"Something meaningful here: " + ce);
}
}
}
Just an initial thought....
dave
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Problems?: [EMAIL PROTECTED]