Re: Bug EXTVAL-130?

2012-12-05 Thread Gerhard Petracek
hi howard, please ensure that you are using the current snapshot from [1]. if you still have issues, please provide a link to a simple demo. (maybe you are facing an issue which affects codi but which isn't an issue of codi itself.) regards, gerhard [1]

Re: Bug EXTVAL-130?

2012-12-05 Thread Gerhard Petracek
hi gerald, @ veto: ClassDeactivator is just for classes which are listed in config files of cdi, jsf,... (and the specs. don't provide a possibility to disable them). in your case you just need the std. ProcessAnnotatedType#veto provided by cdi itself. @ BeanValidation#modelValidation i wrote

Re: el issue with weld (was: Bug EXTVAL-130?)

2012-12-05 Thread Gerhard Petracek
hi gerald, @ el issue with weld: that sounds like a serious weld bug. extval is just using the std. jsf-api (in this case: javax.faces.application.Application#evaluateExpressionGet). brian leathem confirmed the weld-issue - maybe jozef can provide further details. regards, gerhard

Re: el issue with weld (was: Bug EXTVAL-130?)

2012-12-05 Thread Gerhard Petracek
short addition: in this case it's actually Application#getELResolver#getValue (brian confirmed it for Application#evaluateExpressionGet which is needed by extval as well) regards, gerhard http://www.irian.at Your JSF/JavaEE powerhouse - JavaEE Consulting, Development and Courses in English and

Bug EXTVAL-130?

2012-12-04 Thread Gerald Turner
Hello, I'm in the process of converting a JSF2/CDI application from Seam3 to MyFaces ExtCDI/CODI. The application had been using MyFaces ExtVal-BV so that JSR-303 cross-field validation would work in the front-end. Simply replacing Seam3 with CODI evoked the following stacktrace during the first

Re: Bug EXTVAL-130?

2012-12-04 Thread Howard W. Smith, Jr.
I can confirm the same about CODI @Advanced not working in/with JSF @FacesConverter. My workaround (in a TomEE/CDI/MyFaces-CODI project) was to only add the @FacesConverter to JSF @RequestScoped managed beans, and they are working great in/with TomEE 1.5.1 SNAPSHOT. I have been told that CODI

Re: Bug EXTVAL-130?

2012-12-04 Thread Gerhard Petracek
hi gerald, @codi + seam yes - that's possible. it depends on what you are using from both. e.g. in case of the jsf-module of codi + seam-faces you have to veto one of the producers for the FacesContext. @ No CreationalContext registered for EL evaluation, it is likely that the the expression

Re: Bug EXTVAL-130?

2012-12-04 Thread Gerald Turner
Hi Gerhard, thanks for the response! Gerhard Petracek gerhard.petra...@gmail.com writes: @codi + seam yes - that's possible. it depends on what you are using from both. e.g. in case of the jsf-module of codi + seam-faces you have to veto one of the producers for the FacesContext. Exactly,

Re: Bug EXTVAL-130?

2012-12-04 Thread Gerald Turner
Howard W. Smith, Jr. smithh032...@gmail.com writes: I can confirm the same about CODI @Advanced not working in/with JSF @FacesConverter. My workaround (in a TomEE/CDI/MyFaces-CODI project) was to only add the @FacesConverter to JSF @RequestScoped managed beans, and they are working great

Re: Bug EXTVAL-130?

2012-12-04 Thread Howard W. Smith, Jr.
I love and use forClass= Please take a look at [1] below, when you get a chance to see all the chatter/discussion I had related to this topic. Sometime after this topic, I tried 'again' to use @Advanced and still didn't work. That is why I went with JSF @RequestScopedBeans that contain 'only'