Tagged Questions
ICEfaces is a JSF component library. It offers an Ajax framework for developing and deploying rich enterprise applications.
7
votes
5answers
1k views
java.lang.OutOfMemoryError: PermGen space on web app usage
I am struggling with an outOfMemory PermGen issue that has been showing up recently. One of the log snippets that was saved when error appeared:
java.lang.OutOfMemoryError: PermGen space
at ...
6
votes
1answer
210 views
Does anyone use ICEpush on production server under heavy load?
ICEpush is still in alpha version, so I am curious if it is appropriate to use in web application on tomcat or tc server with many clients. How many users can be serviced by this technology with small ...
6
votes
1answer
2k views
JSF2, can I add JSF components dynamically?
Can I add JSF components dynamically?
I know this should be possible in JavaScript somehow. Do anybody know how to do this in JSF? I think the major problem is how do I get or set values later via ...
5
votes
4answers
4k views
JBoss RichFaces vs IceFaces vs Apache Trinidad - JSF component libraries comparison
What do you think/use for interface layer? The "backing" layer will be Spring 3.
The criteria are :
Your private opinion
Components
Documentation
AJAX Integration
Browser support
Community
Tool ...
5
votes
2answers
1k views
Unit testing icefaces
Can you separate components of an IceFaces application so they can be tested in isolation instead of using something like Selenium or HttpUnit on the assembled application?
Backing beans can be ...
5
votes
2answers
2k views
Setting floating point formatting locale for JSF / ICEfaces?
I am writing a JSF (ICEfaces) application using resource bundles to handle internationalisation.
The application nicely applies the (default) Dutch "nl" locale for the resource bundle but fails to ...
4
votes
1answer
157 views
CSS style sometimes only applied after a page refresh on a jsf page?
I've been struggeling a while with a strange bug in our application and wasn't able to find solution, even on google and stackoverflow
i found nothing matching my problem.
First, a short summary of ...
4
votes
2answers
1k views
Hide .xhtml source - facelets/icefaces?
I'm new to Icefaces and Facelets both, but I'm using them on a new project. I've got everything working configured and working fine. However, when I visit mywebapp/file.xhtml, the entire facelets ...
3
votes
1answer
586 views
The form component needs to have a UIForm in its ancestry. Suggestion: enclose the necessary components within <h:form>
I am getting the following error on my Facelet page, which simply consists of an IceFaces form with two fields and two buttons:
The form component needs to have a UIForm in its ancestry. ...
3
votes
2answers
320 views
Need Help Defining/Understanding the JEE “Stack”
LAMP is a stack defined from left to right (bottom to top) as Linux/Apache/MySQL/PHP or generically you can look at it as Operating System/Web Server/Database/Scripting Language. In the generic form ...
3
votes
3answers
305 views
“for (;;)”in JSF
I simply need to perform a very basic for cycle in JSF/ICEFaces, basically rendering column numbers
Something like the following pseudo-code
for(int i=0; i<max; i++)
{
...
3
votes
3answers
468 views
Is it possible to update the app without restarting the server in JSF?
I'm working with Eclipse 3.5, Tomcat 6, JSF 1.2 and IceFaces 1.8. Whenever I update any file in my app, I have to restart the server to see the latest changes. How to update my app without restarting ...
3
votes
3answers
677 views
Detailed Comparison of ICEfaces vs RichFaces?
I've seen a few very brief comparisons of ICEfaces vs. RichFaces, but has anyone written a detailed comparison of the two frameworks? I am particularly interested in detailed comparisons of the ...
3
votes
4answers
1k views
Using JSF with multiple tabs in one browser
By default JSF appears to be very 'stateful'. I need to allow people to use our application with multiple tabs doing many things in different parts of the application.
I can't seem to find decent ...
3
votes
1answer
3k views
JSF selectItem question
Is there a way to dynamically create a selectItem list? I dont really want to have to create lots of bean code to make my lists return List<SelectItem>...
I tried this:
...
3
votes
1answer
617 views
Liferay error page if at least one portlet is unavailable
I'm trying to setup a custom error page in Liferay portal if at least one portlet fails.
The portal always forwards to portlet_error.jsp and display a red zone in the portlet position.
How can I set ...
3
votes
4answers
2k views
Java: How can I generate a PDF file from a JSP JSF page?
I need to generate a PDF from a JSP JSF page. I have searched the net, but I didn't found any examples of how should I do this. I need to transform the whole page, or maybe only the charts that I have ...
3
votes
1answer
2k views
ICEFaces action vs actionListener
I am not clear on the difference between these two methods. I see that the actionListener takes an ActionEvent as a parameter, but both may be tied to a method in the backing bean.
Is the only ...
2
votes
1answer
54 views
IceFaces selectInputDate value changes after
Well I have an ice:selectInputDate but the value of the component is not the same as in the backing bean. I have to select two different dates to successfully update the variable value of the backing ...
2
votes
2answers
158 views
ui:repeat doesn't work with Map
i have map of key/values, which i initialize in @PostConstruct as follows:
Map<String, String> myMap;
@PostConstruct
public void init() {
myMap=new LinkedHashMap<String, String>();
...
2
votes
2answers
98 views
Long Running Task in Java EE WebApp + icefaces
I don't have much knowledge on Java EE but am currently learning it.
I've come up with a project which involves a long running task (up to several minutes) invoked by the user. The task consists of ...
2
votes
1answer
41 views
Populating IceFaces HtmlSelectOneListbox when not using xhtml
I am implementing comboboxes in an application where IceFaces forms are being built dynamically. There are no xhtmls around, we put together everything from Java code. This works nice so far, but I am ...
2
votes
4answers
685 views
Icesfaces vs Myfaces vs Primefaces
I am starting out a new project that involves the use of JSF 2.0.
From my initial reading, the Mojarra and Apache Implementation of the
project covers the basic components that you will need.
But I ...
2
votes
1answer
51 views
use sbt for generate a webapp with icefaces
I'm new to sbt and I will generate a web application with jsf 2.0 mojarra and icefaces, but i don't know how to build the build.sbt. I try things like this:
libraryDependencies += "org.icefaces" % ...
2
votes
2answers
94 views
Allow to enter language specific character from keyboard
I have one application providing language selection option to user.
I want to implement facility that user are allowed to entering text from keyboard in selected language. e.g. If i select Hindi my ...
2
votes
1answer
182 views
Dynamic Action in JSF page
I have a JSF page. My CommandButton action method value is dependent on the bean variable value.
Example:
Bean headerBean has varaible actionValue with value "someBean.doAction1()"
When I use , It ...
2
votes
4answers
203 views
Component library with JSF project
I am looking forward to using a component library(perhaps richfaces or primefaces) with JSF for developing the frontend of a social application.
I need to know:
1.) how far is it possible to ...
2
votes
1answer
402 views
Icefaces Actionlistener Pass Parameter To Another Page
I have have icefaces datatable and when user clicks a row, I would like to pass that row's value to another page. The value could row's one column which is the primary key. I am planning to use
How ...
2
votes
1answer
185 views
IceFaces and FileResource - delete after session expires
I'm using IceFaces. I generate reports for users and provide it using FileResource class. I do nothing with the file, since it should be available for download whenever user clicks on link to ...
2
votes
0answers
311 views
LazyInitializationException in RESTORE_VIEW (improper PersistentSet instantiation)
I'm getting started to use IceFaces and had encountered a problem when trying drag'n'drop support.
IceFaces 2.0.0
JSF 2.0
Mojarra 2.0.2 (FCS b10) (JSF reference implementation)
Spring 3.0.3
Hibernate ...
2
votes
2answers
2k views
IllegalStateException: getAttribute: Session already invalidated
I have a problem with my first JSF/IceFaces (version 1.8.2) application running on JBoss 5.1.0.
I recieve an exception after a while, telling me about session problems. This is weird, because i do ...
2
votes
4answers
646 views
Servlet called from Icefaces webapp creates constantly high CPU usage on client
I'm developing a web application (using JBoss and Icefaces) which uses a Servlet to create a Excel or PDF file and sends it to the browser.
But I'm experiencing performance problems after the servlet ...
2
votes
1answer
670 views
How to Dynamically adding fields in JSF?
HI All,
I am desperately looking for the assistance on adding and removing the fields and rows using JSF. I am using ICE Faces for the rich UI look. The following is my problem:
I have to add one ...
2
votes
6answers
2k views
Is there a better Ajax Push for JSF 2.0 than Icefaces
I am in a situation where I would like to implement Ajax Push in a Java based web app to update things like counts of item in stock on the web page as they change without any interaction from the ...
2
votes
2answers
2k views
How to map IceFaces <ice:selectInputDate> component on a java.util.Calendar field?
Does anybody knows how can component <ice:selectInputDate> be mapped on a java.util.Calendar field, not java.util.Date?
I am using from IceFaces version 1.8.2, the component ...
2
votes
2answers
170 views
Is there a way to upload a file using a Servlet that allows skipping the save to temporary location?
Posting this one for a friend. They have an Icefaces app that uses Icefaces's inputfile functionality but it attempts to upload the file to a temporary directory before it allows access to it. Long ...
2
votes
2answers
2k views
Full page refresh in Icefaces 1.8.2?
Icefaces only refreshes the changed parts in the page. In my program I want to do a full page refresh through the manage bean. Does anyone know how to do that ? Thanks.
2
votes
3answers
1k views
Notifying one bean from another in ICEFaces
I have an ICEFaces we application. One page has two beans that display different things on the page.
I want to be able to notify one bean when another bean changes something on the bean so that the ...
2
votes
1answer
2k views
ice:selectOneMenu sending the wrong value
I have multiple drop down menus with my JSF/ICEFaces application that update each others so depending on the selection of one the contents of others update.
The problem is that the menu is sending ...
2
votes
4answers
2k views
Is there a ICEfaces Maven archetype for NetBeans or Eclipse?
The NetBeans IDE still seems to offer Maven Archetypes only for Apache MyFaces or the "deprecated" WoodStock JSF framework. For future development or migration of existing Woodstock projects, Sun is ...
2
votes
2answers
1k views
ICE Faces fileInput file path and file name properties
I'd like to utilize an ICE Faces fileInput control to fill in the file path & file name for the input to an input field on a web page based on file that the user selects. How can I capture these ...
1
vote
1answer
42 views
How to modify a JSF backing bean value before the UpdateModelValuesPhase?
I have a JSF form that consists of a grid and some detail fields. The detail fields contain the data of the first row in the grid. I have a backing bean that listens to the grid row selection and ...
1
vote
1answer
48 views
ICEFaces Security
I have 2 security concerns that my client has come up with and I am stuck.
In order to avoid browsers caching sensitive information, the client's security guidlines require that POST requests do not ...
1
vote
1answer
70 views
Custom selectItems
i want to customize selectItems
to display an image conditionally beside each checkbox
so first i tried to display the image for all checkboxes
but it gets displayed only once, here's what i tried:
...
1
vote
2answers
74 views
How to create a Filter for an IceFaces based web application?
I am using IceFaces 1.8.2. I want to create a Filter so that people cannot access unauthorized URLs of my application.
I attempted to created a Filter like this:
public class AuthenticationFilter ...
1
vote
1answer
52 views
Disable validation on an ICEFaces form on specific button presses
I have an IceFaces form with several HtmlCommandButtons on it. I have some input fields that have attached validators. The validation works well, but runs and blocks the process even if I press ...
1
vote
1answer
51 views
What's the generated prefix j_idt33 in JSF component id?
i define h:messages component as follows:
<h:messages id="summary" styleClass="summary" globalOnly="true"/>
but when i inspected element with firebug, i noticed that the id is translated to ...
1
vote
1answer
151 views
How to override default file upload h:message in ICEfaces
i am using the ace:fileEntry component to upload files
and after successful upload i get the message that:
'File Entry' uploaded successfully 'filename'.
and i want to override this message and ...
1
vote
2answers
128 views
JSF/ICEfaces Dynamic hierarchy tree example
i have list of departments and each department might have a parent or not,department domain object is as follows:
- departmentId
- parentDepartmentId (null if current department has no parent i,e ...
1
vote
1answer
28 views
How to enable the url in icefaces project
My Icefaces project is running well in the tomcat server on following url
http://localhost:8085/projectName/
I can select which page to load default in index page. But what I wand is to access it ...