0
votes
0answers
31 views

sendRedirect not working in postback requests

With JSF 2.1.6 I try redirecting the user to a URL, it works with GET requests but not with POST requests. Through firebug's Network window, I can see the redirect response received by browser after ...
0
votes
1answer
23 views

Design decision for text message queueing implementation

I have a scenario where using certain text message gateway I receive incoming messages via GET within the servlet, compose the reply message, store it in database with id key and then just send it out ...
0
votes
1answer
14 views

Write HTTPServletRequest stream to Datastore of Google App Engine

I am pretty new to App Engine and Java Development and try to receive a InputStream via Http Post and store it into Datastore. To test this I use the uptime from another computer and send 10 uptime ...
1
vote
1answer
40 views

How to send Servlet response using Listner

I am developing multi-threaded java sevlet having following scenario Data comes in different chunks and for that I only need to send response in last request. Data chunk forwarded to other classes for ...
0
votes
0answers
18 views

jtable not woking properly in jsp

I wanted to do table something like given in http://jtable.org/ and i have created one in jsp But my problem is that when i press add appointment then it is not opening in another dialog box. When i ...
0
votes
1answer
13 views

pdf.js: PDF file from servlet which requires a variable

I am using pdf.js to view PDF files in my GWT application. I've implemented the viewer exactly as the product of a build operation as described on the readme. When I use the viewer with a static pdf, ...
0
votes
2answers
27 views

how can i get the PortletRequest

My problem is to obtain PortletRequest from HttpServletRequest I put this sentence: PortletRequest request = (PortletRequest) HttpServletRequest.getAttribute(); What should i put into the ...
0
votes
1answer
31 views

How to force Tomcat to delete expired Sessions when loggin User closes his Browser?

I implemented a SessionListener to track the open sessions of my webserver I set in my web.xml: <listener> <listener-class>demo.MyHttpSessionListener</listener-class> ...
0
votes
1answer
79 views

Get full URL and query string in Servlet for both HTTP and HTTPS requests

I am writing a code which task is to retrieve a requested URL or full path. I've written this code: HttpServletRequest request;//obtained from other functions String uri = ...
0
votes
0answers
22 views

Cast HttpServletRequest to PortletRequest

Hi i need some help for this problem i hope you guys can help me I have this code: protected void buildPdfDocument(Map modelo, Document document, PdfWriter pdfWriter, HttpServletRequest request, ...
2
votes
2answers
29 views

Error on getting response from HttpClient using Jetty 9

I want to get content from an external server using Jetty and HttpClient class. Now I want to copy the obtained response as HttpServletResponse and return to client (Browser). I've tried something but ...
-1
votes
4answers
45 views

Send parameters from JSP to Servlet using POST

I am building a simple web app and attempting to create a login page. The page consists of a JSP with a form which loads a Servlet. I have got the form working using the GET method: JSP looks like ...
1
vote
1answer
39 views

java connection class, passing string from servlet

I am developing a web application using JSP and Servlets.(Database: Oracle10, Container: Glassfish). I have developed A Class for creating connection. (Conn.java): public class Conn { private ...
-1
votes
1answer
22 views

Index file can not run direct when enter URL in my java website?

I am working on a Java project on a webserver. Uploading the .war file goes fine. When I navigate to the site name, for example www.example.com, the website gives me an error; but entering ...
2
votes
0answers
17 views

Jetty Maven plugin reload ignores web.xml listeners

I have a Spring MVC Java web application using 2 Spring contexts. The root application context, loaded via ContextLoaderListener, and the servlet Context. I'm loading the application with the Jetty ...
-1
votes
1answer
30 views

how to insert datas in jtable

i have created a table using jtable and the hint i got from this site http://jtable.org/ The Problem i am facing is that the source is in .net and i am implementing this idea in jsp. Asi do not know ...
0
votes
2answers
31 views

How do I call method in RemoteServiceServlet from HttpServlet?

I am using GWT and want to be able to invoke the method incrementProduct(String productName) in my main RemoteServiceServlet by typing this URL in my browser: ...
-3
votes
0answers
29 views

Can we use webSockets with Desktop application? [closed]

Can we connect (java) desktop application client with tomcat server using web sockets, if yes than it will be better if some one can refer me to a link with examples.
0
votes
2answers
49 views

is not abstract and does not override abstract method error

I am totally stuck in one of my classes showing the error: ResettableHttpServletResponse is not abstract and does not override abstract method getHeaderNames() in HttpServletResponse Here is My ...
0
votes
0answers
15 views

using RabbitMQ connection inside servlet

I'm trying to write a servlet that receives some messages from clients via GET and publish them on RabbitMQ. I have created a Broker class: public class Broker { private static final ...
0
votes
1answer
20 views

Persistance.xml vs DispatcherServlet

I am using JPA 2.0, Hibernate 3 Annotation Version, the problem is that i am confusing in Persistence.xml & DispatcherServlet My persistence.xml file contains: <?xml version="1.0" ...
-1
votes
5answers
59 views

How to pass url as input to a servlet from html? [closed]

I have a requirement to write a servlet which will accept two parameters present in a url as input. Is there any way to pass url from html to a servlet?
0
votes
2answers
30 views

Servlet address is incorrect

I'm trying to create a servlet and I am using Tomcat 7 . I added a folder for my application in the webapps folder and it looks like this : --[webapps] --[agtel] --[web-inf] ...
0
votes
0answers
17 views

Reflect Servlet Change without Restarting

Whenever I change a servlet - meaning recompile the java class, it only gets reflected when I restart Websphere. Is there a way to reflect the change without restarting, something like hot code ...
0
votes
2answers
55 views

page not redirecting after session expires

i have done a simple page to move to another page when session expires. I have set the time as 50 seconds and after that it will move to a page But unfortunately its not moving and i am helpless to ...
0
votes
1answer
29 views

How to access the current page url typed in jsp?

I use .htaccess file for url rewritting.To enable .htaccess file I put the urlrewritefilter-4.0.3.jar file inside WEB-INF\lib\ and inside web.xml I have added the following code. <filter> ...
0
votes
4answers
54 views

how to send an alert when session expires

i wanted to throw an alert when session expires and when you press ok button in the alert box then it will take you to login page. For this i thought to create a timer and timertask and in the run ...
2
votes
0answers
21 views

How to persist session in firefox when calling another servlet in the parent window

I am using Window.open("servletUrl","_parent","") in my code to call the servlet for downloading a file; I am also using session object containing set of dto in my servlet. But when I am using ...
-1
votes
0answers
39 views

saving generated pdf in servlet [closed]

i have generated a pdf file inside servlet. i want to save that file using "application/octet-stream".. servlet PdfPTable firsttable = new PdfPTable(2); ...
1
vote
1answer
24 views

404 error while redirecting the request from servlet to jsp

In-spite of reading many post regarding 404 error i could not figure out my mistake while re-directing the request. I know 404 is mainly due to wrong path provided by us, but still i am unable to ...
-2
votes
1answer
53 views

null point exception when I try to open a file

I want to open a file with servlet I have a function which return this type byte[] and I have a jps file which contain a button , when I click in this button this methode (consult) will be called ...
0
votes
2answers
39 views

Tomcat version for Java 7

I am new to Java and using Java 7. I have installed netbeans 7.1 and opened a web project with default settings. Following image shows the settings. Even though the tomcat is pre-installed it is not ...
-3
votes
1answer
27 views

Browser Cookie Persistent

My question is very simple, it may be asked before but the answers are not useful for me so i am asking it again. How can i persist my cookie stored at browser , after is cleared manually ? Scenario ...
-6
votes
1answer
44 views

open file througt servlet [closed]

I want to developp a servlet which will open a file the type of this file is byte[] I have juste this code byte[] file= c.execute(connector , doc); as you see this code return a file which ...
0
votes
0answers
17 views

gettext-commons per-request locale in servlet

The gettext-tutorial states that The preferable way to create an I18n object is through the I18nFactory. The factory caches the I18n object internally using the the package name of the provided ...
1
vote
4answers
70 views

Displaying logo in JSP

I have been trying to display an image in my JSP file but can't seem to it right. The picture is inside a folder named "img" which is in the same directory as my WEB-INF folder. Inside my JSP I am ...
-1
votes
0answers
33 views

redirecting based on information you set in database [closed]

I have an java web application that sets a title to users as either manager employee or client and I want all three login pages to be different for each title. my login system is very simple and I was ...
0
votes
1answer
53 views

Java Servlets: How to repeat an HTTP request?

I'd like to repeat an HTTP request automatically if a database deadlock occurs; however, FilterChain.doFilter() is defined as a unidirectional chain (so I cannot reset its state). In cases where it's ...
-4
votes
0answers
52 views

Open file with servlet class [closed]

I want to open file using servlet class I have in my jsp file a button when I click in this button it will call a methode in my servlet class in order to open a file the type of my file is byte[] ...
-4
votes
5answers
57 views

How to generate reports in pdf format and download it? [closed]

If anyone knows how to generate periodic reports in Java web application and to available it for download, then please guide me. I have no idea about it. so please help me...
-5
votes
1answer
53 views

Explanation of a Servlet doPost implementation [closed]

I found this code on some tutorial, and there was no explanation about it, can someone explain me the code ? protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ...
0
votes
0answers
9 views

How do I return a search from GAE datastore to android application?

I am trying to do search for a certain property in my datastore from my android app using servlets. I am not sure whether to do doPost or doGet. Would the search parameter get passed to the servlet ...
0
votes
1answer
49 views

Spring MVC http REST explanation, POST + GET

I have a webapp running on Spring SVM running in this direction: http://localhost:8085/mongodb The main controller that handles GET and POST request look looks like this: @Controller public class ...
5
votes
1answer
46 views

One socket, multiple http request, different Host header but server returns cached Host header

I am using a custom servlet engine of a vendor product. Our server are fronted by different proxy with different host names. Assuming the host names are host1.localhost.com and host2.localhost.com. ...
4
votes
1answer
62 views

How to map requests to HTML file in Spring MVC?

Basic configuration files looks unintuitive. If I create simple hello world example, and then rename home.jsp to home.html and edit servlet-context.xml file from <beans:bean ...
0
votes
0answers
27 views

How do I connect my android app with google app engine?

I am having trouble inputing data into my google app engine data store. I have a button on my app (virtual android), and when pushed this string "Value my user entered" should be inputed into my ...
1
vote
0answers
23 views

Using a servlet to handle both multipart and normal requests

I am developing a web application using servlet API 3.0 and AJAX. I've developed and tested locally (using run-jetty-run in Eclipse) and it seems to work fine. When I deploy to my Tomcat7 instance, ...
1
vote
0answers
48 views

JSTL - Assign list content into an array

I have list of users and I want to assign each user into an index of array: <% User users[] = new User[n]; pageContext.setAttribute("users", users); %> Now: <c:forEach ...
0
votes
1answer
113 views

How to retrieve specific data contents in database from servlet to jsp using java?

I am developing one web application and following MVC pattern and using hibernate and postgresql.I have data in my data base tables.Now my servlet retrieves the data from data base by accessing bean ...
0
votes
1answer
33 views

Servlet @WebServlet urlPatterns

This is a quick question but I couldn't find a quick answer. Now I have a servlet BaseServlet, when user request any of the url below: host host/ host/BaseServlet It should always refer to the ...

1 2 3 4 5 151