I read it.
 But there are still problems. The embed tag used to call the servlet is useless on bea weblogic 6.0 because the server doesn't make anything. The calling is stoped and droped without any message. So I am using another workaround like this ( from an asp forum changed for java by me ).
 
      if (request.getHeader("Accept-Language") == null)
       {
        //al 2-lea request 
        response.setContentType("application/pdf");
        response.setHeader("Last-modified", "Mon, 01 Sep 1997 01:03:33 GMT");
        response.setStatus(response.SC_NOT_MODIFIED);
        System.out.println("Print Overview - am procesat al 2-lea sau al 3-lea request ");
        return;
       }
So, in this moment, the documentation does not include any sugestion on this issue - bea weblogic 6.0 does not resolve the embed tag used on docs on forum.
 
  I am waiting any other suggestion.
    Thank you.
  
            Cristian

Reply via email to