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
0
votes
1 answer

JSF-Html Body tag not defined

I was working on Javaserver faces. MK-Yongs examples are working fine that belong to JSF 2.x Category. I am trying out some examples in JavaServer Faces in Action - Kito D Mann. Those examples seem to be of JSF 1.x, and it is giving some peculiar…
bali208
  • 2,257
  • 7
  • 40
  • 43
0
votes
1 answer

Jboss can't start web app and no errors in log

I'm trying to get a web app up and running on jboss 5 in eclipse and i'm not getting any errors in the log and when i hit http://localhost:8080/WebDataViewer, i just get the default http 404 error page. When i hit http://localhost:8080/ i get the…
Catfish
  • 18,876
  • 54
  • 209
  • 353
0
votes
0 answers

Error customizing validation error messages in JSF 1.2

I've followed the steps answered in similar SO questions and also in other sites like Mkyong with no success. I'm describing below what I've done so far in order to customize the javax.faces.component.UIInput.REQUIRED: Create MyMessages.properties…
jmrodrigg
  • 600
  • 6
  • 24
0
votes
2 answers

a4j:button - how to avoid submission?

There's a button which only purpose is to call modal panel. How to avoid form submission? Exemplary code: And there's a modal panel definition like below:
wilu
  • 549
  • 1
  • 12
  • 26
0
votes
1 answer

Passing attributes or param from js/jsp to backing bean with JSF 1.2

I'm writing a very simple frontend for an Oracle database. It is based on JSF 1.2, jsp, and deployed on a glassfish-ee-2.1, and developed with NetBeans 6.5.1. Yeah, I know this is 2012. One must read the content, maybe update it, and save it back to…
0
votes
0 answers

Bulk entry in JSF data entry form

I am creating an application in jsf 1.2 with richfaces 3.3 (oracle 11g on BE). I need to incorporate a data entry form that will show names of like 800 individuals against which data would be entered in a grid or table like structure (like in excel…
learner
  • 757
  • 2
  • 14
  • 35
0
votes
1 answer

OWASP TOP 10 - 4. Insecure Direct Object References - other way then ESAPI in JSF 1.2 + JAVA + SEAM

Is there anything already integrated in JSF 1.2 or SEAM 2.2.2 to prevent A4-Insecure Direct Object References I know the ESAPI functions to do it, but i don't want to include another framework into my project if not necessary, is there anything…
Joergi
  • 1,527
  • 3
  • 39
  • 82
0
votes
4 answers

Custom link like rich:simpleTogglePanel

I want to change the style of the rich:simpleTogglePanel to look like as a common link would. http://livedemo.exadel.com/richfaces-demo/richfaces/simpleTogglePanel.jsf?c=simpleTogglePanel&tab=usage This page shows exactly what I want to do and what…
0
votes
2 answers

Re-render only a part of the panel

This is a simplified version of my problem. Content here should be reRendered …
prageeth
  • 7,159
  • 7
  • 44
  • 72
0
votes
1 answer

Accepting the form submission with not selecting any radio button

I am writing an application with Java EE using JSF 1.2 and the Seam framework. I have a form which takes input from radio button like this:
Sazzadur Rahaman
  • 6,938
  • 1
  • 30
  • 52
0
votes
2 answers

Detecting value change in inside a

There is a table like this:
kooker
  • 363
  • 1
  • 5
  • 16
0
votes
0 answers

Testing a JSF Application with JMeter

I am a trying to execute a test script for a JSF application. I have followed the steps in from the below link: wiki.apache.org/myfaces/PerformanceTestingWithJMeter My script is navigating through 5 pages. The issue is i am able load all the 4 pages…
Hariharbalaji
  • 2,498
  • 8
  • 36
  • 51
0
votes
1 answer

Mapping URLs formed by page name to a single different URL

Am having many xhtml pages in my application. First page that a User gets to see is named index.xhtml, when User is asked to update his Profile it will be updateProfile.xhtml etc. When I hit my application my page names gets displayed on the URL.…
Vikas V
  • 3,176
  • 2
  • 37
  • 60
0
votes
1 answer

Apache MyFaces Trinidad: generate html

The html that generate from tr:table contains th for the header and td for the row data which is good. my problem is that i want to style to the 'th' element When I added style to tr:outputText this does not effect. The style that I trying to add…
JohnSmith2
  • 47
  • 1
  • 11
0
votes
1 answer

How to include files with german symbols like ä, ö, ü in HTML object tag?

In my web application, people can upload any file and view it later (or download, if it can't be displayed). Therefore, they are embedded in an HTML "object" tag. From the Java code (I use JSF 1.2) I get the necessary info (file path, mime type) and…
Mario Wagner
  • 98
  • 12