Aspose.Email.Mail.Appointment's mini-bugs

Hi,


When I’m using the next code, the output Ics is different from the original. (I’ve attached them)
1. “The organizer createed this meeting in the following time zone: Asia/jerusalem” - is being addedf
2. A Calendar window is being added.

This is the code:
string strAppointmentBase64String = “”;
using (FileStream fIn = File.OpenRead(“before.ics”))
{
Appointment appointment = Appointment.Load(fIn);
using (MemoryStream ms = new MemoryStream())
{
appointment.Save(ms);
strAppointmentBase64String = Convert.ToBase64String(ms.ToArray());
}
}
Appointment appointmentNew = null;
using (MemoryStream ms =
new MemoryStream(Convert.FromBase64String(strAppointmentBase64String)))
{
appointmentNew = Appointment.Load(ms);
}
appointmentNew.Save(“after.ics”);

Please your help,
Thanks,
Roi

Hi Roi,


Thank you for writing to Aspose support team.

I have analyzed the provided files and found that the view of both the calendar files are the same at my end. Could you please share which Outlook version you are using at your end? Also, please confirm to us if you are using the latest version of Aspose.Email for .NET at your end? We’ll look into it for assisting you further.

Hi Kashif,

I’m using Aspose.Email.dll version 4.6.0
Microsoft Outlook 2013 (15.0.4615.1000) 64-bit
Thanks,
Roi

Hi Roi,

Thank you for clarification.

I was able to observe the issue using the Outlook 2010 and above versions, and have logged it as NETWORKNET-34520 in our issue tracking system. Once there is some more information available in this regard, we’ll notify you here via this thread.

The issues you have found earlier (filed as NETWORKNET-34520) have been fixed in this update.


This message was posted using Notification2Forum from Downloads module by Aspose Notifier.