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 ...
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
65 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
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
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" ...
0
votes
1answer
164 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
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
vote
1answer
142 views

@ViewAccessScoped not getting selected row for first time

I am using JSF 2.0 and I have a datatable which gets populated using lazy load.Scope of the page is @ViewAccessScoped (MyFaces CODI) as I am using CDI/Spring. When datatable is loaded in jsf page and ...
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 ...
0
votes
0answers
186 views

JSF compatibility with legacy app on Jboss7

I'm moving a legacy application from tomcat5 to jboss7. The app uses an old JSF version (eI think 1.0 or maybe 1.1) and I was able to configure it well enough for the WAR to deploy and access the app ...
0
votes
2answers
231 views

MyFaces CODI - add to project

I'm developing a maven JSF web app. I want to use @PreDestroy on some @ViewScoped bean, however this is not possible in JSF 2.0 (or not when page is closed or redirected) I found MyFaces CODI's ...
0
votes
0answers
146 views

Why doesn't FacesServlet find .xhtml Facelet?

I've created an JSF Project from my Eclipse with JBoss Tools. Now I have the structure: MyProjectFolder ⌊ WebContent ⌊ WEB-INF | ⌊ lib | ⌊ faces-config.xml | ⌊ web.xml ⌊ META-INF ...
1
vote
0answers
164 views

Images intercepted by Extensions Filter

I have recently ported my data and file stores to Mongodb, which I am starting to really enjoy. I have what looks like a weird problem now. The Files Extension Filter in Tomohawk seems to be ...
2
votes
1answer
174 views

JSF default tomcat error page

I want to display the default Tomcat error page in JSF 2.0 (MyFaces) application when exception is thrown. I added following lines to web.xml: <error-page> ...
0
votes
1answer
363 views

Duplicate ID in Auto-Generated JSF component IDs

I'm getting duplicate ID errors randomly in my JSF pages, and in all of the instances, the duplicated ID is an auto-generated one (like j_id15). I don't have any duplicates in the specified IDs in ...
5
votes
1answer
7k views

java.lang.ClassNotFoundException: com.sun.faces.config.ConfigureListener when using MyFaces with WASCE/Geronimo

I am trying to create a simple JSF web application using MyFaces v 2.1 with WebSphere Application Server Community Edition v3.0.0.1 and Eclipse Juno but when I try to run the application the following ...
1
vote
2answers
1k views

How to force WebSphere AS 8 to use a specific JSF implementation?

I have an old enterprise application that was developed using WAS 6.1, now my company is trying to perform the implementation of that application in WAS 8. But I am having troubles rendering the JSF ...
0
votes
1answer
120 views

Reading JSF property on JSTL tag (MyFaces 1.2)

i'm with a problem migrating an old application from MyFaces 1.1 to MyFaces 1.2. In old application if a had a ManagedBean exampleMBean, I can read these properties through ...
1
vote
2answers
231 views

JSF2.0 @EJB Injection into @ViewScoped causing MyFaces to CFNE

I'm running a JSF project in TomEE. I upgraded it to MyFace 2.1.8. I'm running everything on OSX with Oracle JVM 1.7.04 So I have this ManagedBean which is ViewScoped: @ManagedBean @ViewScoped ...
0
votes
1answer
179 views

XML Parsing Error in JSF-trinidad application [closed]

When I am clicking a checkbox in my JSF 1.2 (with Apache MyFaces Trinidad 1.0.13) application I am getting following error in FF--- XML Parsing Error: no element found Location: ...
1
vote
1answer
161 views

What is a basic setup of MyFaces Trinidad on a JSF 2.0 Project?

I have a JSF 2.0 project with MyFaces Trinidad 2.0.1 components, i have created some forms using trinidad components, but some components that use ajax don't render as expected or like in the showcase ...
1
vote
1answer
546 views

How to use MyFaces Trinidad Input Date component?

I have a JSF 2.0 project with some forms, xhtml pages, After adding the MyFaces Trinidad Input Date component and i run the application, when i click the Input Date icon, its non-responsive and ...
1
vote
1answer
177 views

How to remove Orchestra converstation context parameter for static resources?

To provide proper browser caching I want to get rid of the conversationContext parameter, that Apache MyFaces Orchestra adds to every request, for requests to css files. As Bozho suggested, I've ...
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(); ...
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
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 ...
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
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
vote
1answer
315 views

MyFaces - @PostConstruct on abstract class

I'm trying to execute PostConstruct annotated method that is in abstract class, public abstract class AbstractTest { @PostConstruct public void init() { } ...
0
votes
0answers
657 views

How can I update Websphere 7 to use EL2.2?

This is what I have done: Following this post from Lincoln Baxter I downloaded el-api-2.2.jar and el-impl-2.2.jar Then created isolated shard library and added them there. We are using Myfaces so in ...
0
votes
1answer
1k views

Dynamically rendered JSF 2 content in request scoped - listener not called when in dynamic content

I have put my problem case below, which simplifies a real world problem I am having. By changing the Bean to @SessionScoped I can solve this, but that is really undesirable. As is @ViewScoped. I ...
0
votes
2answers
198 views

MyFaces @ViewScoped throws NotSerializableException even with server setting

So I wish to use ViewScoped and when I set the state saving method to client the page will throw a NotSerializableException and the page will forward to the error page. When I switch to server state ...
3
votes
2answers
745 views

java - How do I save an Uploaded Image to my C drive

This is a follow-up to what I was trying to accomplish here uploading Files ussing MyFaces Tomahawk + JSF 2.0 I've managed to get the image as an UploadedFile Object, but I can't seem to be able to ...
5
votes
1answer
292 views

Multiple Browser Tabs/Windows and NUMBER_OF_VIEWS_IN_SESSION

We are developing an app in which we have to support multiple browser tabs/windows. Our setup: MyFaces 2.1, Spring, Orchestra By default the org.apache.myfaces.NUMBER_OF_VIEWS_IN_SESSION is set to ...
1
vote
1answer
877 views

How to clear all pageFlowScope maps from session?

How to clear pageFlowScopes and view caches from session when we are sure its no longer required? Following clears pageFlowScope map in current request context RequestContext requestContext = ...
0
votes
1answer
555 views

JSF: NUMBER_OF_VIEWS_IN_SESSION and the back button

I've got a memory problem in my application because of AJAX4JSF high memory consumption. So we have decided to set the NUMBER_OF_VIEWS_IN_SESSION to 1 and compromise the back button functionality. ...
2
votes
1answer
340 views

Can not find getFlash() method in Myfaces

FacesContext.getCurrentInstance().getExternalContext().getFlash() I am trying to use above code seems like getFlash() does not exist in JSF2 implementation of Myfaces. How how can I access it. ...
1
vote
2answers
373 views

JSF: MyFaces CODI typesafe navigation and f:viewParam

I'm trying out MyFaces CODI with it's wonderful features. A very useful thing is the typesafe navigation. I can specify the outcome of an action method in my controller bean like this: public ...
0
votes
1answer
487 views

Tomcat 7 + MyFaces 2.1 : java.security.NoSuchAlgorithmException

I'm setting up a simple application using Tomcat 7 and MyFaces 2.1. I create the app, create a simple index.xhtml, deploy it and when I visit it on the browser I get the exception. I saw a post in ...
1
vote
5answers
6k views

JSF problem after server restart: No saved view state could be found

Continue solving this problem, I've replaced Mojarra by MyFaces and upgrade JDK and when I continue working on form after restart of server, following error appears: An Error Occurred: ...
0
votes
3answers
877 views

Access another managed Bean in JSF2.1 with Servlet 2.4

We have recently upgraded from JSF 1.2 to 2.1. We are running on WebSphere 6.1 which has Servlet 2.4 We are using the following libraries: myfaces 2.1.1 el-api-2.2 Now the only problem we have is ...
1
vote
2answers
782 views

Apache MyFaces Trinidad: Dynamic <tr:column/> tags inside a <tr:table/>

I have a simple requirement: The number of columns of my <tr:table/> is dynamic. I will have a list of objects, someBean.features which will determine how many columns are rendered. The ...
4
votes
2answers
2k views

ViewExpiredException on every navigation after migrating from JSF 1.2 to JSF 2.0

I'm attempting to migrate an existing JSF application from JSF 1.2 to JSF 2.0. I was using MyFaces 1.2.8 and want to use MyFaces 2.0.5. What I'm experiencing with MyFaces 2.0.5 is that the initially ...
0
votes
2answers
239 views

Eliminate “Today is <date>” string in MyFaces Tomahawk's popup inputCalendar

Does anyone know if there is any way I can remove the string "Today is " that is displayed at the bottom of the MyFaces Tomahawk's popup inputCalendar? See the following screenshot: I don't want ...
0
votes
1answer
252 views

How can you syncronize two requests from the same user in JSF?

Basically, my problem is that if the user click the one button, and does wait for the page to respond, and then clicks another button, it seems like there is a race condition. How can I avoid the ...
0
votes
1answer
473 views

JSF keep session active during long running process

We have a long-running process in our JSF (MyFaces implementation) WebApp. It is required to have an active session during this long-running process. Will bringing focus on various components every ...
0
votes
2answers
1k views

JSF Session issue in different browser windows

We have an application which is built on JSF 2.0(MyFaces) and runs on Weblogic app server. We are facing an issue regarding http Session. Issue: Suppose I have opened the app in two different IE ...
1
vote
1answer
1k views

IllegalArgumentException when adding h:commandButton with f:param to h:dataTable

Currently I'm using a datatable to display some items out of a database. Works fine. <h:dataTable border="1" value="#{overviewBean.loadContent }" var="item" first="0" > <h:column ...
1
vote
1answer
2k views

myfaces EL support disabled?

I am starter in JSF2.0. I am using MyFaces. My little tutorial apps are ok, but I noticed in the logs of MyFaces the following: org.apache.myfaces.util.ExternalSpecifications ...
14
votes
6answers
15k views

mojarra or myfaces (jsf2.0 starter) [closed]

I am starting on JSF2.0 I used a tutorial as a reference but I have the following question: The tutorial used 2 libs only: jsf-api.jar, jsf-impl.jar (but also had JSTL) from Mojarra Project. I tried ...

1 2