pessoal

o que pode estar errado?? Quando chamo um servlet acontece o erro abaixo no
browser

==
Internal Server Error

The server encountered an internal error or misconfiguration and was unable
to complete your request.
==

aqui esta o codigo do servlet

==

import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.sql.*;

public class BDServlet extends HttpServlet
{
 PrintWriter saida;

    public String getParameter(ServletRequest request,String name)
    {
        String values[]=null;
        String retVal = null;

        if(request != null)
            values = request.getParameterValues(name);

        if((values != null)&&(values.length>0))
        {
            retVal = values[0];
        }

        return retVal;
    }

 public void init (ServletConfig cfg) throws ServletException
 {
  super.init (cfg);
 }

 public void doGet (HttpServletRequest request, HttpServletResponse
response)
        throws ServletException, IOException
 {
  String sNome, sTitulos;

  response.setContentType("text/html");
  saida.println("bogo");
  saida.close();
  }

}

==

alguma luz?? Estou usando o Apache 1.3 e Apache JServ 1.1 e Nestacpe 4.7
Alguma configuracao do apache?

abraco

Bogo

=================
Luis Henrique Bogo
FURB - BCC
Turma 96/01
=================
"Eh muito melhor ter ousadia para feitos poderosos, conquistar triunfos
gloriosos, mesmo arriscando-se a fracassar, do que cerrar fileiras ao
lado de espihritos pobres que nao gozam nem sofrem, porque vivem em um
eterno crepuhsculo, sem conhecer a vitohria ou a derrota." - Roosevelt





    --------------------------- LISTA SOUJAVA ---------------------------
    http://www.soujava.org.br  -  Sociedade de Usu�rios Java da Sucesu-SP
    [d�vidas mais comuns: http://www.soujava.org.br/faq.htm]
    [para sair da lista: http://www.soujava.org.br/forum/cadastrados.htm]
    ---------------------------------------------------------------------

Responder a