ho fatto una servlet (welcome2) che prende come input un nome e visualizza : Hello Nome ecc ecc...
se provo direttamente la servlet con tomcat, funziona perfettamente, ma se provo a chiamare la servlet con una form action che ho inserito in una pagina web non mi viene visualizzato nulla. Non dà nemmeno un messaggio di errore!
la pagina html è questa
<?xml version = "1.0"?>
<!DOCTYPE html PUBLIC " -//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd " >
<html xmlns = \"http://www.w3.org/1999/xhtml ">
<head>
<title>Processing get requests with data</title>
</head>
<body>
<form action= "welcome2" method="get">
<p><label>
Scrivi il tuo nome e clicca su invia
<br /><input type = "text" name = "firstName" />
<input type = "submit" value = "Submit" />
</p></label>
</form>
</body>
</html>
cosa potrebbe essere???