[Resolvido] Erro de navegação no Struts 2

Não estou entendento este erro.

SEVERE: Could not find action or result There is no Action mapped for namespace / and action name Relatorio_input. - [unknown location]

Meu struts.xml<action name="Relatorio" class="action.Relatorio"> <result name="input">/relatorio.jsp</result> </action>

Minha action

@Override public String execute() throws Exception { ArquivoRelatorio arq = new ArquivoRelatorio(); arq.montaLista(tipo); links = arq.getArquivos(); // return super.execute(); return ActionSupport.INPUT; }
Meu link <li>&lt;...=&quot;Relatorio.action?tipo=receita_diaria&quot;&gt; &nbsp;Detalhado</a>
Obrigado,

Marcio