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

On Wednesday, October 8, 2014 10:17:32 AM UTC+2, Xavier Flamant wrote:
>
> 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 [email protected].
To post to this group, send email to [email protected].
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/4b4a3db4-4707-4578-8dc2-c6786cd50196%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to