Apache MyFaces provides an implementation of the JSF specification ("MyFaces Core"), and a set of add-on libraries that work on any implementation of the specification.

learn more… | top users | synonyms

0
votes
1answer
404 views

JSF - MyFaces - Stack Overflow Error

I am receiving a StackOverflowError while rendering a JSF page. It happens after loading a particular set of data (which happens successfully) and then doing anything else on the page. Note that the ...
0
votes
1answer
244 views

JSF 2.0; myfaces with JavaScript disabled; CommandButton has no class in rendered page

that's my first post here on stackoverflow. I'm searching around a while for solving my problem. In my JSF-Page I got a <h:commandButton> with styleClass set and on web.xml I disabled ...
0
votes
1answer
85 views

JSF2 converted and required on same input

I'm having an issue with converters and validators. I have an input text which takes a CSV list. I have a converter that turns it into a list of String. This all works fine. Although I want to make ...
1
vote
1answer
314 views

MyFaces - @PostConstruct on abstract class

I'm trying to execute PostConstruct annotated method that is in abstract class, public abstract class AbstractTest { @PostConstruct public void init() { } ...
0
votes
1answer
225 views

jsf rendered not evaluated?

I want the checkbox only to be rendered, if the label is not empty. <tr:panelCaptionGroup> ... <tr:selectBooleanCheckbox id="XField1" render="#{!empty ...
0
votes
1answer
295 views

Set id for inputText in iterator

My goal is to set the focus to a specific inputText. As there seems to be no way to do this automatically with an tr:inputText property, I try to use Javascript. For document.getElementById I need ...
1
vote
1answer
521 views

Links suddenly stop reacting after migrating MyFaces 1.2 to 2.1

I recently switched my Eclipse Indigo project from JSF 1.2 to JSF 2.1 (using MyFaces). Using Tomcat 7. Strange thing happens: I set up a project, and it works fine for some short time, and then ...
0
votes
0answers
116 views

Redirection in MyFaces + Trinidad when session expires and user interacts whith any element

using My Faces Trinidad I need to redirect to Login page if session has expired and user press any component of the form. I have a LoginFilter with the next method: public void ...
1
vote
2answers
2k views

Which jars do I need in order to avoid “NoClassDefFoundError: com/sun/facelets/tag/jsf/ComponentHandler”?

I'm trying to build a JavaServer Faces 2.0 project (using Apache Myfaces 2.0.2 + Tomcat 7.0.25 via Eclipse Indigo). All seems to be set, Tomcat starts ok, but when I try to open a web page I get the ...
0
votes
0answers
655 views

How can I update Websphere 7 to use EL2.2?

This is what I have done: Following this post from Lincoln Baxter I downloaded el-api-2.2.jar and el-impl-2.2.jar Then created isolated shard library and added them there. We are using Myfaces so in ...
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
2answers
1k views

Redirect after logout fails with java.lang.IllegalStateException: Cannot create a session after the response has been committed

I have a JSF2 application. I have a login bean which is session scoped and a logout bean which is view scoped. When I login I use redirect and it works fine. However the logout fails with redirect. If ...
2
votes
1answer
1k views

Best way to log in, log out, and store session attributes in JSF

I am very new to JSF, and I am pretty confused about the best practices of managing user logins. There are a lot of answers floating around, but they require knowledge of JSF and Java EE which I don't ...
1
vote
1answer
206 views

How can I check if an object stored with @WindowScoped is stored correctly?

Two days ago I wrote this question: How can I retrieve an object on @WindowScoped? and BalusC answered with some suggestions, now I have some problem to understand if my problem is that the object in ...
1
vote
1answer
244 views

JSF myfaces exception handling can't navigate

I'm out of ideas for my exception handling... Using: <myfaces.version>2.0.11</myfaces.version> <richfaces.version>4.1.0.Final</richfaces.version> ...
1
vote
1answer
201 views

How can I retrieve an object on @WindowScoped?

In this post Dynamic ui:include I asked how I could store an object in some state that could permit me to load a new windows, or tab, of the same browser and it was not stored also in the new windows. ...
0
votes
2answers
300 views

Error using t:dataScroller with MyFaces 2.1.5 Tomahawk 1.1.11 Spring 3.0.5

I am in the middle of upgrading from mojarra 1.2 to myfaces 2. Using the t:dataScroller tag is generating the following error : java.io.FileNotFoundException: ...
1
vote
1answer
214 views

Logging MyFaces 2.0

I've upgrade MyFaces Core 2.0.5 to 2.0.8 and stopped receiving runtime exceptions logs. Something in the logging mechanism changed that hides the exception messages. To test this, I planted this code ...
0
votes
1answer
510 views

Managed Beans not getting deployed with the rest of the application

Enviornment: IDE: Eclipse 3.7 Server: Tomcat 7.0 JSF 2.0 I am new to JSF and recently started having a strange problem when I try to deploy an application. For some reason everything gets ...
0
votes
1answer
1k views

Dynamically rendered JSF 2 content in request scoped - listener not called when in dynamic content

I have put my problem case below, which simplifies a real world problem I am having. By changing the Bean to @SessionScoped I can solve this, but that is really undesirable. As is @ViewScoped. I ...
0
votes
2answers
197 views

MyFaces @ViewScoped throws NotSerializableException even with server setting

So I wish to use ViewScoped and when I set the state saving method to client the page will throw a NotSerializableException and the page will forward to the error page. When I switch to server state ...
2
votes
2answers
285 views

JSF - set STATE_SAVING_METHOD per-page

I would like to set a particular page (one that does not require a user to sign in to use) to have a STATE_SAVING_METHOD of client rather than server while the rest of the pages use server. Is there ...
0
votes
1answer
360 views

Richfaces error: duplicate key: class javax.faces.convert.BooleanConverter

I'm using Tomcat 7, Richfaces 4.1.0, MyFaces 2.0.5 and Facelets. When I start Tomcat I get the error An error occured while initializing MyFaces: duplicate key: class ...
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 ...
3
votes
2answers
740 views

java - How do I save an Uploaded Image to my C drive

This is a follow-up to what I was trying to accomplish here uploading Files ussing MyFaces Tomahawk + JSF 2.0 I've managed to get the image as an UploadedFile Object, but I can't seem to be able to ...
1
vote
0answers
293 views

JSF Action Listener - dual behavior

I am using the Apache MyFaces flavor of JSFs and I'm experiencing some odd behavior with the Action Listener. When I use a global action-listener like this: <application> ...
0
votes
2answers
220 views

Myfaces CODI, @Inject and memory usage

I use Myfaces CODI @ViewAccessScoped backing beans in my JSF application. One of the benefits is that I don't need to use view parameters to communicate information between views. For the record ...
1
vote
1answer
1k views

f:param doesn't work with h:commandButton

i'm using eclipse 3.6.2 (Helios) , Tomcat 7 , MyFaces 1.2.9 i have no problem when i use f:param into the h:commandLink but when i put f:param into h:commandButton it doesn't work . what's the ...
0
votes
1answer
607 views

Out of memory error whenever Tomcat reloads context of MyFaces webapplication

I've recently moved to myfaces with tomahawk (following this successful thread link), and I'm getting out of memory errors whenever I'm writing new code and the application (Tomcat) reloads the ...
1
vote
0answers
166 views

Trinidad Nested panelTabbed not working

I'm having some trouble using Trinidad's . I have 1 main panelTab and a secondary one inside one of the main's panel showDetailItem. The problem is : When i switch tabs on the main one ...
5
votes
1answer
291 views

Multiple Browser Tabs/Windows and NUMBER_OF_VIEWS_IN_SESSION

We are developing an app in which we have to support multiple browser tabs/windows. Our setup: MyFaces 2.1, Spring, Orchestra By default the org.apache.myfaces.NUMBER_OF_VIEWS_IN_SESSION is set to ...
1
vote
1answer
873 views

How to clear all pageFlowScope maps from session?

How to clear pageFlowScopes and view caches from session when we are sure its no longer required? Following clears pageFlowScope map in current request context RequestContext requestContext = ...
1
vote
1answer
2k views

How to reference Facelets taglib in JAR from Facelets and web.xml?

I am using the Apache MyFaces Commons Validator TagLib. How should i add this to my web.xml? The commons JAR is downloaded and resolved through Maven. XHTML (I think this is correct): <html ...
0
votes
1answer
112 views

MyFaces Commons Validator maven dependency repository

Seems like i am having a hard time finding the repository manager for this dependency: <dependency> <groupId>org.apache.myfaces.commons</groupId> ...
1
vote
0answers
184 views

Why is MyFaces/Trinidad rendering my disabled inputTexts as divs?

Deceptively simple question, but I'm at my wits' end here. I have a document. It contains a form. Which contains a subform. Which contains a read-only text field. Here's the relevant part of the ...
0
votes
1answer
482 views

tr:commandLink action method does not navigate to next page.Instead loads same page again

In my JSF application ,after successful login, i am navigating to my home page of my application where i have a Logout link. Here is the related html for logout link. <div id="top_white"> ...
1
vote
1answer
479 views

addressing components from other naming containers

What I would like to achieve is to be able to address some JSF components from within other naming container. Usecase: composite component which encapsulates some features using - for a field which ...
0
votes
1answer
1k views

tomcat7+El2.2+jsf1.2 not working

expression language is not working in tomcat7 with jsf1.2 .#{message.name_prompt} is ouputed as #{message.name_prompt}. i tried to replace the el-api.jar in the tomcat lib folder with el-api-2.2.jar ...
1
vote
1answer
840 views

Glassfish 3.1 + MyFaces - ClassFormatError

I am trying to override Mojarra in Glassfish with MyFaces. I have put myfaces-impl dependency in maven and removed the RI dependencies - jsf-api.jar and jsf-impl.jar. I've also asked Glassfish nicely ...
0
votes
0answers
32 views

Myfaces special text in redered pages

I have a myfaces 2.1.3, trinidad 2 and tomahawk 2 site on Tomcat7. I opened one of the pages rendered source to find a problem and saw this I set all the development modes off and pretty html to false ...
0
votes
1answer
892 views

Adding RichFaces to an existing JBoss Seam application

Given a web application built using Jboss seam with following details: dynamic web module: 2.3 Java : 1.5 Javascript: 1.0 Tomcat: 5.0 activation.jar commons-beanutils-1.7.0.jar ...
0
votes
2answers
269 views

JSF2 MyFaces and CDATA makes f:ajax render fail

I'm facing some problems using CDATA blocks inside h:outputscripts with MyFaces 2.0... but I don't know exactly if I should avoid using CDATA with JSF2 or if it is because I do things wrong. Maybe it ...
0
votes
0answers
394 views

Upload up to 5 Gb file with MyFaces Tomahawk

Well as simple as the question. I'm using tomahawk to upload a file to a server. I have configured the filter with <init-param> <param-name>uploadMaxFileSize</param-name> ...
0
votes
0answers
151 views

MyFaces 1.1 + Tomahawk + TabChangeListener

The javadoc for MyFaces Tomahawk TabChangeListener says for the type attribute: This attribute may also be an EL expression that returns a TabChangeListener instance. Reference: ...
0
votes
1answer
224 views

With MyFaces CODI, I am not getting different windowid values in different browser tabs — why?

I am using MyFaces CODI because it allows me to use CDI annotations with ViewAccessScoped -- works great for that. The problem is that I have found that multiple browser tabs opened by my application ...
1
vote
2answers
641 views

MyFaces CODI and windowId request parameter issue

I have been trying to conduct some simple tests on Seam Weld and MyFaces CODI. After adding CODI jar files to my projects, I found that it adds a windowId request value to every request even if the ...
4
votes
1answer
900 views

JSF Session management and tunning

All, I am doing some investigation into how to shrink the amount of session memory our JSF application is consuming on a per user basis. We are using MyFaces 1.1.7 and Tomahawk 1.1.5 running on IBM ...
1
vote
0answers
674 views

ui:include in richfaces 4 only gets updated on second click

I am new to Richfaces4 and JSF2 and having lots of issues. Same code start to work suddenly and then it breaks. Currently I have a ui:include tag that update the page when the a4j:commandLink is ...
0
votes
0answers
697 views

richfaces 4 datatable not rendered completely . Error 80020101

I am using RF 4.0 Final with Apache MyFaces 2.0 on Tomcat 7. I just copied the code from RichFaces demo website for datatable and put it in my app. The data table loads the data but the ajax request ...
0
votes
0answers
684 views

Richfaces 4.0.0.FINAL Skinning standard JSF tags and Html tags automatically cannot load

I've enabled skinning in my web.xml but nothing seems to take effect in my richfaces 4.0.0.FINAL why? My web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app ...

1 4 5 6 7 8