never mind. I solved it on my own.
I did have to programatically add my proxy information, and the crucial
missing step was to also set the WebProxy.UseDefaultCredentials to true
Here's the new code in Calendar.cs: Calendar.RefreshFeed()
CalendarService service = new
CalendarService("CalendarSampleApp");
query.Uri = new Uri(calendarURI);
GDataRequestFactory fac = (GDataRequestFactory)
service.RequestFactory;
IWebProxy iProxy = WebRequest.DefaultWebProxy;
WebProxy myProxy = new
WebProxy(iProxy.GetProxy(query.Uri));
// myProxy.Credentials =
CredentialsCache.DefaultCredentials;
myProxy.UseDefaultCredentials = true;
fac.Proxy = myProxy;
--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---