Web.xml

Galera, to com um problema.
Não estou conseguindo executar nenhum servlet no tomcat. Já tentei algumas alterações mais não tive sucesso.
Estou suspeitando da configuração do meu arquivo web.xml

Meu arquivo web.xml está com o seguinte conteúdo:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
  <servlet>
    <servlet-name>ShowImg</servlet-name>
    <servlet-class>ShowImg</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>ShowImg</servlet-name>
    <url-pattern>/classes/ShowImg</url-pattern>
  </servlet-mapping>
  <session-config>
    <session-timeout>
            30
        </session-timeout>
  </session-config>
  <welcome-file-list>
    <welcome-file>
            index.jsp
        </welcome-file>
    <welcome-file>
            index.html
        </welcome-file>
    <welcome-file>
            index.htm
        </welcome-file>
  </welcome-file-list>
</web-app>

A mnha estrutura de diretórios é a seguinte:

(localização do arquivo web.xml)
C:\apache\Tomcat\webapps\indexvisual\WEB-INF\

(localização dos jsp´s e html´s)
C:\apache\Tomcat\webapps\indexvisual\

(localização das classes)
C:\apache\Tomcat\webapps\indexvisual\WEB-INF\classes\classes\

Sei que pode ser uma coisa simples, mas se alguém puder ajudar, agradeço.

Obrigado!

Aqui você tem dar o nome completo da classe:

&lt;servlet&gt; &lt;servlet-name&gt;MeuServlet&lt;/servlet-name&gt; &lt;servlet-class&gt;meu.pacote.MeuServlet&lt;/servlet-class&gt; &lt;/servlet&gt;

Evitar usar nomes como classes, pois pode confundir você mesmo.

Valeu Daniel, eu realmente estava bobeando em algo simples, tinha testado aqui e já funcionou!

Obrigado!