0
votes
3answers
46 views
How do I access a text file from within my war
How do I know what file reference to use to get a file from my WAR.
The structure of the WAR is:
WAR
src
- model
- web
build
WebContent
&n …
1
vote
1answer
28 views
Reverse Ajax + JSP-Servlet
Hi,
We are trying to create a reverse ajax in our project.
I've checked on the net and didn't find something concrete. I was unable to run any of the tutorials provided successfu …
1
vote
3answers
60 views
Migrating from Tomcat 5.5.x to 6.0.x.
I'm migrating an mature application from Tomcat 5.5.x to 6.0.x. What are the sticking points that I need to make sure that I address?
I use a couple of Tomcat's services that I s …
-4
votes
2answers
58 views
How do I make an search bar at the top of the page like on stackoverflow.com?
I need to make the search bar at the top of the page like stackoverflow.com have in its website. I need some sample code for jsp/servlet for performing the operation for searching. …
0
votes
1answer
20 views
web service client reference, in a servlet
I have a servlet, and that servlet uses a .net web service to perform some function. To do this, I created the webservice client in Netbeans using the "jax-rpc" style client.
Let' …
-1
votes
1answer
16 views
how to implement a search from search box?
I've got a requirement where a user enters a few terms into a search box and clicks "go". Does anyone have any good resources on how to implement a dynamic search that spans a few …
-1
votes
0answers
19 views
what code will be for search bar in jsp search bar should be like at the top of the page like on stackoverflow.com?
I need to make the search bar at the top of the page like stackoverflow.com have in its website. I need some sample code for jsp/servlet for performing the operation for searching. …
1
vote
1answer
36 views
Looking for a simple, secure session design with servlets and JSP
I'm working on an intranet-only web application (J2EE) that requires some basic security features. There will be relatively few authorized users for the site, but I still need to i …
0
votes
1answer
14 views
Using a file form field with a Java servlet
I am tring to retrieve a filename or the file itself for use in a java servlet (from a web form).
I have a file form field:
<form enctype="multipart/form-data" method="post" …
0
votes
3answers
45 views
Getting cannot convert object to ArrayList error when retrieving ArrayList from HttpSession
I have saved an ArrayList to the session object. I am trying to retrieve it using
sriList = session.getAttribute("scannedMatches");
I am getting the compile time error "Cannot c …
0
votes
3answers
57 views
How do I retrieve the values of checkboxes when the Id values are dynamically generated
I am dynamically naming a set of checkboxes based on certain files names (user is selecting file to include for some processing).
Is there a way I can retrieve the files names or …
0
votes
0answers
29 views
Some servlet/jetty questions
Having the ServletAPI plus the configurations you can make to jetty or any other web container
Do we have a way to limit the request sizes ? (ie to close the connection if postin …
0
votes
0answers
14 views
IllegalStateException shutting down webapp with PicoContainer
I have a Java webapp that's using PicoContainer for dependency injection. When I shut down the app, I sometimes get the following stack trace repeated a few times in my error log:
…
0
votes
1answer
52 views
JSP page without HTML code for exporting data to Excel Sheet
Hi friends,
I am facing a problem in exporting my data to excel sheet, this is because of some code which other developers in my team made. So the main problem is to export the dat …
1
vote
4answers
35 views
Java Servlet Pooling
Servlets 101, under Tomcat 6:
Could someone kindly point me to a good explanation of the best way to eg. create a Collection of expensive Foo objects at servlet startup time and s …
