Tagged Questions
0
votes
1answer
43 views
JSP, Java Beans, How to remember position
For an assignment in "Web Engineering" we have to program a Web Application game with JSP, Servlets and Java Beans. The algorithms for the game, using a Servlet for the Control, JSP for the Model/View ...
1
vote
0answers
120 views
Display messages in JSP, When java bean class get affected?
Please don't hesitate edit my question , If it is not clear.
Currently I have a situation When my server sends any response,I need to reflect the message in the JSP when my bean class changes.
My ...
0
votes
1answer
41 views
JavaScript TO Bean in SEAM + JSF 1.2
I want to save the variable "position" in my BEAN, does anyone know how to do this? I'm starting in javascipt.
function placeMarker(position, map) {
var marker = new google.maps.Marker({
...
0
votes
2answers
160 views
Initializing an input tag(html) in a jsp using a bean message tag (i18n)
Am new to JavaEE,so am still trying to find my feet. Well,in order to internationalize my pages,am trying to initialize an input text tag using a bean message tag.
This is what i would have done if i ...
0
votes
1answer
53 views
Why does servlet throw this Servlet.service() Exception?
I am using Netbeans. I got the following exception when running a servlet which called a method from a session bean.
ApplicationDispatcher[/TheLibrarySystem-war] PWC1231: Servlet.service() for ...
0
votes
0answers
12 views
Netbeans missing -war in URL
Using netbeans6.7.1
I have an enterprise app with ejb, app-client and war. Ejb and app-client tested to be working properly.
When I run the application with war, the first run after building goes to ...
0
votes
1answer
103 views
reloading a variable in a jsp page
so I'm quite new to JSP, servlets and the like although I'm quite comfortable with all of the concepts in an MVC framework. In the following code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 ...
-1
votes
1answer
80 views
Extracting Data from URL and using it in JSF [closed]
I have this URL
http://localhost:8084/somesite/leaveHTML.xhtml?id=somestring.
Now i am able to extract the id from the URL using jquery but i am not so sure, how can i use this string to retrieve ...
0
votes
0answers
298 views
jsf 1.2 how to set bean value in javascript
<ui:script rendered="#{TNSessionBean.FACManager.FACBeanAdd.active}">
var r=confirm("This Lorry is already has a FAC today, would you want to continue?")
if (r==true)
{ ...
4
votes
1answer
431 views
PrimeFaces p:fileUpload multiple files autoComplete only works after first file
I try to upload some files then redirect to another page by oncomplete
the problem is that oncomplete is only working just after the first file is uploaded
<p:fileUpload mode="advanced"
...
0
votes
0answers
162 views
jsp getProperty issue
I'm having a problem getting jsp:getProperty to work in my html page on a Tomcat server. I've been trying alot of example code on my server, but I haven't had any success with that either.
I tried ...
0
votes
1answer
609 views
How to call Java method in Javascript
I am creating web page using JSF 2.0.
What I want to do is, call one method setLastVisitedPage that I have in bean MyBean when everypage loads.
I can do this by simply writing
<h:body ...
0
votes
1answer
130 views
Spring MVC Framework (Process from UI to Completing a Transaction)
I have begun some serious reading on this framework and i am seeing where and how DI is done. The examples i looked at showed me values that were hard coded and referenced but non really on from the ...
0
votes
1answer
197 views
javascript get selected value from form (in Netbeans web project with DB)
I need little help.
First, I have page with some values from Database in form, like this:
out.println("<form method=\"post\" action=\"update.jsp?id=" +
rs.getString(1) +"\" ...
1
vote
1answer
333 views
change value of backing bean of web page element with javascript?
how can I change the value of a backing bean web element from javascript?
the xhtml:
<h:form >
<input type="hidden" id="elementid" name="element" value="#{BackingBean.elementid}" />
...
0
votes
1answer
717 views
JSF f:ajax onevent not reading bean value
I have an AdminBean that has a loggedIn boolean which is set after a query from an onclick:
<h:commandButton rendered="#{!adminBean.loggedIn}" styleClass="moreButtonAsText" ...
0
votes
2answers
311 views
put bean values in external JS files
Is there a simply way to read bean values in a .js file?
I have an external JS file, arrays.js, which contains some arrays, used to populate a series of within a JSP page.
Now I need to fill the ...
1
vote
1answer
97 views
Javascript/Javabean: co-operation not working for counter
I have to make a simple webapplication using javascript and javabeans. The actual assignment is a bit different (including dropcoordinates and such), but here's my testing file problem:
Whenever the ...
0
votes
1answer
235 views
Get userPrincipal in Javascript
I need to get userPrincipal inside a piece of Javascript code. My app currently uses Dojo on the client side and servlets on the server side. I am not using JSF, nor JSP (and if possible I would try ...
1
vote
1answer
662 views
Display iterate bean value in jsp
<logic:iterate id="requirement" name="requirementList" indexId="reqNumber">
<a href="#" onClick="editItem('<%=requirement.service.description%>')">Edit</a>
...
0
votes
1answer
559 views
How to forward a response to a JSF page from Backing Bean?
Im currently working in a JSF project and stuck with an issue. I have a requirement like,
I have a button. Clicking on the button should trigger a dojo dialog box where it will be having a "OK" and ...
3
votes
3answers
3k views
Accessing Javascript variables from JSF
I have a JSF file that needs to get populated from the data I get from the JS function that I get from Ajax call to a web-service. The latter part works like a charm. I am able to retrieve the JSON ...
2
votes
1answer
319 views
bean.getValue() only pulling in part of the value not entire value
I am currently using a javaBean to save/load values to and from a jsp. Here what is happening:
I have the following line in my jsp:
<td><input class="partDescription" ...
0
votes
1answer
682 views
passing old value back to javabean from javascript
I have this piece of javascript:
<script type="text/javascript">
function show_confirm()
{
var type = '<%= nameBean.getTxnType() %>';
var old_cd = '<%= nameBean.getCode() %>';
var ...
0
votes
1answer
292 views
jsp page javabean dialog box
I have this:
<% if (nameBean.getTxnType().equalsIgnoreCase("Update"))
{ %>
<TD><B>Gender: </B></TD>
<TD><INPUT TYPE=TEXT NAME="tbGender"
...
0
votes
1answer
337 views
javabean and form submit execution order issue
Here's my issue:
I have a html form that after a user fills in all the required fields I need to do two things.
1st. I save the values in a javabean using the jsp:setProperty name="bean" ...
1
vote
1answer
934 views
Grabbing an HTML value with JSF
I have a javascript that edits a hidden field in my jsf page:
<h:inputHidden id="data" value="" />
and when I click on "Submit" I would like to get the new value of this HTML field that was ...
2
votes
3answers
811 views
writing html bean within JavaScript
hey Guys,
I am trying to write dynamic html bean using java script
but I keep geting the "function is not found" JS error when I press the button ..
here is a sample code
<html>
<html:form ...
1
vote
1answer
2k views
Calling bean functions from javascript
I have the following bean method signatures:
public String foo();
public List<String> getList(String bar);
public String getName(String baz);
The following works for me:
...
2
votes
1answer
1k views
Invoke Backing bean method from JavaScript + JSF
I want to invoke backing bean method from javascript function in JSF. Please could you guide me how to achive this.
Regards,
Ravi Krish