The following code works on Windows 7, but it fails on Windows Server 2003 (Tomcat)
Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
Date startDate = calendar.getTime();
calendar.add(Calendar.HOUR, 1);
Date endDate = calendar.getTime();
MailAddressCollection attendees = new MailAddressCollection();
attendees.add(...);
MailAddress organizer = new MailAddress(..., ...);
Appointment app = new Appointment("", "", messageBody, startDate, endDate, organizer, attendees);
This is the exception I get on the last line:
at com.aspose.email.Apat com.aspose.email.Ap
at com.aspose.email.Ap
at com.aspose.email.Ap
at com.aspose.email.Ap
I need some help ASAP as it happens in production.
Thanks,
Mariusz
Mariusz