Framework Mentawai - Problema Logout [RESOLVIDO]

Olá a todos,estou iniciando no Framework Mentawai e seguindo o tutorial disponível no site do mesmo. Mas me deparei com um problema na parte de autenticação, no logout. Ao tentar deslogar obtenho uma msg de que a página não foi encontrada, erro 500. Gostaria de uma ajuda para determinar onde estou errando, pode ser que eu esteja comentendo um “erro juvenil”, mas não consegui identificar minha falha. Desde já agradeço. Segue abaixo o código da aplicação.

AplicationManager.java

    import controller.action.LogoutAction;
    import action.LoginAction;  
    import org.mentawai.core.ActionConfig;  
    import org.mentawai.core.Forward;  
    import org.mentawai.core.Redirect;  
    import org.mentawai.filter.AuthenticationFilter;  

    public class ApplicationManager extends org.mentawai.core.ApplicationManager {  

        @Override  
        public void loadActions() {  
            addGlobalFilter(new AuthenticationFilter());  
            addGlobalConsequence(AuthenticationFilter.LOGIN, new Redirect("/login.jsp"));  

            ActionConfig ac = new ActionConfig("login", LoginAction.class);  
            ac.addConsequence(LoginAction.SUCCESS, new Redirect("/home.jsp"));  
            ac.addConsequence(LoginAction.ERROR, new Forward("/login.jsp"));  
            addActionConfig(ac);  

            ac = new ActionConfig("logout", LogoutAction.class);  
            ac.addConsequence(LogoutAction.SUCCESS, new Redirect("/login.jsp"));  
            addActionConfig(ac);  
        }  
    }

LoginAction.java

    import org.mentawai.action.BaseLoginAction;  
    public class LoginAction extends BaseLoginAction {  
         @Override  
        public String execute() throws Exception {  
             String email = input.getString("email");  
            String senha = input.getString("senha");  
             // Exemplo para ilustrar  
            if (!"user".equals(email) || !"123456".equals(senha)) {  
                return ERROR;  
            }  
             setUserSession(email);  
             return SUCCESS;  
        }  
    }

LogoutAction.java

import org.mentawai.core.BaseAction;
import org.mentawai.filter.AuthenticationFree;
 
/**
 * A simple Logout action that can be used fot user logout.
 * This action just calls the session <i>reset()</i> method, to clear the session.
 *
 * @author Sergio Oliveira
 */
public class LogoutAction extends BaseAction implements AuthenticationFree {
    
    /**
     * Implements the actual logout.
     * This method simply calls the session <i>reset()</i> method, to clean the session.
     * You may override this method if you want to do other operations when the user logs out.
     */
    protected void logout() {
        session.reset();
    }
     
    public String execute() throws Exception {
        logout();
        return SUCCESS;
    }
     
    @Override
    public boolean bypassAuthentication(String innerAction) {
        
       return true;
    }
}

login.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"  
    pageEncoding="ISO-8859-1"%>  

<html>  
<head>  
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">  
<title>Entrada de Dados</title>  
</head>  
<body>  
    <form action="login.mtw" method="post">  
    Email: <input name="email" size="25"/><br/>  
    Senha: <input name="senha" type="password" size="25"/><br/>  
    <input type="submit" value="Enviar" style="COLOR: #0000ff; FONT-SIZE: small; FONT-WEIGHT: bold; FONT-FAMILY: 'DejaVu Serif Condensed'; width : 58px; height : 27px;"/>  
    </form>  
</body>

home.jsp

<%@ taglib uri="http://www.mentaframework.org/tags-mtw/" prefix="mtw" %>  
    <mtw:requiresAuthentication redir="true"/>  
    <html>  
    <body>  
    <h1>O usuário só verá esta página se estiver autenticado!</h1>  


       <a href="logout.mtw">Sair</a>  
    </body>  
    </html>

Pessoal, consegui desconbrir onde eu estava errando. Tenho que indicar a url completa e não apenas o “logout.mtw” como estava fazendo.
Deu certo, mas não sei se é correto fazer desse modo.

[color=darkred]Sair [/color]

<%@ taglib uri="http://www.mentaframework.org/tags-mtw/" prefix="mtw" %>    
    <mtw:requiresAuthentication redir="true"/>    
    <html>    
    <body>    
    <h1>O usuário só verá esta página se estiver autenticado!</h1>    
         <a href="http://localhost:8081/menta-proj/logout.mtw">Sair</a>    
    </body>    
    </html>