ActionErrors errors = new ActionErrors();
UserVO uservo = logon.validate(user, password, Logon.Type.WEBSERVICE, errors);
if(uservo != null && errors.isEmpty())
{
Authenticator auth = new Authenticator(uservo);
if(auth.isValid(Right.EXTERN_WEBSERVICE_READ))
{
jobList = new ArrayList<HashMap>();
List<JobVO> jobs = new JobDAO().getByUser(uservo, startDate, endDate);
HashMap<String,String> jobMap;
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");