I am using Jackrabbit to store my documents. Now I would like to search for documents that were created e.g. after a specific date using XPATH. To do so, I tried something like:
String dateString = date.toString();
//element(*,nt:file)[@jcr:created >= xs:dateTime(dateString)]
date is an object of class java.util.Date
dateString gets formatted as: Wed Mar 16 00:00:00 CET 2011
But this is giving me an InvalidQueryException, indicating that the dateString is wrong:
Invalid query: Lexical error at line 1, column 136. Encountered: "0" (48), after : ":" for statement
So the question is: What is the correct format of a date for xs:dateTime ?
Thanks in advance