> protected* *void* doGet(HttpServletRequest request, HttpServletResponse
> response) *throws* ServletException, IOException {Your doGet method doesn't write to the response object and therefore is not sending anything to the web browser. Can you add the following line at the end of your method and see if it makes any difference please: wb.write(response.getOutputStream()); Bruno --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
