Hey Alleyn
There must be something else going on. A lot of people found they're use of that date() method failing about a year ago and I thought the method had been deprecated in the jre or I think readyapi! moved to openJDK or something like that and so everyone needed to use a different method going forward.
I started using the following at that point:
${=new java.text.SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss").format(new Date())}
and the following is completely overkill, but you could try this which also generates curr sysdatetime
${=import java.text.SimpleDateFormat; Calendar cal = Calendar.getInstance(); cal.add(Calendar.DATE, -0); new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss").format(cal.getTime());}
HOWEVER - I suspect the second option won't help either as it still uses the SimpleDateFormat() & Date() methods like the previous option.
What version of ReadyAPI are you using? Also - I didn't understand the significance of upgrading the .net - why should this make a difference to ReadyAPI as it's Java.....???
nice one
rich