<s:form>
<table border="1" bordercolor="blue" cellpadding="2" cellspacing="2">
<tr>
<td><b>Usuarios Registrados</b></td>
</tr>
<tr>
<td style="width: 320px; text-align: center;">Nome</td>
<td style="width: 160px; text-align: center;">Data De Nascimento</td>
<td style="width: 160px; text-align: center;">Data De Nascimento</td>
<td style="width: 160px; text-align: center;">PIS</td>
<td style="width: 160px; text-align: center;">CPF</td>
</tr>
<s:iterator value="usuarios">
<tr>
<td><s:property value="pessoa.nome"/></td>
<td><s:property value="pessoa.sobreNome"/></td>
<td><s:date name="pessoa.dataDeNascimento" format="dd/MM/yyyy"/></td>
<td><s:property value="telefone.ddd"/></td>
<td><s:property value="telefone.numero"/></td>
<td>
<s:url id="link1" action="/removerContato!removeUmContato.action">
<s:param name="id"><s:property value="pessoa.id"/> </s:param>
</s:url>
<s:a id="linkRemove"
href="%{link1}"
theme="ajax"
notifyTopics="listaContatoTopic"
loadingText="Removendo contato.."
errorText="Ocorreu um erro durante o processamento.."
showLoadingText="true"
showErrorTransportText="true">Excluir</s:a></td>
</tr>
</s:iterator>
</table>
</s:form>
O erro que esta sendo gerado, eh o seguinte:
Preciso configurar alguma coisa a mais?
Valeu