Servlet Exception

Pessoal,

Estou encontrando o seguinte erro ao fazer o load da minha página home.jsp.

[ServletException in:/home.jsp] Cannot retrieve definition for form bean null’

Sendo que eu estou usando struts e Tiles para isso. Eu defini meu struts-config assim:

<!-- Global Forwards -->
	<global-forwards>
		<forward name="home" path="/home.jsp">
		</forward>
	</global-forwards>

	<!-- Action Mappings -->
	<action-mappings>
		<action path="/home" forward="tiles.home.page">
		</action>
		<action path="/homeAction" type="actions.HomeAction">
			<forward name="home" path="/home.jsp" redirect="false" contextRelative="false">
			</forward>
		</action>
	</action-mappings>
	<controller processorClass="org.apache.struts.tiles.TilesRequestProcessor">
	</controller>

E no meu arquivo HomeAction eu faço um return mapping.findForward(“home”); ao final da action.

O que eu estou fazendo errado ?
Alguém poderia me ajudar com isso ?

Obrigado,
Murilo - :?:

Não duplique tópicos em outros fóruns.

http://www.portaljava.com/home/modules.php?name=Forums&file=viewtopic&t=24289