Frank Mantek wrote: > No, in general this should be working fine. What projection are you using? > Have you looked in the HTTP (using fiddler or any other HTTP logger) if the > events are coming down from the server?
Hi, I'm using this url: http://www.google.com/calendar/feeds/[EMAIL PROTECTED]/public/full?start-min=2005-01-01&start-max=2008-01-01 Pseudo like code i'm using: CalendarService service = new CalendarService(); EventFeed calFeed = service.Query(query); if(calFeed != null && calFeed.Entries.Count > 0) foreach (EventEntry entry in calFeed.Entries) if (entry.Times.Count > 0) foreach (When w in entry.Times) Does this seem right? I havent been using a http logger, I'll try that. Thanks. Regards, bbc > > Frank Mantek > > On 9/26/06, brondbybc <[EMAIL PROTECTED]> wrote: > > > > > > Hi, > > > > I'm poking around with the C# client library and having trouble getting > > the correct calendar data. > > The code i'm using is the similar to the code in > > samples/calendar/Calendar.cs, but recurring events in my calendar > > isen't retrived. > > > > According to this group there have been trouble with recurring events, > > is this still a problem? > > > > > > regards, > > bbc > > > > > > > > > > > ------=_Part_22897_20900307.1159347171665 > Content-Type: text/html; charset=ISO-8859-1 > X-Google-AttachSize: 952 > > No, in general this should be working fine. What projection are you using? > Have you looked in the HTTP (using fiddler or any other HTTP logger) if the > events are coming down from the server?<br><br>Frank Mantek<br><br><div> > <span class="gmail_quote">On 9/26/06, <b > class="gmail_sendername">brondbybc</b> <<a href="mailto:[EMAIL > PROTECTED]">[EMAIL PROTECTED]</a>> wrote:</span><blockquote > class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: > 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> > <br>Hi,<br><br>I'm poking around with the C# client library and having > trouble getting<br>the correct calendar data.<br>The code i'm using is the > similar to the code in<br>samples/calendar/Calendar.cs, but recurring events > in my calendar > <br>isen't retrived.<br><br>According to this group there have been trouble > with recurring events,<br>is this still a > problem?<br><br><br>regards,<br>bbc<br><br><br><br><br></blockquote></div><br> > > ------=_Part_22897_20900307.1159347171665-- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Calendar Data API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-calendar-help-dataapi -~----------~----~----~----~------~----~------~--~---
