Questions tagged [jsf-1.2]

JSF 1.2 is the latest release of the JSF 1.x specification and it works with Servlet 2.5 and JSP 2.1.

JavaServer Faces (JSF) is a user interface (UI) framework for Java web applications.

JSF 1.2 is a specification driven by the JSR-252 expert group under the Java Community Process (JCP).JSF became part of Java EE with this 1.2 release.

Unified Expression Language (EL) a major change in this specification , deprecates the Faces EL of its predecessors.

At a fundamental level, JSF is a way to get values from the user, into the model tier for processing.

See for more information.

JSF 1.2 API Spec

Migrating from JSF 1.2 to JSF 2.0: here

846 questions
1
vote
0 answers

JSF 1.2 hot reload

I use jsf 1.2. In web.xml have specified the following settings ` facelets.RECREATE_VALUE_EXPRESSION_ON_BUILD_BEFORE_RESTORE false
1
vote
0 answers

Migrating JSF1.2 application from Jboss 4.2 to Wildfly 13

I am trying to migrate an existing JSF 1.2 application from Jboss 4.2 to Wildfly 13. I have also moved from jdk1.5 to jdk10. I am making an ear file with the following hierarchy: ear /lib ---all jars in it /META-INF /application.xml …
Manish
  • 11
  • 2
1
vote
1 answer

Integrate Weld CDI into a JSF 1.2 EJB Application on jboss 6 AS

Since two evenings, I am trying to integrate weld CDI into an EJB 3.1 Application with JSF 1.2. I simply tried to call a with @Named annotated controller in an JSF page. The problem is, that no exception is thrown, when I deploy the project and also…
ich-bin-drin
  • 543
  • 3
  • 12
  • 23
1
vote
1 answer

RichFaces 3 FileUpload on Jboss EAP 7 and JSF 1.2

We are migrating from Jboss EAP 6 to Jboss EAP 7 a JSF 1.2, Richfaces 3.3 and Prettyfaces application. Everything seems to work nice but the RichFaces FileUpload. When I upload a file it seems to perform well but the…
Pau Gómez
  • 301
  • 1
  • 4
1
vote
0 answers

JSF - Trying to download a PDF file but it rerenders the page with strange characters

I have read a lot of articles and none have solved the problem for me. First of all, I'm making use of RichFaces fileUpload component, wich is working fine when it comes to upload the file. But when I'm trying to retrieve the file in order to…
1
vote
1 answer

How can disable/enable jQueryUI datepicker using jQuery?

I want to disable and enable the jQueryUI datepicker field when a radio button change. I use this code and first time works and destroy datepicker but when I change radio button, It doesn't build datepicker again.(when click first radio button, two…
zara-90
  • 38
  • 2
  • 8
1
vote
1 answer

htmlCommandLink only works first time

I've already read "all" other issues concerning not working CommandLinks, but none apply for me, hopefully there's another solution. I have an a4j:htmlCommandLink which only works the first time it is clicked. If I click somewhere else on the page…
E.R. Daams
  • 11
  • 5
1
vote
1 answer

h:form renders name attribute, HTML validation failed, how to remove the attribute?

I'm trying to pass the HTML validation (https://validator.w3.org/) of my code, but I've got the following problem: there is no attribute "NAME"
James
  • 95
  • 1
  • 9
1
vote
1 answer

Custom renderer for Radio Group / SelectOne does nothing

The XPages renderer for a radio group put everything into tables and is basically terrible. I'm trying to fix this with a custom renderer. I've tried a lot of things but right now I'm stuck because I simply have no information to go further. My…
Gary Forbis
  • 868
  • 1
  • 8
  • 19
1
vote
1 answer

java.lang.NullPointerException at com.ibm.ws.webcontainer.filter.WebAppFilterManager.getFilterChainContents

I have a war application (spring + jsf1.2/richfaces + hibernate) running on my was8.5 server, when i try to access http://localhost:9080/name_app/login.xhtml, I get java.lang.NullPointerException coming from the server internal source, below is the…
user3532078
1
vote
1 answer

JSF 1.2 IBM JWL ajax components (hx:ajaxRefreshSubmit, hx:ajaxRefreshRequest) problems with IE11

I have a problem with ajax components hx:ajaxRefreshSubmit and hx:ajaxRefreshRequest on IE11. Both of them are working only on the first submit - request. I use the latest version of JWL and Portlet Bridge (jsf-ibm.jar v 3.1.20,…
Damc
  • 11
  • 2
1
vote
1 answer

java.lang.String cannot be cast to javax.faces.model.SelectItem with s:selectItems

I am using JSF 1.2 This lines of code throws a…
Pratik Makune
  • 31
  • 1
  • 7
1
vote
2 answers

commandButton double action : save and redirect to other page

I would like after click on save button, data should be saved and user redirected to corbeille page. This is my current implementation :
Nabil Salah
  • 300
  • 3
  • 7
  • 19
1
vote
1 answer

a4j:jsfunction vs calling method directly from javascript

I'm new to RichFaces. I have a requirement to call backingbean method from javascript. I used a4j:jsfuction to do so but I was adviced not to use this component for performance and call backing bean method directly within javascript like…
J Dev
  • 11
  • 2