Grazie ancora... ho risolto il problema del deploy.
Ma ho un'altra domanda!! Scusa se ti disturbo tanto!!

Non avendo fatto il metodo doPost allinterno della servlet, quando premo il pulsante Registrati della pagina JSP, mi da questo errore:

codice:
HTTP Status 405 - HTTP method POST is not supported by this URL

--------------------------------------------------------------------------------

type Status report

messageHTTP method POST is not supported by this URL

descriptionThe specified HTTP method is not allowed for the requested resource (HTTP method POST is not supported by this URL).


--------------------------------------------------------------------------------

Sun Java System Application Server 9.1_01
Qui c'è il codice della pagina JSP:

codice:
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>Registrazione</title>
    </head>
    <body>
        <form action="StreetSoccerServlet" method="POST">
            <table>
                <tr>
                    <td>Nome</td>
                    <td>
                        <input type="text" name="nome" value="" size="30" maxlength="50">
                    </td>
                </tr>
                <tr>
                    <td>Cognome</td>
                    <td>
                        <input type="text" name="cognome" value="" size="30" maxlength="50">
                    </td>
                </tr>
                <tr>
                    <td>E-mail</td>
                    <td>
                        <input type="text" name="email" value="" size="30" maxlength="50">
                    </td>
                </tr>
                <tr>
                    <td>Username</td>
                    <td>
                        <input type="text" name="username" value="" size="30" maxlength="50">
                    </td>
                </tr>
                <tr>
                    <td>Password</td>
                    <td>
                        <input type="password" name="password" value="" size="30" maxlength="50">
                    </td>
                </tr>
                <tr>
                    <td>
                        <input type="Submit" name="Submit" value="Registrati">
                    </td>
                </tr>
                <input type="hidden" name="comando" value="registraUtente">
            </table>
        </form>
    </body>
</html>
Come risolvo l'errore??
Faccio il metodo doPost ad all'interno chiamo il metodo processRequest??

Se non sbaglio però ho letto da qualche parte che il metodo ProcessRequest può essere usato al posto sia di doPost che di doGet!!??

P.S.(1) Utilizzo NetBeans con Glassfish
P.S.(2) Quando si utilizzano gli Entity Beans non c'è bisogno di creare le tabelle del database, vero?? Vangono create in automatico!!