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
2
votes
2 answers

h:commandButton is not firing action if the h:form has enctype="multipart/form-data"

JSF: 1.2 Server: Weblogic I am trying to implement multiple file upload. As I need to give support for IE7 so I cannot use HTML5 input file. So I have planned to add a button, on clicking it will add a input file in the page. Primarily I have…
Tapas Bose
  • 28,796
  • 74
  • 215
  • 331
2
votes
3 answers

Add a input file with JSF 1.2

I need to upload in a form dedicated to upload files. In my project I can use JSF 1.2 and RichFaces 3.3.3 but I can't use the because my client wants a simple input, just like . If I could I would use…
Polyana Fontes
  • 3,156
  • 1
  • 27
  • 41
2
votes
1 answer

java.lang.UnsupportedOperationException: Cannot set ServletRequest Parameter

I am working on a JSF 1.1 project. JSP:
V.Rohan
  • 945
  • 2
  • 14
  • 27
2
votes
1 answer

JSF page not rendering as HTML

I'm trying to get a very basic JSF page running. Using Websphere 7.0 as the server so I'm trying to stick with JSF 1.2. The browser isn't rendering the html, by which I mean that it's simply displaying all the html code including doctype, etc. My…
philfo
  • 87
  • 1
  • 5
2
votes
2 answers

Stop JSF Event Chain

I'm working on modifying a jsf-1.2 application for use on a tablet pc. For that purpose I have made the rows of a table clickable to open the detail view of the rows contents, rather than have the user click on a link in that table (which is the…
2
votes
1 answer

gmaps primefaces problems

When I load the page, it shows the map and only shows a gray screen. Display currently as the image. This is my code:
2
votes
1 answer

why a:commandLink's action attribute works but h:commandLink's does not?

I had a very simple task today that I needed help with. First let me explain my environment. We are on a Java/Hibernate/SEAM/Facelets/JSF/RichFaces & A4J setup.. and I don't know to much about it. I work with it when all of the work on the old asp…
JoJo
  • 4,643
  • 9
  • 42
  • 65
2
votes
1 answer

JSF 1.2 with Trinidad - using fileDownloadActionListener

I'm using the DownloadFile Listener in my application as follow :
JohnSmith2
  • 47
  • 1
  • 11
2
votes
2 answers

Implementing JSF 2.0 with JBoss 4.x

I am currently working on upgrading JSF version from 1.2 to 2.0 for an application deployed in JBoss 4.3.0. I am still quite new to JBoss and I encountering this problem. I have downloaded the JSF jars (impl and api) and put the under…
2
votes
1 answer

JSF 1.2 Mojarra View State encryption - GZip Error - java.io.IOException: Not in GZIP format

We have our Web application developed in JSF 1.2 (Sun's RI) is deployed in Weblogic 11g with JRockit 1.6 64 bit. We have our View State saving mode as Client. The application is accessed via HTTPS. As part of a recommendation from 3rd Party…
2
votes
1 answer

richfaces fileupload ViewExpiredException

I have a page that uses rich:fileUpload for uploading files. For smaller files this works ok, however for larger files (+80MB) I usually get a ViewExpiredException. I already tried to search for a solution, but I didn't find anything that solved…
2
votes
2 answers

is not available by #{param.foo} in included JSF page

In my application I am using JSF 1.2. I dont want to use facelets taglib so I have included a JSP using jsp:include attribute. I want to pass a variable to subpage which will decide the style class value. Below is the code for…
Sunil Chavan
  • 2,934
  • 4
  • 25
  • 24
2
votes
1 answer

JSF 1.2 custom component does not render/encode children

I have two custom components: CustomUIComponent extends UIComponentBase CustomChildUIComponent extends UIComponentBase In CustomUIComponent I implement encodeBegin, encodeChildren and encodeEnd - in encodeChildren I set some custom attribute to be…
Jessica Cowen
  • 41
  • 1
  • 1
  • 4
2
votes
0 answers

Seam2: Page.xml and the view-id

while searching for a bug in a project i found many page.xml files, where the 'view-id' was showing to totally wrong pathes (old structure), or some had no view-id at all! As far as i understood Seam it works like this: i call in the browser.the…
Joergi
  • 1,527
  • 3
  • 39
  • 82
2
votes
1 answer

form submission behaviour

I would like to understand the behaviour behind a4j on Richfaces. I have a h:form with a h:inputText and a a4j:commandButton. The button action call a method in my bean, and the oncomplete shows Richfaces.showModal with some content.
rodrigocprates
  • 498
  • 6
  • 22