Tagged Questions
0
votes
0answers
34 views
How to get a request param sent from a Managed bean to a servlet filter?
I am not a JSF expert and I am trying to get a request parameter sent from a backing bean to Servlet filter but It does not work. I have spent a lot of time searching I appreciate any help, this my ...
-4
votes
0answers
31 views
What are the exactly differences between Faclets, Servlets, JSF and JSP? [duplicate]
I hope somebody can answer this question what are the differences between these technologies?
1
vote
1answer
53 views
Setting correct value to JSF element
I'm trying to acces an JSF Element from a Java Bean, so I can use it in my app, but I need to send the text from a textarea to a <f:setPropertyActionListener /> The problem is that I don't know ...
0
votes
1answer
32 views
How do I exclude servlet-filters from having to be serialized?
I just converted my Beans to be ViewScoped instead of RequestScoped. However, since I had to add Serialized to those beans, I am getting two java.io.NotSerializableException exceptions.
This is my ...
0
votes
1answer
38 views
Navigate to requested page after login
I know this issues has been discussed so many times, however, I did not manage to get it straight. I would really appreciate if you would take a look at this.
So, I have following issue:
If a user ...
1
vote
0answers
44 views
Facelets template not found in a common jar in an exploded deployment
Here is my Facelet template location : WAR/WEB-INF/lib/common.jar/META-INF/resources/m0/template.xhtml.
It throws the following exception when the war, and the jar in it, are deployed as exploded ...
1
vote
1answer
33 views
How not to allow Facelets sources to be shown in browser by URL
In my web.xml I have:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
I got some pages, ...
0
votes
0answers
41 views
How to mask url and write our own URL JSF
I want to mask my JSF urls, to customization purpose.
For Example:
If url is : http://localhost:8080/myapp/mypages/index.xhtml
I want to mask it as : http://localhost:8080/MyApp/Home
I want do ...
1
vote
2answers
159 views
Forwarding a request from a JSF managed bean to a Struts 2 action does not work
Within a JSF managed bean, I have the following code taken from this past question:
String uri = "/myAction";
FacesContext.getCurrentInstance().getExternalContext().dispatch(uri);
myAction is the ...
0
votes
1answer
56 views
ice:dataExporter Exporting to pdf issues
I am trying to export some data displayed in my datatable using the component present in the ICEFaces 1.8 components showcase.
In the doc, they have mentioned to import iText.jar (preferably ...
0
votes
0answers
124 views
DataTable First Row First Column taking default value on page load
I have a List containing the employee details.
I am binding the datatable using the List as shown below:
<ice:dataTable id="dataExportTable"
var="employee"
...
0
votes
1answer
76 views
Icefaces 1.8 SelectInputText String value auto-complete
Seems to be some silly mistake in my code but not able to figure it out :(
I have a SelectInputText component in a screen. On selecting a String value from the auto-complete functionality, I need to ...
0
votes
1answer
63 views
Changing welcome file location results in deployment failure
I am getting below error.
FAIL - Application at context path /sampleJSF could not be started
I want to change my welcome file location. I have a index.jsp page at WEB-INF/pages/index.jsp. How ...
0
votes
0answers
80 views
How to access a bean in ServletContextListener's contextDestroyed
I have a JSF application that uses JSF 1.2 and Servlets 2.3 and Seam 2.2.0. I want to run a sort of backup everytime the application closes. I have tried using the ServletContextListener like this:
...
0
votes
0answers
83 views
Is it possible to add a dynamic Image (JSF) into a css file?
I have a templating system which uses servlets to load images. That way, if an image does not exists inside the current theme/template, the servlet loads a default one.
I am looking for a way to do ...
1
vote
0answers
185 views
Print current html page on printer from java bean in jsf
i need to change javascript window.print() command with java backing bean process.
here, i am using Jsf1.2
as programmatic, print any web page,
we use window.print(). which opens one menu to select ...
1
vote
2answers
118 views
Pass session values from action to servlet in seam framework
I am setting the session object in TestAction class and when i am trying to get the session object in TestServlet it returns null. Any one please tell me how to pass session from action class to ...
0
votes
1answer
80 views
JAVA EE 6 cluster and webapp images
I'm developing an application using JAVA EE 6, more specifically, Glassfish v3.1.2.2.
Before, I used to put images and files uploded by users in my database. this would make it easier in case I ever ...
1
vote
4answers
113 views
Can a JSF Project run without using Servlets?
I am new to JSF and I have a question:
As far as I know Servlets are classes that are used to get HTML requests and to provide HTML responses. Such as:
HttpServletRequest request, ...
0
votes
1answer
160 views
How use SocialAuth with JSF to redirect?
I'm trying to use SocialAuth, the idea is very simple, click in log in with facebook then redirect the user to my website signed in.
The log in part I get it, which is below :
1) /index.xhtml
...
0
votes
1answer
165 views
How to set character encoding on JSF resources in PrimeFaces app?
I'm using PrimeFaces 3.4 with MyFaces 2.0.7 on WebSphere 7. I'm using filter to set the response encoding to UTF-8:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
...
0
votes
1answer
130 views
What is an example of state pattern in Core Java/JSF/Servlets?
I just learnt about the State pattern . I would like to know where in core Java / JSF/Servlets code s can I see this pattern being implemented ? I want to see how the state transition is implemented ...
0
votes
0answers
66 views
Turn off JSF servlet for dijit template files using url-pattern
Is it possible to have JSF Faces servlet not parse /dojo/* so that dojo can properly pull in dijit HTML template fragments without being treated as JSP pages?
web.xml:
<servlet>
...
1
vote
1answer
82 views
Login into JSF/IceFaces3 application via SSO
I have a JSF/IceFaces3 application running. This application should run in an intranet environment after login to it via SSO.
Boss told me to provide him with a link he can call like:
...
1
vote
1answer
98 views
Requests not being routed to JSF Servlet
I have a JSF webapp which is exhibiting the following behaviour:
http://localhost/myapp/ returns the raw contents of index.xhtml
http://localhost/myapp/web/ returns a blank page
...
0
votes
1answer
192 views
JSF 2.0 and custom path in @WebServlet
I have a JSF webapp with some standard JSF pages and backing beans.
I am trying to use the urlPatterns parameter of the @WebServlet annotation to get my app pages served from a non-root path. Ex:
...
1
vote
1answer
391 views
Passing value from Servlet to JSF Action method in WebLogic
I am trying to pass an Object from Servlet's doPost() to JSF's Managed bean's action method. But I am unable to do that.
I have tried to set the value from Servlet as:
...
1
vote
1answer
225 views
Accessing FacesContext in servlet
I'm working on a JSF (v1.2) application. In my application I need a generic servlet which could serve any resource (PDF, Images, Excel, etc). My idea is to ask the caller to send the required ...
0
votes
0answers
79 views
Want to Retain the calling app's url in addressbar after redirecting
My project is in Java(Spring/JSF) and from our project we are calling .Net application.When we reached to .Net application, there we do some valid search and after that they just ...
0
votes
1answer
502 views
java.lang.NullPointerException at org.apache.jsp.index_jsp._jspInit
When i try to run project deployed inside tomcat i get error like
java.lang.NullPointerException
at org.apache.jsp.index_jsp._jspInit(index_jsp.java:23)
at ...
0
votes
0answers
213 views
openfire java xmpp chat server and tomcat servlet based chat server [closed]
I installed openfire chat server which is a Java based xmpp compliant server.
And I can have a Tomcat servlet based chat application too (that may be xmpp compliant).
Now, does it makes a difference ...
0
votes
1answer
201 views
difference and relation between Facelet, Servlet, JSP, JSF [duplicate]
Possible Duplicate:
What is the difference between JSF, Servlet and JSP?
I'm new to Java2E stuff. I'm seeing bunch of different terms like JavaServer Faces, JavaServer Pages, Facelet, ...
0
votes
1answer
90 views
Servlet not being invoked in Tomcat
I have a simple image servlet to serve up images that I am storing in Mongodb GridFS. My servlet does not seem to be invoked, however.
Below you can see part of my web.xml, as well as the xhtml and ...
2
votes
1answer
135 views
How to access viewscope managedbeans from servlets
I would like to access a Viewscope managedbean inside a servlet.
I searched for similar question and got these ones:
how to get beans from view scope which uses FacesContext.getCurrentInstance(), ...
0
votes
0answers
126 views
Embedding a self-contained Java Server Faces or Servlet (?simulated) web app inside of an applet (for distribution of a sample application)
(After giving this some thought, I don't know what I meant by saying applet. What I should have said was standalone Swing app with Swing browser).
I don't have access to a URL, or a Java Web Server ...
0
votes
1answer
118 views
render xhtml file from servlet
I wonder if there is a way to load, interpret and render a .xhtml file from a servlet.
What I want is to have a xhtml file witch contain for example a custom row within a list, to be loaded from a ...
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
1answer
136 views
Integerate JSF,servlet AND JSP
I am just a beginner at JSF So I didn't know whether it is right question.
Is it possible that If I make a form with JSF tags/components and define a servlet for action attribute (i.e can form data ...
1
vote
1answer
301 views
Screen resolution parameter setup, session bean and JSF Phase Listener
I am currently facing the following issue and I would appreciate if someone could help me out here. I am pretty new to JSF...
I have a JSF application with the following architecture:
The main ...
2
votes
1answer
632 views
Accessing JSF session scoped bean from servlet which is called by applet embedded in JSF webapp
I need to access a session scoped bean from a servlet. I already tried
UserBean userBean = (UserBean) request.getSession().getAttribute("userBean");
as described in this post. But I only get null ...
1
vote
1answer
103 views
ExternalContext equivalent for non jsf application
trying to change one jsf application using jsp, servlet and java, in jsf application we were using
ExternalContext exctx = FacesContext.getCurrentInstance().getExternalContext();
InputStream var= ...
0
votes
2answers
244 views
HttpSession is null
A) FacesContext facesContext = FacesContext.getCurrentInstance();
ExternalContext externalContext=facesContext.getExternalContext();
HttpSession session = (HttpSession) ...
0
votes
2answers
281 views
POST Variables to ADF Application
I have an external application that needs to send POST data to a ADF Faces jspx page, then logic inside the ADF application will take over.
Everytime i try to access the POST variables in the ...
0
votes
1answer
161 views
Images won't load if they are of high size
I am storing images in DB using MEDIUMBLOB. When I try to load image through a servlet, I am able to see those images. However if the image size is big (1 MB or more), I can see half or 3/4th image on ...
0
votes
1answer
124 views
encoding a list of key/value pairs into a URL request parameter
Is there a standard API call (or set of calls) that allows me to encode a list of key/value pairs into a SINGLE request parameter? Somehow I have never done this before.
What I am looking for is to ...
0
votes
1answer
550 views
How to prevent servlet response encoding when download text/html file? Spring+JSF
I use tomcat 5.5, JSF 1.2, Spring 3
I have the servlet that passes file from disk to browser. The problem occures when that file has a text/html mime type.
I can't know what encoding that file might ...
0
votes
1answer
27 views
Build reference EL tags to beans within a servlet?
I have a servlet that reads an external HTML file as a String. I want to add a specific button inside this html which then makes reference to one of my EJB.
Therefore I inserted a:
String ...
0
votes
1answer
325 views
Send JSON between two applications JSF
I want to send data between two applications by using JSON and Ajax.
For the first test, i want to click on a button (in xhtml) and receive data in managedbean (in the second application).
For this, ...
1
vote
1answer
1k views
JSF error PWC3991: getOutputStream() has already been called for this response
I am creating a project in JSF and spring whose main only purpose is to generate PDF file in the browser. Everything seems fine and pdf generated too but on console i am getting this exception.Anyone ...
0
votes
1answer
501 views
How to set <selectOneMenu> value to bean variable?
I am trying to set value of to bean setter but it is not working
here is my .xml code
<td style="width: 10%; height: auto">
<h:selectOneMenu ...



