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

webapp version 2.4 to 2.5 out of memory

I have a requirement to update the EJB version of an application which has a schema version of 2.4, the ejb version being upgraded to is 3.0 which uses annotations, in order for the annotations to be ...
2
votes
1answer
15 views

Servlet: Not able to get the response back to ajax function(in success block)

From jsp i need upload file through ajax call that intern make a request to servlet and upon completion of upload process i need control back to ajax functon so that i can show all imported data to ...
1
vote
1answer
14 views

programmatically retrieve security constraints from web.xml

Is there any possiblity to obtain the list of constraints from web.xml ? <security-constraint> <web-resource-collection> ...
-4
votes
1answer
36 views

HTTP Status 500 -

I am getting this error on remote server line no 51 is: int key=(Integer)request.getSession().getAttribute("key"); java.lang.NullPointerException ...
1
vote
2answers
32 views

JSP not returing result with drop down menu

having a issues with getting the result of a query based on the drop down select, for some reason its not returning anything when trying to post it on to the jsp. here is my what code looks like ...
-5
votes
1answer
24 views

Enter values in database [closed]

This are my jsp and servlet files, I want to enter values into my database, but when I enter values in JSP form and click on submit, the java file gets downloaded, I am beginner in database, can some ...
-5
votes
2answers
43 views

Books to learn Servlets and Jsp [closed]

I would like to learn more on the Servlets 3.0 and JSP 2.2. Can you suggest me some books or links, please?
0
votes
1answer
30 views

Accessing form data stored inside a bean from within a servlet

I am trying to populate a bean class (UserBean.java in package lp) when a user submits login credentials on Login.jsp. This bean class is then accessed from a servlet (ConfimUserDetails.java also in ...
-3
votes
1answer
24 views

how to keep session continuing after deleting history

Downvoting requires comments In my application i am not using cookies so when you delete the history in a browser then it should not affect my application. But this not happening with me. I use only ...
0
votes
0answers
21 views

Using sendRedirect inside a servlet forwarded with request dispatcher

I have a filter that implements a custom convention for loading servlets and JSPs. In that convention I am using the following code to include the servlet: servletContext .getRequestDispatcher( ...
0
votes
3answers
48 views

Java JSP getParameter display null word

I have a "Hello World JSP" i need to get the users name from the URL and display it, It works fine but it needs to display a generic "World" if not user name is there. Im not sure how to accomplish ...
0
votes
0answers
20 views

Ajax not forwarding data to servlet

The dropdown in the HTML file gets populated dynamically. Here, I am passing the form value to the servlet via Ajax and the servlet generates the table data which gets appended to the table. The ...
1
vote
1answer
23 views

How I update database after session gets destroyed?

In my website I am creating a session when a user opens the home page. Now if he adds some items into the cart , items will be saved in a db table with session id and item id as a column. Now if ...
0
votes
3answers
66 views

Servlet in Eclipse - Where to put static content

When writing a servlet with Eclipse, where am I to put my static content (images, CSS, etc.), so that I can make my HTML link to it (e.g. <img src="http://localhost:8080/context/image.png>). I ...
0
votes
2answers
37 views

Can't locate the file on local file system from Servlet

I wrote a RESTful web service using Jersey library and in order to respond to the request I have to read a text file in local file system. C:\data.txt. The servlet works fine when I run it with tomcat ...
1
vote
0answers
31 views

open file using only one information

I want juste to know how to open a file from my jsp page using servlet I have juste this information of my file : byte[] file= c.execute(connector, doc); I want to know if I have juste this ...
0
votes
3answers
21 views

Life cycle/length of a DataSource injected with @Resource annotation

I'm far from an expert of the intricacies of Resource Injection, and of indeed DataSources in Java, but I generally understand the process of doing a lookup for a predefined JNDI resource to get a ...
-1
votes
0answers
21 views

I hv to create table for items purchased for every diff user who is registered & sign in, so to retrieve afterward to Mycart Page?

String uname=(String) request.getAttribute("uname"); String pro_id= request.getParameter("pro_id"); String pro_name= request.getParameter("pro_name"); String pro_price= ...
0
votes
1answer
19 views

Printing Data from Servlet to browser asynchronously

I'm trying to send data to a web page sequentially, I do know how HTML works, and that the most likely answer to this would be ajax, but the requirement is that this work with only java and html. A ...
0
votes
0answers
10 views

Unable to export full GWT celltable data to excel when pagination is implemented

I have a GWT application where I have some data in CellTable. I am trying to export the celltable to excel using gwt-table-to-excel utility. The data is exported fine. But my problem is I have ...
0
votes
1answer
37 views

open file in jsp using servlet

I want to open a file using java code (servlet) in my jsp file I have a button with will call a java code in order to open a file in my web application , I have this code in my page jsp ...
0
votes
0answers
19 views

404 error while accessing servlet (ajax GET request)

I keep getting 404 error while the ajax request is sent. The following url returns 404. localhost:8091/App/GetQuestion?qid=1 What is the error in the code? The html. web.xml and servlet code is ...
1
vote
1answer
34 views

RESTful authentication for Java EE

I've been spending some time evaluating the options available for restfully authenticating a user in a JEE application. So, please suggest if the options listed below are valid along with the ...
0
votes
0answers
16 views

Legacy web application in jsp,servlets to be made i-pad compatible

Currently we are having a web application that's been developed using jsp and servlets. A new requirement has come to make this application ipad compatible. 1)What is the best way to proceed? 2)By ...
1
vote
2answers
22 views

Client Automatically disconnects after some time in websocket

My desktop App client is connecting to web server through webSockets. I am using javaWebSocket api for the client side, and I am using Apache tomcat 7's webSocketServlet. I do't know what I am doing ...
0
votes
0answers
7 views

Filter-mapping ID in servlet from javax.servlet.Filter

The Servlet 2.5 specification states : <xsd:complexType name="filter-mappingType"> ... <xsd:attribute name="id" type="xsd:ID"/> </xsd:complexType> Here is my filter mapping ...
0
votes
1answer
38 views

check success and error in ajax

I have a button in jsp like this. <input class="submit_button" type="submit" id="btnPay" name="btnPay" value="Payment" style="position: absolute; left: 350px; top: 130px;" ...
0
votes
3answers
38 views

java.sql.SQLException: ORA-00933: SQL command not properly ended in selecty statement

I wrote query in servlet as.... "select Order_No from " + yard + "where Id= '" + idd + "'"; where yard is variable for table name and idd is variable for Id but i still get an error so please tell ...
0
votes
0answers
11 views

prepackaged Web.xml parser and objects

I have done a quick look and cant find one. Id was hoping one was available with some nice validation so i dont have to write one myself using JAXB etc. I guess could also rip out parts of jetty or ...
2
votes
1answer
31 views

Eclipse prompts to download servlet from localhost

I've been getting propmted to download the servlet that is running (CmdServlet) from the local host every time I run it and change the url to http:// ...
0
votes
1answer
43 views

Framework for creating custom Java Servlets [closed]

I'm creating a Java online game, which will need a Java server for stuff such as login validation, DB manipulation, and the turn-based game itself. The clients will send requests to the server using a ...
-2
votes
0answers
24 views

Nullpointerexception and 500 status code ocurred while running simple servlet connecting database

I want to create a servlet that connects to database and check the corresponding u/name and password and return a response. However, when I run the project in server(apache) it throws me with the ...
0
votes
1answer
14 views

Accept CSV attachment from Java HttpServlet in jquery.ajax()

In my webapp I want the user to download a csv file as a response to a POST ajax request. The response is properly sent, and looks ok, but at ajax.success() nothing happens. I don't want to ...
0
votes
1answer
30 views

How to Edit input type text field created from servlet

I have created a text field from servlet out.println("<input type='text' class='userValue' />"); it shows properly in my page. but when i click on the field it does not allow me to type ...
0
votes
1answer
34 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
22 views

OSGi Servlet with HSQLDB

I am looking for an easy way to use HSQLDB with an OSGi Servlet. I allready created an OSGi Bundle out of the HSQLDB.jar following this guide: ...
0
votes
1answer
18 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 ...
0
votes
1answer
11 views

Simple axis2.xml for Axis2 embedded in webapp

I am developing a webapp with an embedded webservice with Axis2 using Maven. The service implementation is a POJO with RPC-style interaction, the target appserver is Tomcat running the Axis2 servlet. ...
0
votes
2answers
14 views

Workflow clearification on OSGi Servlet and HTML UI

I need some clearification on the Workflow with OSGi Servlets and HTML Frontend. I am an old school HTML and Javascript programmer and new to all this OSGi, Ajax and JQuery stuff. I am working on an ...
2
votes
1answer
52 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
21 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
22 views

doGet() is not implemented by this URL

In my servlet I used doPost() method and while running the servlet it is giving http method doGet is not supported by this url.And I set POST GET in my web.xml under .Still getting the method ...
2
votes
2answers
36 views

<form action=“/sampleServlet” giving me exception

In my jsp if I call <form action="/sampleServlet" method="get" name="form1">, I get the following exception : http 404 error--sampleServlet is not found.I set sampleServlet in web.xml ...
0
votes
1answer
22 views

How many controllers(servlets) can be present in a java MVC web application?

I am currently trying to develop one web application that follows MVC in java.I came to know that a well designed MVC web application should contain only one servlet which handles all user requests.Is ...
1
vote
1answer
19 views

How to turn off automatic restart of Tomcat in Eclipse?

When developing Servlet, after changing a bit of my java code, and click run. Eclipse ask me to whether to restart the service or not. I click 'yes' and tick 'remember my choice'. So every time, ...
3
votes
0answers
35 views

Why I have to restart Tomcat every time I change the code for my servlet?

When developing Servlet using Tomcat and Eclipse, I find that I have to restart Tomcat once I change the code for my Servlet, or I will see nothing that have been changed. Why I have to do that? ...
0
votes
1answer
17 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, ...
1
vote
1answer
30 views

How to send the product data (from table) when “Add to Cart” is clicked to My cart page?

I'm working on a small 'Shopping Site' college project...I had created everything but stucked at one Problem. There is a content part aligned center in my page where i have a table for Product ...
0
votes
2answers
37 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
39 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> ...

1 2 3 4 5 233