0
votes
1answer
63 views

JSF 2.0 - 2nd validator called even though 1st validator fails

I'm using WAS 8.0.0.5's MyFaces 2.0.4 AND CDI (can't replace WAS 8's version of JSF 2.0 without losing CDI). I have 2 custom validators registered to a component. The first one does a multi-field ...
1
vote
0answers
141 views

Can MyFaces + CDI be used on WebLogic 12c?

I've been trying to get this setup running for a couple of days now but still no luck. Here's the test application i've been using: @Named @RequestScoped public class Test { private String test ...
1
vote
1answer
141 views

@ViewAccessScoped not getting selected row for first time

I am using JSF 2.0 and I have a datatable which gets populated using lazy load.Scope of the page is @ViewAccessScoped (MyFaces CODI) as I am using CDI/Spring. When datatable is loaded in jsf page and ...
3
votes
2answers
663 views

“could not initialize proxy - no session” with an open session available

I work with JSF 2 (MyFaces 2.1.7 and Primefaces 3.4.2), CDI (Weld-servlet 1.1.10), JPA 2 (Hibernate 4.1.7) and Lombok 0.11.2. All this runs on Tomcat 6 and 7. I use the OpenSessionInView pattern, ...
0
votes
1answer
222 views

ViewMapListener JSF not being called

I'm trying to port the JSF @ViewScoped annotation to CDI. The reason is more educational rather than based on need. I chose this particular scope mainly due to the lack of a better concrete example of ...
0
votes
0answers
120 views

Does CDI @Inject in FacesConverter with CODI's @Advanced work with AJAX requests?

We use FacesConverters and annotate them with CODI's @Advanced annotation in order to be able to use CDI injection. This works with normal requests. But on AJAX requests the injected CDI beans are ...
2
votes
2answers
1k views

Howto let Primefaces work with @ConversationScoped Beans?

I build a short page with JSF-Compnents which displays and increments a value from a @ConversationScoped Bean. This page is able to end the Conversation and is getting a new Bean after ending the old ...
0
votes
1answer
334 views

Conversation Scope in JSF 2.0

I am trying to implement conversation scope in backing bean of JSF for our application. At first, I am trying to use MyFaces Orchestra. It seems to work well. However, I am concerning the case when ...
9
votes
3answers
4k views

CDI Injection into a FacesConverter

From just a few searches, this seems like a problem that has been around for a while. I have written a FacesConverter that looks like the following. The object Category is a JPA entity and ...
0
votes
2answers
805 views

Glassfish 3.1.1 CDI Classloader delegate false

My main problem is, that i want to use myfaces jsf implementation and because of that, i have to use delegate=false in glassfish-web.xml This ends up in loading classes from my application first and ...
0
votes
1answer
930 views

Apache MyFaces CODI PageBean: “Argument bean must not be null”

I'm currently experimenting a little with Apache MyFaces CODI. I managed to create a simple working Typesafe-Navigation using @Page and an action Method which returns a Class. However, when I'm ...