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

1
vote
1answer
17 views

Query version info from jsf application

I just stumbled upon a paper on JSF security containing the following statement: In Suns RI JSF implementation, the "com.sun.faces.disableVersionTracking" conguration parameter is defined ...
1
vote
0answers
39 views

Entities are not mapped

i have an application works good and i have to change my database structure and when i changed it and i generate my model classes with hibernate i got this exception: SEVERE: Servlet.service() for ...
0
votes
1answer
25 views

UnsupportedOperationException using Ajax.update or getRenderIds().add

I'm trying to refresh a jsf component using java code. First, i try using this : FacesContext.getCurrentInstance().getPartialViewContext().getRenderIds().add("MyCompId"); but it produce an ...
1
vote
0answers
40 views

Could not restore StateHolder of type org.primefaces.component.resetinput.ResetInputActionListener

I've got very strange error on PrimeFaces application, that I have not seen before. Could not restore StateHolder of type org.primefaces.component.resetinput.ResetInputActionListener (missing no-args ...
0
votes
0answers
65 views

JSF 2.0 does not initialize ManagedBeans

I use WebSphere Application Server 8.0 with PrimeFaces 3.5 on Windows 7. I have some Dynamic Web Projects in my Eclipse IDE Juno or Rational Application Developer. The projetcs worked fine for a ...
0
votes
1answer
38 views

Build CSV dynamically in JSF 2

Basically what I want to do is this : http://www.mkyong.com/java/how-to-export-data-to-csv-file-java/ Except at the end serve it as a download to the user. Obviously I can't use FileWriter as I'm ...
0
votes
1answer
66 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 ...
0
votes
0answers
41 views

java.lang.NoSuchMethodException: No such accessible method: addRenderKitClass() on object: org.apache.myfaces.config.impl.digester.elements.RenderKit

Got "java.lang.NoSuchMethodException: No such accessible method: addRenderKitClass() on object: org.apache.myfaces.config.impl.digester.elements.RenderKit" exception while deploying myfaces 1.2 ...
3
votes
0answers
54 views

Exception doesn't get redirected to error-page when myfaces.ERROR_HANDLING is set to false

I have implemented an error JSF page which gives basic information to users. It is triggered by the <error-page> tag in my web.xml <error-page> <location>/error</location> ...
0
votes
1answer
38 views

Code jumps to unknown class while executing method in backing bean

I have a problem where I call a method in the backing bean which is supposed to update a list after which a rich:datagrid is rerender on my xhtml page to reflect the changes.Via debugging I can ...
0
votes
1answer
46 views

Conditional validation without binding attribute

I'm dealing with a legacy code base and come across a situation when it's necessary to validate a field "fieldToValidate" if some other field "otherField" has some value (otherwise field is not ...
0
votes
0answers
70 views

SOLVED: MyFaces JSF 1.2, Facelets: h:commandButton h:commandLink no more works

I have a AppFuse 2.0.2 JSF Modular old (year 2008) project, today I opened and wanted to implement some new feature. And I've noticed, that clicking on any h:commandButton, h:commandLink pages only ...
0
votes
0answers
61 views

Keeping components styled in datagrid after paging with rich:datascroller

I have a page with a rich:datagrid and rich:simpletogglepanels inside as elements.As the footer I have a rich:datascroller.Code is below. <rich:dataGrid columns="1" width="100%" ...
0
votes
1answer
48 views

Move the open/close marker of rich:simpleTogglePanel

I have a simpleTogglePanel set up as follows: <rich:simpleTogglePanel headerClass="myHeaderClass" opened="false" switchType="client" style="border: 0px;" bodyClass="myBodyClass"> ...
0
votes
0answers
23 views

Myfaces 2.1: .xhtml page as ERROR_TEMPLATE_RESSOURCE

Do you know if it's possible to use a .xhtml page as an error page for my web app? With Myfaces 1.2 I used a .xml page which worked fine. But after migrating to Myfaces 2.1 (application is running on ...
0
votes
1answer
27 views

hava jsp MyFaces Tomahawk Captha problems

I have a website for a hiking club that has recently been spammed by automated registrations from some bot. There is human step involved in activations but the large number of nonsens registrations is ...
2
votes
0answers
79 views

Unable to load tag handler class “null” for tag “ui:composition”

I am trying to create a JSF application using MyFaces and Trinidad. I have added the following JARs to my /WEB-INF/lib: commons-beanutils-1.7.0.jar commons-collections-3.1.jar ...
2
votes
1answer
80 views

WARNING: Unsupported component-family/renderer-type: org.omnifaces.component.script/javax.faces.Button

I have the following form defined: <ui:define name="body"> <h:form id="posForm" styleClass="well span12"> .... <o:commandScript ...
0
votes
1answer
69 views

JSP tag file doesn't recognize #{} syntax

In my JSP page I'm using the following line to retrieve a label: <f:loadBundle basename="com.me.resources.test" var="mytest" /> <h:outputLabel value= "#{mytest.mylabel}"/> and it's ...
0
votes
0answers
38 views

How to use the autoSubmit feature in MyFaces Trinidad when dealing with multiple actions?

I can't find a definitive article about using this feature the best way. Imagine I have a page that has 2 areas. The center and the navigation area. Both of them contains some form elements that ...
3
votes
1answer
99 views

Custom renderer for PrimeFaces component works fine in Tomcat, but not in Websphere

I'm using MyFaces 2.1.9 and PrimeFaces 3.5. I've implemented a custom renderer for <p:inputText>. This works fine at home with Tomcat. But this does not work at work with Websphere. I've placed ...
0
votes
1answer
37 views

JUEL set up doesn't work

I tried two ways to implement this. Specs: MyFaces 2.1.7 javax.el 2.1.0 WebFlow 2.3.1 Spring Framework (OSGI) First, added the dependency. <dependency> ...
1
vote
0answers
138 views

JSF table pagination

I am a newbie with JSF. Currently I have the problem with keeping the state of data-table list pagination. The problem is when a user edits a row of a list which is not in the first page of ...
0
votes
1answer
48 views

Will an app built with MyFaces 2.1.11 run on Tomcat 6.0.24?

I am just starting a new web application (as a learning project). I have some freedom to choose what framework I use, but I must use JavaEE, it must be MVC, and it must run on Tomcat 6.0.24. I've ...
1
vote
1answer
40 views

Do I need to use MyFaces if I am using JBoss seam in my application?

We have a legacy JSF based web application that uses Seam. It is deployed on Websphere 7.0. It does not have MyFaces JARs in its /WEB-INF/lib, it has only Seam JARs. So, how does the application get ...
1
vote
0answers
144 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
58 views

Apache Myfaces prints blank td tag when using h:dataTable and an empty dataset

Is there a way to have MyFaces not print the following when the List or Array backing an h:dataTable is empty? <table> <tbody id="itemsForm:itemsDataTable:tbody_element"> ...
0
votes
1answer
78 views

how to suppress MyFaces console html warnings?

We are getting ready to move our JSF 2 (MyFaces with Facelets pages) application to Production soon. Currently our console logs (SystemOut.log on WebSphere v8) are filling up with vast amounts of ...
0
votes
2answers
62 views

ocpsoft.org PrettyTime: Could not find any registered converter-class

I found this fairly incredible date conversion library for JSF called Pretty Time. I've included the maven coordinates into my pom.xml: <dependency> ...
0
votes
0answers
44 views

Global a4j:actionparam for all a4j:support blocks

In my jsf file I have something like this: ... <a4j:outputPanel id="id1" layout="block" style="cursor: pointer;"> <h:outputText value="id1value" /> <a4j:support event="onclick" ...
-1
votes
1answer
75 views

MyFaces continues to run in DEV mode after project stage changed to Production

Running in Websphere Portal 7 and MyFaces 2.1.10. The deployment descriptor for the web module in WAS shows the PROJECT_STAGE property has a value of 'Production'. Yet when the application starts I ...
0
votes
1answer
165 views

JSF page validation in Java and generated component IDs issue

I have a question according to <h:message for="" /> JSF object. I have a JSF 1.1 (yes, unfortunatelly) myFaces project. I've prepared a simple JSP file with label, inputText and message holder: ...
0
votes
0answers
184 views

JSF 2.0: Has the presence of JSR-303 bean validation an impact on custom JSF-Validators?

I'm now in charge for a JSF 2.0 application, where everything is validated through custom validators which totally blows up the *.xhtml files. I tried to migrate the validation to JSR-303 bean ...
0
votes
1answer
44 views

Adding two DataScroller to one DataTable

I would like to add two DataScroller to one DataTable (on the top and on the bottom of the page). One DataScroller works so far. This one is binded to my backbean where the first page is chosen ...
0
votes
1answer
54 views

Strange behaviour of page with @ViewScoped when is opened twice

I have bean which looks like below: @ManagedBean(name = "reportDetailsBean") @ViewScoped public class ReportDetailsBean implements Serializable { // content... } and JSF page with ...
3
votes
0answers
128 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
1answer
40 views

JSPX Make messageDetail messages show in messages area at the top of the page?

I have set a messageDetailNotInRange message inside tr:validateDateTimeRange for my tr:inputDate component. It appears just below the component. It there a way to make it appear (and replace) the ...
0
votes
0answers
170 views

JSF (Primefaces) issue with reload action on FireFox

I have JSF page which contains a few text controlls and tree component. Tree is fully created programatically with f:event type="preRenderView". After loading the tree can be modified (node remove ...
0
votes
1answer
190 views

PrimeFaces ViewExpiredException after page reload

I have wrapper PrimeFaces.ajax.AjaxResponse to handle ViewExpiredException (reloading the page): var handleViewExpired = function (viewId) { window.alert('${msg.ajax.viewExpired}'); ...
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 ...
0
votes
1answer
69 views

Grab JSPX user input directly from a trinidad UIXComponent in my Java code?

I would like to retrieve the user input from a component within my Java code. Something akin to textbox.text in aspx/.NET. I am finding the documentation very confusing and my attempts don't compile. ...
1
vote
1answer
79 views

JSPX Trinidad messageDetailNotInRange for validateDateTimeRange not working

I am trying to override the default validateDateTimeRange message using messageDetailNotInRange as per the documentation. Despite my code, the validator produces the default error message: "The date ...
0
votes
0answers
139 views

MyFaces special javascript could not be retrieved from request-map

I am getting the following warn message in my JBoss: 2013-02-13 14:18:09,863 388821 WARN [org.apache.myfaces.renderkit.html.util.DefaultAddResource] (http-192.168.1.54-8280-5:) MyFaces special ...
0
votes
1answer
114 views

MyFaces 2.0.4 cannot render h:form tag

I have a simple JSF 2.0 xhtml page that will not render when I insert an h:form tag. I can use a normal tag and things render just fine. Here's my specs: - Java 1.6 - WebSphere 8.0.0.5 & its ...
0
votes
0answers
28 views

How to prevent space being added in JSF MyFaces 1.1 DOCTYPE declaration

The DOCTYPE declaration below gets an extra space before the closing > when rendered by JSF using MyFaces 1.1. Thus, <!DOCTYPE html> becomes, <!DOCTYPE html > making it strictly invalid. ...
0
votes
1answer
219 views

How to handle ViewExpiredException by showing JavaScript alert?

I've read the question Handle ViewExireException/ajax and display a Primefaces dialog and the answer from BalusC. I'd want to handle the ViewExpiredException by showing the alert with information to ...
0
votes
0answers
74 views

NamespaceHandler giving NPE for “http://java.sun.com/jsf/facelets” when using ui:composition in JSF2

We are migrating from JSF1.2 to JSF2 using Websphere 8 server (in IRAD8) and using Apache MyFaces as JSF implementation. web.xml is changed to version 3.0 and faces-config.xml to version 2.0. In my ...
0
votes
1answer
64 views

Why client state saving works faster for single user?

I'm using PrimeFaces 3.4 with MyFaces 2.0.7 on WebSphere 7. I've noticed that saving state to client result in about 2 times faster request processing than server saving state. When client saving ...
0
votes
1answer
98 views

MyFaces: exceeding maximum Paramaters allowed per request

The application I'm involved in was deployed to test server (WebSphere 7) from where we're getting errors we've never seen before: This is the message about exceeding maximum number of parameters ...
0
votes
1answer
128 views

not invoking the setter method in jsf

i m working on javas server faces. i have used the User.java class as model ,UserController as controller and index.xhtml,ViewProfile,xhtml as view . i traced the following code and i observed that ...

1 2 3 4 5 8