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
0answers
79 views

Trinidad tables are acting awfully screwy, multiple results, growing on refresh

I'm working on a MyFaces site for a project. It's using Trinidad, Tobago, Tomahawk, tested on a Tomcat server (T seems to be their favorite letter). Everything is more or less working fine and up to ...
2
votes
1answer
661 views

JSF 2- Executing values in ui:repeat doesn't commit the values

Here is the scenario (simplified): There is a bean (call it mrBean) with a member and the appropriate getters/setters: private List<String> rootContext; public void addContextItem() { ...
0
votes
1answer
1k views

t:inputFileUpload not uploading the file

I am using myfaces ExtensionFilter to upload a file, but the file is not getting set to my bean for further processing. Here is the code : <h:form id="uploadFileForm" ...
1
vote
1answer
676 views

Myfaces Tomahawk isn't working

I'm trying use selectManyCheckbox of tomahawk but it doesn't works, I get this message in my web application: Warning: The page /resources/components/tabs/abaEdicaoFuncoesFuncionario.xhtml ...
2
votes
1answer
323 views

JSF 2.0 EL handeling nulls for resource keys

Just a quick question for you guys. I have a resource key that is stored as a string in a managed bean and I'd like to get it to resolve to the value in a particular mapped Resource Bundle. Here ...
0
votes
1answer
151 views

showing HTML input stream to JSF page

By using XML and XSLT (TRANSFORMATION), I have got HTML code as a stream. I want to bind that code with the JSF component. I am using MyFaces 2.1.6 implementing JSF 2.0. Please suggest a way to bind ...
0
votes
0answers
853 views

javax.faces.context.ExceptionHandlerFactory java.lang.IllegalArgumentException

May 21, 2012 6:48:06 PM org.apache.myfaces.webapp.AbstractFacesInitializer initFaces SEVERE: An error occured while initializing MyFaces: javax.faces.context.ExceptionHandlerFactory ...
1
vote
2answers
7k views

java.lang.ClassNotFoundException: org.apache.myfaces.webapp.StartupServletContextListener

I get the following exception on startup of my JSF web application: SEVERE: Error configuring application listener of class org.apache.myfaces.webapp.StartupServletContextListener ...
0
votes
0answers
99 views

Strange _AttachedDeltaWrapper ClassCastException in MyFaces

I`m having an strange exception all time I access my web application. It's aparentely not breaking the application... but I think all exceptions should be trated ...
0
votes
1answer
514 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
83 views

How can I get all the initialized managed beans in the session?

How can I get all the initialized managed beans in the session? Following code crashes the JVM every time. FacesContext facesContext=FacesContext.getCurrentInstance(); ...
0
votes
1answer
184 views

@Named not working on weblogic while integrating JSF 2.0 and spring 3.0.6

I have read an article on internet for using @Named annotation to inject JSF managed beans. how to use @Named annotation But it is not working on weblogic 10.0.2. (Working fine on Jetty) I am using ...
0
votes
2answers
1k views

Not getting text box values in Managed Bean

I am not able to get username and password values that I am entering on the xhtml page in my ManagedBean. This is why i am getting NullPointerException in goodBye method when I am checking username ...
0
votes
2answers
99 views

Injecting Spring dependencies in JSF Managed bean with Spring 2.0

If I need to inject Spring dependency in JSF ManagedBean (creating through Annotations), I am using spring 2.0 it does not support @Autowire. Is there any way out to inject dependencies if I keep ...
0
votes
2answers
940 views

How do I specify Navigation Rules if I do not want to make entries in faces-config.xml

Right now I am giving my navigation rules in the faces-config.xml file. If I want to stop making entries in faces-config.xml. How can i specify the navigation rules if I don't want to do it in ...
0
votes
2answers
2k views

No saved view state could be found for the view identifier

When I was running my JSF application on Jetty server it was running fine. But as I moved this to Weblogic server, it started giving me this error. javax.faces.application.ViewExpiredException: ...
0
votes
1answer
335 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 ...
1
vote
1answer
165 views

Apache MyFaces ERROR_HANDLING Context Parameter VS javax.faces.PROJECT_STAGE

Could anyone verify that these context parameters are equivalent? It would appear that setting javax.faces.PROJECT_STAGE to 'Development' has the same effect as setting ...
0
votes
1answer
596 views

URL should change in JSF navigation

I have made a Login.xhtml by using Apache Myfaces 2.1 (using JSF 1.x) When I have given my username and password on login.xhtml and one submit button is there. When I click on goodbye button, the ...
0
votes
1answer
141 views

Problems on running MyFaces project with Tomcat in Windows (java.lang.LinkageError)

I'm facing this problem that I cant understand the error. This projects runs ok on Mac, but on Windows is happening this: GRAVE: Exception sending context initialized event to listener instance of ...
0
votes
1answer
307 views

Reducing NUMBER_OF_VIEWS_IN_SESSION results in ViewExpiredException

I'm running myFaces 2.1.7 and desperatly trying to reduche the mmeory usage of our web application. Basically session size of each users ballons to up to 10MB which we can't handle. I tried adding ...
2
votes
1answer
171 views

can the name of a JSF-ViewParameter be an EL-Expression?

is it possible to write something like that? <f:metadata> <f:viewParam name="#{constantsBean.viewParameterNameForIds}" value="#{displayBean.technicalId}" /> </f:metadata> I ...
0
votes
1answer
256 views

Upgrade issues - What is the connection between JSF, Myfaces, Trinidad and Facelets?

I have been working on a project and trying to understand how these components work. I am getting confused with the role each one plays. My current task is to take a project that is utilizing JSF, ...
1
vote
2answers
891 views

Using Apache Myfaces with Prime faces

I am new bie to JSF 2.0. I am using the apache Myfaces implementation of JSF 2.0. Also I want to use Prime faces for better UI components. But the problem I am facing is: The tags for both the ...
0
votes
2answers
616 views

How can a custom-validator know which commandButton was clicked

my form has several "submit" buttons, and the validation of some of the fields depends on which was pressed. How can I find that out in my custom validator? Thanks Jonny
1
vote
2answers
296 views

JSF web project <h:xxx> tag invisible

I followed a tutorial to make a JSF web project but it's not working, everything in <h : xxx> tag is invisible inside browser such as firefox or googlechrome. It's suposed to do that : first ...
0
votes
2answers
313 views

Trinidad tr:treeTable expand/collapse commands

I am using Trinidad 2.0. My problem is expand/collapse commands of treeTable. I think they are supposed to automatically expand/collapse tree nodes, but by clicking them, nothing happens and I got the ...
0
votes
1answer
124 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 ...
1
vote
0answers
248 views

Alternative to a4j:mediaOutput with @Scope(“conversation.access”)

I am using a4j:mediaOutput in my view and a bean with @Scope("conversation.access") i get NullpointerException for my paint-function called from mediaOutput. It seems this two(mediaOutput and ...
0
votes
1answer
340 views

update fields of conditionally rendered form

my problem is, that I want to render form2 conditionally. This collides with a ajax update event of another form1, which should trigger the rendering of form2. <h:form id="form1"> ...
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?
1
vote
1answer
623 views

MyFaces is acusing duplicate id that isn't duplicated

I have an strange problem happening in my web application after I changed Mojarra to MyFaces... I have a xhtml file that is loaded from outside, in other words, this xhtml is reused a lot: ...
0
votes
0answers
301 views

Launching Applet from JSF NullPointerException

When I run a applet inside a jsf page (I'm working with myfaces and trinidad components) the log shows me this while the applet is loading: SEVERE: Servlet.service() for servlet faces threw exception ...
1
vote
0answers
327 views

How to create an HtmlSelectOneMenu at runtime using MyFaces 1.1.5

Im using myfaces-api-1.1.5.jar. (sadly, can't use anything other than this!) I want to create the following at run time (ie. dynamically) from my backing bean, testBB. <t:selectOneMenu ...
2
votes
2answers
3k views

MyFaces JSF impl with Glassfish 3.1 not working

I tried to use MyFaces impl of JSF 2 using Glassfish, but I've not been able to do so. I added the following jars to the project: commons-beautils-1.8.3.jar commos-codec-1.3.jar ...
0
votes
1answer
741 views

Convert empty number as null

is there a possibility to tell my JSF-implementation to convert empty numbers as null. So far I always get 0 (of the corresponging complex-type). For empty strings there is ...
0
votes
0answers
332 views

jstl inside a composite not handled correctly?

myfaces-2.1.7, Tomcat-7.0.27 it seems like jstl is not propagated very will into composite elements. Could anybody explain the output of my example page: Direct: String:f0,f1,f2,f3,f4,f5 Array: f0 ...
0
votes
2answers
496 views

JSF 2.0 - Myfaces have problems rendering composite components

Some days ago I've changed mojarra to myfaces to solve this problem, now I'm having an strange problem rendering my composite components, they simply aren't rendered the second time I open one popup ...
0
votes
1answer
222 views

JSF 2 (MyFaces 2.0.12): Preventing Login page from being Cached issues

To prevent Login screen on my application from being cached by the browser i'm using the following peace of code : public class SessionHandler implements Filter { public void init(FilterConfig ...
0
votes
3answers
272 views

Troubles to load javascript files in jsf myfaces project

i am trying to use a specific Jquery menu mcdorpdown, the jequery its self was loaded but the local lib of mcdropdown won't, here is the error : Erreur : $("#category").mcDropdown is not a ...
1
vote
2answers
920 views

MyFaces Context Loading troubles

I met in several times a problem to load myfaces context, i've solved it by recreating maven project like these : mvn eclipse:clean eclipse:eclipse, whithout knowing the real cause, now i am ...
1
vote
0answers
172 views

JSF Tomahawk tree2 - null pointer error on submit()?

I've added a JSF Tomahawk t:tree2 UI component, and the page renders fine. However, as soon as I do anything on the page: click on a button that sends submit(), or press on a button with action ...
3
votes
1answer
700 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 ...
0
votes
1answer
499 views

Migration of JSF1.1 (MyFaces Implementation) with tiles into JSF2.0

Is it possible to use tiles in JSF2.0? I am planning for migration of MyFaces1.1 with tomahawk JSP tiles view handler into JSF2.0. Facelets is the default view handler in JSF2, is it possible to use ...
0
votes
0answers
433 views

JSF 2.0; Navigation between ViewScope and RequestScrope throws ViewExpiredException

I've got two pages on my JSF application. page1 is requestscoped and has a form on its site page2 is viewscoped and shows the values from page1 which are entered From page1 to page2 i'm using ...
1
vote
1answer
432 views

How to create JSF Table with links after post

I like to display a form where the end-user can enter details and the post will result in the table which contain a filtered list based on the user input. This table should have link for each row to ...
0
votes
3answers
495 views

firefox 11 and richfaces 3.1.5.GA/jsf 1.1.11 html injection

So we have a jsf/myfaces + rf app that works fine with FF 10. But FF 11 came out this week and we saw an issue with html injection from a4j tags. If we have a simple facelet page, and add just a ...
0
votes
0answers
160 views

Exception on deploying myfaces app on tomcat

I am trying to deploy my JSF (myfaces) application on tomcat server but as soon as I deploy I get the following exception messages in the logs : 16 Mar, 2012 6:53:33 PM ...
0
votes
1answer
425 views

dynamically load image names from database and display them using jsf 2.0

i'm trying to find a solution to load image names from a database and display them on a webpage. Basically, when i display an image i do it like this: <h:graphicImage ...
1
vote
0answers
373 views

Tomcat 6, JBoss EL2.2 and MyFaces: MyFaces Unified EL support disabled

my problem: I have an application running on Tomact 6 with JBoss EL2.2 and MyFaces 2.1.6. The JBoss EL 2.2 lib is provided by the war and no EL libs were removed from the original tomcat installation. ...

1 2 3 4 5 8