3
votes
0answers
126 views

OmniFaces ExtensionlessURLS, Different behavior between Mojarra and MyFaces

After uncovering some potential performance issues I was having with Mojarra, I recently switched my application to run on MyFaces 2.1.10 implementation from Mojarra 2.1.7. I have been using the ...
0
votes
0answers
90 views

Mojarra to MyFaces: NPE on EL expression

Long story short, I am experimenting on migrating to MyFaces on an application I am working on, when I noticed that the ViewState was over 18MB in size for a single page. I suspect this is because I ...
1
vote
1answer
208 views

What is the default for FACELETS_REFRESH_PERIOD?

In a JSF application, the parameter javax.faces.FACELETS_REFRESH_PERIOD can be used to enable/disable automatic reloading of XHTML files. I am currently researching the right configuration for ...
1
vote
1answer
98 views

Different implementaions of JSF specification [closed]

JSF is a specification included in the Java EE platform. There are different implementations of JSF from different vendors. I know Oracle provides Mojarra & Apache provides MyFaces. Are there any ...
0
votes
1answer
314 views

Apache TomEE: want to user Mojarra JSF in my project instead of built-in Apache MyFaces

I have a related question. I am migrating my project from Jboss to TomEE. I was using Mojarra JSF, and have been having problems trying to get everything working using MyFaces (view Encryption ...
0
votes
1answer
509 views

IndexOutOfBoundsException after switching from myfaces to mojarra

I was forced to switch from myfaces (2.1.7) to mojarra (2.1.7). After this I'm getting exceptions like this one below all over the place. I'm submitting a form, that gives me validation errors. This ...
0
votes
1answer
122 views

Apache MyFaces JSF2.0 bug: getStateHelper().put doesn't save anything?

MyFaces seems to be ignoring my call to getStateHelper.put() in this component: public class BFTableComponent extends UINamingContainer { ... private void setCurrentPageNumber(int ...
3
votes
1answer
3k views

Should PARTIAL_STATE_SAVING be set to false?

It seems that today (April 2012), both MyFaces and Mojarra's JSF 2.1 implementations have defects around partial state saving and that PARTIAL_STATE_SAVING should be set to false. Is this true?
3
votes
1answer
696 views

How to specify resource library version in JSF2?

Say I have a resources/ folder in the webroot. In it, I have a css/ folder and in it there is a theme.css file. But I want to set an Expires: header. Therefore I want to use a version for resource ...
1
vote
0answers
356 views

Tomahawk JSCookMenu does not trigger any actions after upgrading to JSF2

I've just migrated some medium-size web application from JSF 1.2/MyFaces to JSF 2.0/Mojarra. Apart from some custom components that I've implemented, everything seems to work, except for the ...
0
votes
1answer
2k views

Is this Primefaces bug or Mojarra/MyFaces bug

I cannot seems to be able to fire an event when I am within column of dataTable. Here is my simple demostration <h:form id="form"> <!--This section of p:tree here seems to be the reason ...
14
votes
6answers
15k views

mojarra or myfaces (jsf2.0 starter) [closed]

I am starting on JSF2.0 I used a tutorial as a reference but I have the following question: The tutorial used 2 libs only: jsf-api.jar, jsf-impl.jar (but also had JSTL) from Mojarra Project. I tried ...
0
votes
1answer
694 views

MyFaces to Mojarra migration issue

I'm migrating from MyFaces 1.2.6 to Mojarra 1.2. My application also uses Facelets, Tomahawk and Richfaces. Using MyFaces 1.2.6, it works without problems. Using Mojarra 1.2, I got some problems. It ...