Servlet is a Java application programming interface (API) running on the server machine which can intercept on the requests made by the client and can generate/send a response accordingly.

learn more… | top users | synonyms (4)

0
votes
0answers
8 views

Exclude all my JSP-page/Servlet URL from a Servlet URL containg URL pattern /*

in my java web application i want to make global profile links like facebook, i.e. /username , it can be done by a servlet having url pattern /* and then dynamically check for the RequestURL and ...
-3
votes
1answer
22 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 ...
-1
votes
0answers
15 views

How to write web.xml for url rewriting of jsp page?

I have some file like index.jsp, user.jsp, about.jsp, contact.jsp in a folder named "project" inside webapps. I want some url rewriting like... If i write in url ...
-6
votes
1answer
34 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
25 views

Can't update the database after click on the submit button in servlet jsp

I can't update the database after clicking on the submit button in servlet jsp. index.jsp <%@page import="java.sql.*"%> <%@page import="java.sql.DriverManager"%> <%@page ...
0
votes
0answers
15 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 ...
0
votes
1answer
20 views

How to create a servlet on the fly

For below URL's I receive a 404 error, this is fine since the URL's do not exist. Is it possible to create these servlets while the server is running before the error page is returned ? ...
1
vote
4answers
56 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
vote
4answers
31 views

Unable to receive response from the servlet

I need to retrieve the control back to Jsp with a response for the request i fired earlier. but the problem i am facing is i am not able to get the response in the jsp. I have gone through few post ...
0
votes
0answers
28 views

redirecting based on information you set in database

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
0answers
9 views

servlet Server-sent event not working with Chrome/Safari

I am working on servlet but encountered a problem. The SSE works fine with Firefox but cannot work with Chrome/Safari. The similar code in PHP can run smoothly in all three browsers mentioned above. ...
-1
votes
2answers
45 views

Accessing bean from Jsp

I searched on this forum but haven't got appropriate solution. And if by mistake this one is duplicate then sorry. Coming to problem... I'm setting the values from one of my HTML using servlet like ...
0
votes
1answer
50 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
30 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?
-3
votes
0answers
48 views

Open file with servlet class

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
4answers
47 views

How to generate reports in pdf format and download it?

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
51 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
34 views

how to pass javascript varible to jsp(into scriptlet) with in the same page

I want to pass javascript varible to jsp scriptlet(both are in the same jsp only).I tried the following. enter code here <html> <script language="javascript" type="text/javascript"> ...
0
votes
1answer
14 views

Tomcat ajp port change every time with intelliJ

I am using mod_jk to connect apache to tomcat server in my project. I am using intelliJ IDEA as my development IDE. Problem with me is, Every time I restart my tomcat in intelliJ, it starts ajp ...
0
votes
0answers
12 views

How to make a filter to be get invoked only for jsp and servlets and not for gif or jsp or css or any other file included in jsp page?

I am working on a web application using jsp and servlet. To access this application login is compulsary. To allow athorised user to access the application I am adding session code to each jsp and ...
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
37 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
40 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. ...
0
votes
1answer
21 views

how to list all elements of class when class have foreign key of another class in jdbc servlet jsp mysql?

How can i to list a class elements in java when class have another class field? It looks like this: public class Grad { private int grad_id; private **Drzava drzava**; private String naziv; private ...
4
votes
1answer
55 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
21 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
21 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
42 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 ...
1
vote
2answers
18 views

Using java beans in AJAX

I am asking because I have only seen java beans used with a framework like struts or JSF. Is it possible to send and access a java bean over an AJAX request? Servlet myServlet creates and fills a ...
0
votes
2answers
46 views

How to send the request from jsp to servlet?

How to send the parameter from jsp to servlet?I have an application in which first the servlet sends a data list to jsp.User selects one option from the list and again jsp sends the selected option to ...
0
votes
1answer
25 views

How to make a link of a button inside a servlet

Hello Everybody and thanks for reading and trying to answer this. My current dilema is this. I have a login page which leads to a servlet where I check and validate the login and I need to "paint" a ...
0
votes
1answer
50 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 ...
-1
votes
1answer
21 views

JSTL to retrieve database data using servlet

Hello i am new to java programming Here am trying to retrieve data from database using servlet, and display on jsp page. Please suggest me here is code User.java public class User { private ...
0
votes
0answers
22 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
vote
0answers
41 views

JDO - java.lang.NoClassDefFoundError in Google Web Application

Im trying to make a Google Web Application in Java. I got a servlet named Get.java, a EMF.java that is taking care of the storage and a javabean, Person.java. Get.java: package no.nordnes; import ...
0
votes
1answer
12 views

Setting Attribute in Servlet results in null

I try setting an attribute for a session and want to assign a String to it, that is displayed later in a jsp. I have the following code: The System.out results in null even thought the String was ...
-1
votes
1answer
29 views

Confused with load-on-startup value

When we mention any servlet as loadOnStartup in web.xml then its init method is called at applicaton startup. <web-app xmlns="http://java.sun.com/xml/ns/javaee"     ...
0
votes
1answer
35 views

Passing servlet response to servlet request without client — needed for Java SSO (Single-Sign-On) authentication

Note: This question is specifically for Java but I suppose it can apply to nearly any server-side language. I have a login page with a form that submits to an application's servlet for ...
0
votes
0answers
23 views

Loading image is hanged and not rotating

I want to display a loading image till the response page gets loaded. Here I am submitting the form, servlet will serve the request and takes some 2 times to send the response. Till that time I wanna ...
-1
votes
1answer
39 views

Get ajax response in dynamic generated row?

here i create a dynamic web project in which, I using three text fields in a row. when i fill testcode in first text field and press tab key then testname and rate both values are come in other two ...
-1
votes
1answer
47 views

How to upload file in Servlet/JSP with other input fileds or parameters? [closed]

I want to upload a doc file in Servlet/ JSP with additional information like file name and tag name etc. Is it possible to upload file with other input fields of html form?
0
votes
2answers
55 views

What happens to a servlet request after you close the output stream?

We are running on tomcat for our application server. We have a servlet that generates a PDF and returns it to the browser. It then deletes the temporary PDF file. The issue is that we were having ...
0
votes
2answers
19 views

Receiving NULL in parameter when passing from js to Servlet.

I am getting null when trying to receive parameter from JavaScript. I have gone through few post, but could not figure out where i am making the mistake in my code. Below is code from where i am ...
1
vote
1answer
35 views

How to authorize user in page request if logged in with REST API?

Before, I had asked a question Access control to a page with REST service But maybe I need to ask more briefly and more generally to get the idea. I have a REST API. Client is browser. "login" is ...
0
votes
2answers
45 views

send request from jsp to servlet using gson

I am developing a web application using JSP, Servlets. I am using gson for sending request from jqGrid to Servlet. Following is my code to send request to Servlet: JSP ...
1
vote
2answers
36 views

Find whether check boxes are checked inside a servlet

I have several check box in a form I just wanna way to check whether they are checked or not . If checked i need to store their id in the database(that i can do it ) . But my question is how to ...
3
votes
3answers
77 views

Getting IP address of client

I am developing a web application using JSP, Servlets (Container: Glassfish) in which I need to get clients IP Address. I am getting the clients IP address, because I want to give access to some ...
0
votes
1answer
16 views

Oauth+Java Servlets+OAuthSigner+Servlet class instantiation error

> HTTP Status 500 - Error instantiating servlet class msch.OAuth > > type Exception report > > message Error instantiating servlet class msch.OAuth > > ...
1
vote
2answers
44 views

Wrong URL after clicking submit on JSP from

I am new to JSP and I am dealing with a confusing issue. I have a JSP form located in a sub folder called "admin" in my web-app (named "CMS"). CMS/admin/display_content.jsp My form has the ...
1
vote
1answer
57 views

Spring Maven - context configuration in resources folder

As I found in other question at stackoverflow, it is better to keep the configuration of spring in src/main/resources folder. However when I use mvn jetty:run it tries to load context configuration ...

1 2 3 4 5 231