Hello,
I have Firefox 26.0 and added Firebug 1.12.8b1.
I beleived that the console would display all the request that I enter in my adress bar, but it is not the case. How to obtain them all ? Furthermore When I enter once and again several request in my http address bar, firebug window (displayed underneath) close unexpectedly
In particular, I deployed a web application in Java J2ee under jboss and I have the following servlet (see underneath) and I can't see the request I made (
http://localhost:8080/EJBTutorialWeb/test) in the console. How can I obtain all the request displayed in the console tab ?
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
//PrintWriter out = response.getWriter();
PrintWriter out = new PrintWriter (response.getOutputStream());
try {
out.println("<html>");
out.println("<head>");
out.println("<title>Servlet MaServlet</title>");
out.println("</head>");
out.println("<body>");
out.println("</body>");
out.println("</html>");
} finally {
out.close();
}
}
Thank you in advance for your answer