Error executing

0

I work in a web application with NetBeans but I get the following error:

Any idea how to solve it?

This is the web.xml file

    
asked by Missael Armenta 23.05.2016 в 18:38
source

1 answer

0

The problem is in the servlet definition. You must define the servlet in the following way in the web.xml file:

<servlet-config>
    <servlet-name>autenticacion</servlet-name>
    <servlet-class>el.paquete.de.tu.Clase</servlet-class>
</servlet-config>
    
answered by 23.05.2016 / 19:32
source