The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
140 views

Creating a wizard using ui:include, rich:popupPanel and navigation-rules

I am trying to build a wizard using ui:include in a RichFaces 4 popupPanel and navigation-rules in the faces-config.xml, but on completing the actions in the backing bean, the page does not navigate ...
0
votes
1answer
22 views

JBoss is taking a long time to read faces-config on the startup

The startup of my local application (JSF 1.1 on JBoss 4.0.5 GA) is taking forever (over 9 minutes!). It stops while reading the faces-config.xml: ==> INFO [FacesConfigurator] Reading config ...
1
vote
1answer
182 views

web.xml / faces-config.xml configuration issues

At some point in making a Web Application using MyFaces, my faces-config.xml and web.xml started fighting but seemingly long after I'd made any changes. I have been experimenting with different jars ...
0
votes
0answers
60 views

Config Managed Beans to create a Class<T> parameter

I am developing a test app using Hibernate and JSF as web app. I have some problems in JSF trying to inject the generic Repository implementation into my controller. I have an IRepository interface: ...
0
votes
1answer
334 views

JSF Resourece Bundle Can't find bundle for base name com.arc.ifuss.util.messages.properties

I'm trying to add resource bundle in my JSF project. I want to use messages from a resource bundle file in my JSF page. I have done these steps: Create a text file with name messages.properties in ...
1
vote
1answer
316 views

JSF-1.1 I18n- How to register Custom ResourceBundle in faces-config.xml

I was working on Internationalizing the messages/strings in my older JSF-1.x project when I found that the UTF-8 rendering was not being applied on the messages. I ran across a similar problem here:- ...
0
votes
1answer
73 views

Doesnt work/recognize language in faces-config.xml

The language "TR" is not worked/ does not recognized. Here is my code for faces-config.xml. <locale-config> <default-locale>tr</default-locale> ...
0
votes
0answers
106 views

default-render-kit-id

We use rad-8 and was-7, in faces-config.xml is defined default- render-kit-id as: <default-render-kit-id> org.apache.myfaces.trinidad.core </default-render-kit-id> But, when ...
1
vote
1answer
226 views

How to register a (Component)SystemEventListener for all UIInputs

I am trying to have a custom SystemEventListener that registers for all instances of type UIInput and reacts to their postValidate-Events. Based on an example I found on the web I managed to get one ...
0
votes
1answer
396 views

Programmatically navigate to error page in JSF 2.0

In my application I am willing to navigate to an error page whenever an exception occurred. The RuntimeException is handled and checked and is thrown again. For that I have defined a global navigation ...
0
votes
1answer
297 views

managed-property definied in faces-config.xml resolves as null

I am developing a JSF app with Spring. Here is my faces-config.xml file. <managed-bean> <managed-bean-name>loginBean</managed-bean-name> ...
0
votes
0answers
113 views

Override Render only for composite Component

I am writing a composite component. For that i needed to adjust the behaviour of the primefaces tree component. So i extended the renderer and added my custom renderer in the faces-config. At the ...
0
votes
0answers
149 views

Defining JSF exception handler in common EAR/lib fails while keeping in WAR/Web-Inf/lib works

I’ve solved a few of these in my time but this time JBoss has me stumped. I’ve got a web app with faces-config.xml defined with a custom <exception-handler-factory> ...
0
votes
1answer
69 views

Are there going to be two instances for a bean if I write @managed bean annotation and define same in faces-config.xml

In my application in some places we are using @ManagedBean annoation for Person bean and for the same Person bean we defining in the faces-confing.xml like below at the same time. ...
0
votes
1answer
333 views

Netbeans faces-config PROBLEMS

I have a weird problem with my faces-config.xml file - I'm using Netbeans. As soon as I make a faces-config file by choosing "New" -> "JSF Faces Configuration" the entire app fails at runtime: "The ...
0
votes
0answers
77 views

Remain parameter in url after login

I've encounter a problem while running a jsp page and this is what it shows: No tag "button" defined in tag library imported with prefix "h" My codes are <h:button value="Login" ...
0
votes
1answer
117 views

How do you maintain your url after a function is used?

I'm having a problem with my url. First, I have to display the image and the information of the image But I need to click on a button to display my information. This is the link with the image ...
0
votes
0answers
111 views

JSF version 1 vs 2 (@ManagedBean or faces-config)? [closed]

I learned version 1 first and thus have been managing beans via faces-config, but am using 2.0 now and am wondering which is better, using faces-config to handle my managed beans or tags such as ...
0
votes
0answers
210 views

EJB is null in managed bean from additional faces-config

Can anybody tell me why when i declare a managed bean in some additional faces-config, EJB in this bean is not initialized, i.e. it's null without any errors, just null? web.xml has following lines: ...
1
vote
1answer
576 views

JSF 2.0 ArrayList Property of Managed Bean

I am using JSF 2.0 Mojarra. I need to create a Managed Bean that contains a property of type List. I need to initialize this list with some values in the Faces-Config.xml. My question is, what does ...
0
votes
0answers
114 views

Maven2 JSF1.2 Internationalization issues

I am trying to internationalize my application. The problem I am facing is when I try to read the properties file from the jsp page it is neither throwing any error nor displaying the text from the ...
1
vote
1answer
729 views

jsf filter seems not to work

I was trying to create a secure login page with jsf, and I used these code snippets as the solution, found in this question. My problem is, that I can access the /restricted/secret.xhtml without ...
0
votes
2answers
488 views

i18n can not find locale properties

java.util.MissingResourceException: Can't find bundle for base name xxx.i18n.base, locale en_US I am currently implementing i18n, using Facelets. I have three .properties files: ...
2
votes
1answer
510 views

Fetch JSF Converter for class in ManagedBean (JSF 1.2)

I am stuck and need outside help from JSF experts with the following problem: I defined some converters in the faces-config.xml for specific classes so I don't have to use the converter-attribute or ...
1
vote
1answer
5k views

Doesn't Redirect JavaFaces 2.0 Primefaces p:commandButton o p:commandLink

Im having some problems with redirections. Im using primefaces and JSF 2.1. The thing is that JSF 2.1 doesn't have navigations rules and searching for an answer i found that I can put ...
0
votes
1answer
779 views

JSF 2.0 Navigation after commandButton

Hello I am building a website using JSF 2.0. I am trying to set up a commandButton so that after i press it it does some stuff with a method then navigates to a page dependent on what is returned ...
0
votes
1answer
253 views

faces-config leads to exception on startup web application

I'm developing a web application at the moment. I'm using JSF 2 on a tomcat 6. Everything went great, but now I want to navigate through my pages... (I decided to do an XML-less JSF Navigation ...
0
votes
1answer
307 views

JSF : ManagedBean, Good place to deal with Business Logic?

I have managedBean for fileUpload, once file is uploaded then i need to call different parsers based on what value is selected from the parser dropdown and then in parser am creating object of ...
1
vote
1answer
450 views

jsf - register SessionListener in faces-config

I created a SessionListener but it doesn't work because I don't know how to register it in the faces-config.xml. I tried the following: SessionListener public class SessionListener implements ...
1
vote
1answer
297 views

how to get view id using outcome in navigation case in faces-config.xml in jsf

I'am trying to retrieve to-view-id using from-outcome in the navigation-case in faces-config.xml, I'm using JSF 1.2. Please let me know if there is a in- built method or how to write the code. Thanks ...
1
vote
1answer
870 views

Eclipse Faces Config Editor not working

Summary The Faces Config Editor in Eclipse does not open when editing faces-config.xml. This is in a JavaServer Faces project. Details Eclipse 3.7.2 Eclipse m2e 1.0.1 m2e-wtp plugin 0.15 I've ...
0
votes
1answer
1k views

Faces Navigation not really working in JSF2

I'm using JSF 2.0 this is my faces-config.xml <?xml version="1.0" encoding="UTF-8"?> <!-- This file is not required if you don't need any extra configuration. --> <faces-config ...
0
votes
1answer
217 views

How to save all FacesMessages over different requests

I was just wondering to implement a kind of log display to user where in all messages in the application are displayed to user all the time. Since I use JSF 1.2 and RF 3.3.3, wanted to know if it is ...
2
votes
2answers
568 views

faces-config.xml in JAR file behaves differently on two Dominos

I have distribution package for beans. To save some work to developers it contains faces-config.xml declaring beans used by the JAR - inside META-INF directory of JAR. JAR is inside ...
1
vote
1answer
2k views

JSF 2 login implementation

i'm trying to implement a very basic (at this point) login screen with JSF 2 (using NetBeans). i've found several examples, from which i copied the source code, but so far unsuccessfully. in my ...
1
vote
2answers
1k views

How to activate Faces configuration editor in Eclipse?

When I make a JSF2.0 project in eclipse, the opening of it's faces-config.xml file always starts the faces configuration editor. But now I have a Google AppEngine project and I have added JSF2 (and ...
0
votes
1answer
348 views

Is it possible to load dynamically a Phase Listener with JSF 1.2?

I have been using a Phase Listener to debug my JSF application. Now I'm wondering if it's possible to load it dynamically depending on, for example, a system property is set or not (so I can commit ...
2
votes
0answers
327 views

Error with namespaces trying to configure JSF

I am getting the following error when trying to publish to my server. I have downloaded apache myfaces 2.0. I have also added these as a library in eclipse and added the project facet for JSF 2.0. ...
1
vote
1answer
1k views

Prettyfaces unable to find matching navigation case

I keep getting this error: Unable to find matching navigation case with from-view-id '/index.xhtml' for action '/faces/index.xhtml' with outcome 'finish_setup' The program works, redirecting my ...
1
vote
2answers
436 views

Tell that webapp uses JSF without the need for an empty faces-config.xml

Is there any other way to tell Java EE 6 app server that project is going to use JSF than having an empty faces-config.xml? I'd love to do this somehow using annotations or maybe initialization code ...
19
votes
1answer
14k views

What is the use of faces-config.xml in JSF 2?

After the JSF 2 big support for annotations, I'm wondering what I would use the faces-config.xml for. What is its importance now? In other words, what are the configurations that can only be done ...
1
vote
2answers
220 views

synchronisation of pages in address bar in a web application using jsf2

I'm working in a jsf2 application and I have a problem with the page name displayed in the address bar. When I navigate to an other page I have in address bar the name of the previous page. Thanks.
0
votes
3answers
1k views

JSF bean initializing with faces-config.xml

I've a Bean named as Bucket, it has a HashMap. I want to initialize the bean and polulate the HashMap in the faces-config.xml with a property file. How can I do that? Bean: public class BundleBean { ...
1
vote
2answers
866 views

How do I write and configure a custom facelet to override h:messages?

I am in the middle of rewriting a site that was originally written in Weblogic Beehive to JSF 2.0, and I'm running into an issue where I need to get the messages that the new site produces into a ...
1
vote
1answer
357 views

English error messages in JSF 2.0.3 (not validation)?

I had configured JSF 1.2 successfully to display English error messages that come from the server. Now I was making the transition to JSF 2.0, but the error messages seem to be back to German. ...
0
votes
1answer
242 views

How to delete or show details about an Object contained in list and presented in dataTable using JSF framework?

I want to know if someone of you have any idea or solution about problem concerning how to show detail or delete an object presenting in a dataTable ? I display data from database using MySql in jsf ...
1
vote
2answers
814 views

Can we have multiple Faces-config file in our JSF application?

I am working on a project which has grown bigger and lots of works still remains. The thing is, the entries in my faces-config.xml has already spanned some 600 lines, and i fear it will double up in ...
0
votes
1answer
404 views

Prevent converting null request parameter to zero in websphere jsf

We use #{param.customId} in faces-config for getting parameter from request. In the glassfish2 it works fine, but under websphere 7.0 undefined BigDecimal null values change to zero (0). How to ...
0
votes
2answers
1k views

jsf2 + <managed-property> <property-name>

I have a mapped bean in faces-config.xml <managed-bean> <managed-bean-name>beanName</managed-bean-name> <managed-bean-class>java.util.HashMap</managed-bean-class> ...
2
votes
1answer
1k views

Customize Facelets error page

I have a Facelets(JSF 1.2 (myfaces)) web app and I want to customize my error page - which would seem to be a natural thing to do when an application matures. I got really confused in the process. I ...

1 2