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 -- You received this message because you are subscribed to the Google Groups "Firebug" group. To unsubscribe from this group and stop receiving emails from it, send an email to firebug+unsubscr...@googlegroups.com. To post to this group, send email to firebug@googlegroups.com. Visit this group at http://groups.google.com/group/firebug. To view this discussion on the web visit https://groups.google.com/d/msgid/firebug/566dd322-2894-4483-a579-270bfdf5aa3e%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.