Algo q me ta comiendo la cabeza y no veo la solucion. Utilizo struts 2, y tengo un struts.ml tal como este:
Código PHP:
<action name="buscarPacienteDNI" class="es.pfc.struts2.actions.PacientesAction"
method="buscarPaciente">
<result name="success" type="chain">detallePaciente</result>
<result name="error"> jsp/buscarPacientes.jsp </result>
</action>
Código PHP:
public String buscarPaciente(){
ModeloPacientesDAO modeloPacienteDAO = new ModeloPacientesDAO();
int codigo = modeloPacienteDAO.buscarPaciente(paciente);
if(codigo==1)
return SUCCESS;
else{
addActionError("El paciente NO Existe");
return ERROR;
}
}