Hi,
Im getting the following error on a
jsp page
An error occurred while evaluating custom action attribute "value" with value "${timing}": Attempt to convert
String "${set.timing}" to type "java.util.Date", but there is no PropertyEditor for that type (null)
at org.apache.taglibs.standard.lang.jstl.Evaluator.evaluate
The variable timing is set using a c:set tag at the top of the page
<c:set var="timing" value="${set.timing}"/>
this is followed on by
<fmt:formatDate value="${timing}" pattern="MM/dd/yyyy',' h:mm a z"/>
This code previously worked so I have no idea whats after happening to it.
Any one have ideas as I'm really struggling with this.
Thanks