Re: [Resin-interest] HibernateValidator problems when running on Resin

2010-06-25 Thread Kaj Hejer
On 24. juni 2010, at 10.42, Kaj Hejer wrote: I'm working on an application where HibernateValidator does not work as excpected when running on Resin 4.0.7 but just fine when running on jetty 6.1.22 with mvn jetty:run. Hi! Some more info on this issue. When submiting a form where a

Re: [Resin-interest] HibernateValidator problems when running on Resin

2010-06-25 Thread Kaj Hejer
Hi! I think I have found the source of this problem and a solution :) org.hibernate.validator.engine.resolver.DefaultTraversableResolver.isReachable seems to be retruning false for all my properties. When implementing my own TraversableResolver with a isReachable always returning true and

Re: [Resin-interest] HibernateValidator problems when running on Resin

2010-06-25 Thread Scott Ferguson
Kaj Hejer wrote: Hi! I think I have found the source of this problem and a solution :) org.hibernate.validator.engine.resolver.DefaultTraversableResolver.isReachable seems to be retruning false for all my properties. When implementing my own TraversableResolver with a isReachable always

[Resin-interest] HibernateValidator problems when running on Resin

2010-06-24 Thread Kaj Hejer
Hi! I'm working on an application where HibernateValidator does not work as excpected when running on Resin 4.0.7 but just fine when running on jetty 6.1.22 with mvn jetty:run. We have annotated our domainobjects which we try to validate like f.x. @NotEmpty private String title; In