Edward Scanzano wrote:
> if I use parameters="currentVariable" the it comes
> through as a java.lang.String
> 
> if I use parameters="ognl:currentVariable" then I get
> an exception

you'll want to use the ognl: binding prefix, sorry.
As for the exception, probably the fastest solution is to
make your class serializable. Tapestry will "squeeze"
your object into a string for the url, and then "unsqueeze" it
later on. The fallback is a serializable adapter, so if your class is
serializable, you'll be set. The other solution is to create a custom
squeeze adaptor for your particular class (or set of classes).

Robert

> 
>  
> java.lang.IllegalArgumentException 
> Could not find an adaptor for class
> com.intaglio.client.api.impl.RepositoryImpl. 
> 
> Is there something I need to do something in the .page
> file?
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to