actually it looks like it wants unix time (note that it's *milliseconds* instead of seconds):
from PublicICalServlet.java:
Code:
long now = new Date().getTime();
from java.util Class Date:
getTime()
Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this Date object.
and it looks like the parameters you want for the request are "s" and "e" (for start and end):
Code:
String acctName = req.getParameter("acct");
String startStr = req.getParameter("s");
String endStr = req.getParameter("e");