servlets

Need a design approach or suggestion for a simple structure using Servlet.

Hi I have to design such that whenever user pass a query I process it using servlet and then call the js page to draw the chart 1> user writes a query on a page 2> the page call the servelt class public class MyServlet extends Httpservlet implements DataSourceServlet {..... return data The user see a beautiful string like this.. g...

communication between remote servlets

I have two web applications say App1 and App2. I want to call a servlet which is in App2 from a servlet in App1. I'm using URLConnection for this. I'm able to pass parameters to the servlet in App2 also and I'm also able to receive response from the servlet as string. But I want to send java objects from the servlet in App2 and receive ...

How to load ms word document in jasper report

How to load word document in the jasper report in java. Thanks in advance ...

session management with Flex+Java Servlet using Httpservice

Hi I am new to Flex. I am just wondering how to manage session and cookies for logging in, logging off in Flex? I am using Flex HttpService and Java servlet. Thanks! ...

Does http and https will share the same sessions

I am building a web application and I need to know whether I can share the Same session or not between http or https? ...

Java Servlet: getInitParameter not work in Service()

I've added some parameters in my web.xml config file, as follow: <context-param> <param-name>service1</param-name> <param-value>http://www.example.com/example2.html&lt;/param-value&gt; </context-param> <context-param> <param-name>service2</param-name> <param-value>http://www.example.com/example2.html&lt;/param-valu...

wordpress servlet mapping not working

I have the latest Wordpress running on Tomcat 6.0.26 virtual host with Quercus PHP servlet. It works, except when I try to use perm links. A url such as /index.php/my-page-name doesn't seem to ever hit the PHP servlet . It gets a browser error that request resource is not available. It's like it isn't matching the servlet urlmapping. ...

Get status of servlet request before the response is returned

Good evening, I am in the process of writing a Java Servlet (Struts 2, Tomcat, JSP etc) which is capable of doing some fairly complex simulations. These can take up to 2 minutes to complete on the and will return a graph of the results. It is trivial to calculate the percentage of the simulation completed because the process works by re...

Managing resource closure in a servlet container

I'm using Tomcat as a servlet container, and have many WARs deployed. Many of the WARs share common base classes, which are replicated in each context due to the different classloaders, etc. How can I ensure resource cleanup on context destruction, without hooking each and every web.xml file to add context listeners? Ideally, I'd like...

Configuring web.xml for webservices and servlet.

Hi, I am new to Restlets. Trying to configure the web.xml (on JBoss). I have 2 entries, one for a servlet (got nothing to do with webservices) other for webservices, using Restlet. Here are the entries.. <servlet> <servlet-name>AuthenticationServlet</servlet-name> <servlet-class>com.safeid.web.server.api.servlet.AuthenticationServ...

How to force delete cookies even if one window is still open?

Apparently in IE8, there is this option 'Preserve Favorites website data', even if I uncheck it the browser will still keep the cookies until the last window is closed. Problem scenario. say I logged in to somesite.com, then without logging out, I closed the window, but there was still another IE8 window open. In this case IE8 will keep...

JSP::Confused with the session objects

I just started exploring Java Servlets and JSP and am a little confused about the sessions object. Inside a servlet I have this: public class SampleServlet extends HttpServlet { public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException { HttpSession session = request.getSession(tru...

How do I stop Safari from caching my Servlet response?

I'm having trouble testing a web app with Safari. My app returns wave audio data. The problem happens when I change the application and hit it again from Safari. Safari caches the original response so no matter how many times I hit refresh it seems like I've not updated anything. I can almost get around this using force refresh with Fire...

Need to use Unit testing famework for testing J2EE Components like Servlets , Filters and JPA.

I need to create unit tests for J2EE components like Servlets, Filters and JPA code which would call it's life cycle methods automatically and would integrate with Maven2 and Continuum and can be run from IDE itself. Can you suggest something? Thanks, Vaibhav ...

JSP/Servlet: Create a form for uploading an unknown number of files

I need to create a form that will allow, among other things, a user to upload an unknown number of files to the server running Tomcat. It would be nice if the form could add upload slots to the form as needed. I haven't found much useful on the subject, so I thought I would poll the community. ...

Finding JNP port in JBoss from Servlet

I have a servlet running in JBoss (4.2.2.GA and 4.3-eap) that needs to connect to an EJB to do work. In general this code works fine to get the Context to connect and make RMI calls (all in the same server). public class ContextFactory { public static final int DEFAULT_JNDI_PORT = 1099; public static final String DEFAULT_CONTEXT_FA...

how can we cal two servlets from the same html page?

I need to design a page to register as well as login a user.By clicking login button login servlet should be called.And on clicking register button,register servlet will be called.how can i do this? ...

Java NIO Servlet to File

Is there a way (without buffering the whole Inputstream) to take the HttpServletRequest from a Java Servlet and write it out to a file using all NIO? Is it even worth trying? Will it be any faster reading from a normal java.io stream and writing to a java.nio Channel or do they both really need to be pure NIO to see a benefit? Thanks....

Tomcat/Hibernate Problem "SEVERE: Error listenerStart"

I downloaded working example of hibernate (with maven) and installed it on my tomcat, it worked. Then I created a new web project in MyEclipse, added hibernate support and moved all source files (no jar) to this new project and fixed package/paths wherever was necessary. My servlets are responding correctly but when I add "Listener" in w...

Servlet mapping for a basic rest api?

Hi, I'm trying to write a web app that needs to expose some methods that I'm going to use with ajax. I can make one servlet to route all incoming requests, or I can make multiple servlets, one for each request type. Something like: public class ServletMain extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletR...