i have this error when i try to make get to a property of a bean ,
Error(60,65): non-static method getFechaSolicitud() cannot be referenced from a
static context
and i can't recover the value of the property
the code in the jsp
<%
String variable = RcdtForm.getAreaSolicitante();
%>
in my bean this property is declared llike...
private String areaSolicitante;
public String getAreaSolicitante() {
return this.areaSolicitante;
}