how to obtain all the request entered in the console tab

19 views
Skip to first unread message

Xavier Flamant

unread,
Oct 8, 2014, 4:17:32 AM10/8/14
to fir...@googlegroups.com
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

Stefan Krüger

unread,
Oct 16, 2014, 3:18:51 PM10/16/14
to fir...@googlegroups.com
Hi Xavier,

if i understand you right - you can use the Persist button.
just to remember: firebug is not global - it is active for the current tab. --> if you switch to an other tab it hides - only if it is already active for this tab..
if you do not activate the persist button it will clear its windows if you reload a page.

sunny greetings
stefan

Sebastian Zartner

unread,
Oct 20, 2014, 4:08:33 PM10/20/14
to fir...@googlegroups.com
just to remember: firebug is not global - it is active for the current tab. --> if you switch to an other tab it hides - only if it is already active for this tab..
That's actually not correct. Firebug's default activation model is based on URLs, i.e. if you open the same page in another browser tab, Firebug will be activated for it, too. See the wiki page about activation for more info.

Having said that there's an option to enable Firebug for all pages. To do that right-click the Firebug Start Button (the button with the Firebug symbol) and check the option On for All Web Pages. In combination with the Persist button in the panel toolbar that should do the trick.

Sebastian
 

Sebastian Zartner

unread,
Oct 20, 2014, 4:10:24 PM10/20/14
to fir...@googlegroups.com
I have Firefox 26.0 and added Firebug 1.12.8b1.
And by the way you should update your Firefox and Firebug version. The current versions are 33.0 for Firefox and 2.0.4 for Firebug.

Sebastian
Reply all
Reply to author
Forward
0 new messages