Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
2k views

JSF faces config file outside WEB-INF?

When creating multiple faces config files, it is correct to have the faces-config.xml outside of WEB-INF? The JSF spec does not seem to be very clear about this (Section 10.1.3) If yes, how should ...
2
votes
0answers
64 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. ...
2
votes
0answers
424 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
vote
2answers
43 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 ...
1
vote
1answer
225 views

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

just wondering, after the JSF 2 big support for annotations what will i use the faces-config.xml in, what it's importance now ? in other words, what are the configuration that can only be done ...
1
vote
2answers
40 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.
1
vote
2answers
148 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
184 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. ...
1
vote
1answer
172 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 ...
1
vote
1answer
122 views

How to map a BitSet on facesconfig.xml

I want to map this bean in my facesconfig.xml public class VisualizationBean { private BitSet results; public BitSet getResults() { return results; } public void ...
1
vote
2answers
2k views

CommandLink navigation doesn't work in JSF

i wanted to use the navigation-rule feature of my faces-config.xml (JSF 2.0) but I have some problems with it. I have three files (index.xhtml,index2.html,index3.xhtml) and they look like this: ...
1
vote
2answers
92 views

Shared faces-config.xml across web project

I am trying to come up with a common UI framework for my organization. I want to know can I have something called shared faces-config.xml file which can be shared across projects.
0
votes
1answer
51 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 ...
0
votes
1answer
88 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 ...
0
votes
0answers
50 views

JSF 1.2 forwarding in a custom tag without loosing the request

We wrote a custom tag that extends com.sun.facelets.tag.TagHandler. I would like to redirect to another .jspx page in this tag without loosing the request. The reason why I want this, is that the ...
0
votes
3answers
271 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 { ...
0
votes
1answer
105 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 ...
0
votes
1answer
196 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
1answer
531 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> ...
0
votes
1answer
435 views

Problem updating config-config.xml from 1_2 to 2

I'm having issues trying to configure JSF 2. I get the following error when starting up my tomcat 7 server locally. SEVERE: Exception sending context initialized event to listener instance of class ...
0
votes
2answers
620 views

Changing beans initialized before in faces-config.xml

public class MyBean { private Integer [] myField; public Integer [] getMyField() { return myField; } public void setMyField(Integer [] myField) { this.myField = ...
0
votes
3answers
1k views

Enable JSF commandbutton only if all the other components are error free

I am using icefaces in my application. There is a form in the page, which has a couple of input fields. I would like to enable the commandbutton only if the fields are valid(no errors for the other ...
0
votes
1answer
202 views

Page navigation with JSF

Hy, probably this would be a simple question, but i don't know its answer. I have a project, myProject. In webContent i have the file home.xhtml, leave.html and i have 2 other folders cats and dogs. ...
0
votes
0answers
581 views

JSF 2 Managed Bean problems with scope view

Hi i am using JSF2 for a web app developement but i'm on a mental block on this problem: I have a basic bean that lives on scope <managed-bean> ...
0
votes
1answer
926 views

Navigation case not working in JSF

We're working on our first JSF project, and we have some problems. We are making the login functionality, and when we hit the login button, it throws: an IllegalArgumentException - null source a ...
0
votes
0answers
409 views

Difference between redirect in jsf and sendRedirect in JSP

In my application I use JSF. I want to redirect the user to error page when their session expires. I have tried by using <redirect /> tag in faces-config with navigation case. It's not ...
0
votes
1answer
330 views

JSF using constants in faces-config in <navigation-case>

Is it necessary to hardcode values in in faces-config.xml or is it possible to define all from-outcome values as constants in one place and then reference them from faces-config.xml as well as from ...
0
votes
1answer
466 views

JSF Page Navigation: If A.jsf navigate to B.jsf via hyperlink, why the URL display A.jsf instead of B.jsf

If A.jsf have a commandLink that will navigation to B.jsf, then I would think when I am at page B.jsf, I see http:domain/host/project/B.jsf as the URL. However, I see http:domain/host/project/A.jsf on ...
0
votes
1answer
207 views

Requested resource not found for sub-context in case of JSF

My JSF application is deployed under tomcat and server.xml is configured as follows for my application <Host name="myapp.com" appBase="/home/myapp/public_html"> ...
0
votes
1answer
376 views

where did this faces-config.pageflow.xml file come from?

I am migrating an application to jsf 1.2 and now out of the blue there is a new .metadata folder in the project root with a WebConent folder inside there with a WEB-INF folder still deeper and inside ...
0
votes
2answers
200 views

Spring El Expression

I'm switching from faces-config to Spring and wanted to know how you can pass a property from one bean to another: e.g. <bean id="myBean" class="Bean1"> </bean> <bean id="myBean2" ...
0
votes
1answer
135 views

Jsf library with web.xml

Jsf library (that is included in WEB-INF/lib) might contain its own faces-config.xml file. Is it possible for such a library to include also its own web.xml file?
0
votes
3answers
481 views

JSF 2.0 Problem (faces-config)

We have faces-config.xml in JSF 1.0 where we entry about managed-beans, dependencies & navigations etc. I was developing a sample project using JSF 2.0. But, as I don't know annotation, I need to ...
0
votes
1answer
321 views

JSF: Using same jsp page for different outcomes

Would it be possible to use a navigation-case as shown below with the same view-id but different from-outcomes? In the managed bean, I wanted to compare the from-outcome values and decide on the group ...
0
votes
2answers
325 views

Class parameter in Faces Config

Is there a way to pass a class into a property as a Class object? i.e. <managed-property> <property-name>clazz</property-name> ...
0
votes
1answer
2k views

JSF 1.2 NavigationHandler custom navigation

I am trying to extend the NavigationHandler in JSF 1.2, and to keep a stack of the visited pages (more precisely, the view-ids, along with the action and the output). I try to implement a custom ...