miguelmeca / trimatrix

Automatically exported from code.google.com/p/trimatrix
0 stars 0 forks source link

ICS Calendar adaption for streaming to Google Calendar #28

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
hey,
I wish to export my calendar using this library, by providing a URL for the
calendar to be exported.
But, both google and outlook calendars are giving me errors saying "could
not fetch" or "error while importing".
While KOrganiser and Sunbird can both the calendar by URL.

So is there any problem with the way I am exporting the file?
response.setContentType("text/calendar");
response.setHeader("Content-Disposition", "inline; filename=" +
"myiCal.ics" + ";");
Calendar cal = new Calendar();
...
...
...
CalendarOutputter outputter = new CalendarOutputter();
outputter.output(cal, response.getOutputStream());

regards. 

http://severinghaus.org/projects/icv/

Original issue reported on code.google.com by reich.ma...@gmail.com on 20 May 2010 at 9:24