Re: ValueEncoder stopped working in 5.017

2008-12-10 Thread yosemite
Hello, I have resolved by rebuilding the project using Maven, probably was a classpath issue, no sure, glad it works now :-) Karel yosemite wrote: > > Hello, > the attached code worked fine in 5.011 but in 5.017 it blows up saying: > Render queue error in BeforeRenderTemplate[

ValueEncoder stopped working in 5.017

2008-12-04 Thread yosemite
Hello, the attached code worked fine in 5.011 but in 5.017 it blows up saying: Render queue error in BeforeRenderTemplate[Index:select]: Failure reading parameter 'encoder' of component Index:select: Could not find a coercion from type org.example.myapp.util.IntegerEncoder to type org.apache.tapes

Re: Tapestry5 and WebSphere6.1

2007-07-24 Thread yosemite
t be incorrect. Otherwise it's very strange. > > Renat > > On 23/07/07, yosemite <[EMAIL PROTECTED]> wrote: >> >> Hello, >> >> thanks. Security on WebSphere is turned off. I also tried to modify to >> was.policy with no success: >> >> grant

Re: Tapestry5 and WebSphere6.1

2007-07-23 Thread yosemite
eb.war\WEB-INF\classes\ and Tapestry cannot find it there? Karel Renat Zubairov wrote: > > Hi > > Is security on the WebSphere on? > > I had significant problems in WS 5 with Security ON because of > Javassist bug with classloaders. > > Renat > > On 2

Tapestry5 and WebSphere6.1

2007-07-20 Thread yosemite
Hello everybody, I tried to deploy a T5 application that works fine on Jetty and Tomcat onto WebSphere 6.1.0.3, and although the app deploys OK, TapestryFilter does not get invoked on url-patterrn /* so I get HTTP 404. SystemOut.log contains lines like ... [WebContainer : 1] DEBUG org.apache.t

Re: T5 - Changing Locale

2007-07-08 Thread yosemite
Your code worked for me, except I replaced ThreadLocale by PersistentLocale @Inject @Service("PersistentLocale") private PersistentLocale persistentLocaleService; then it works using e.g. persistentLocaleService.set(new Locale("fr")); Karel petros wrote: > > tapestry version 5.0.4 > > I ha