Hi ALL: I am using C# to develop google calendar client(.net 3.5 && .net 4.0). It seems that if I do nothing about the proxy (that is I do not configure the proxy at all) Google calendar API will use the default system proxy as in the Internet Explorer automatically. However, I do not want the Calendar to use any proxy at all, so I write the following codes:
GDataRequestFactory f = (GDataRequestFactory)service.RequestFactory; f.Proxy = null; I am not sure it is the correct way to do so, try to new a IWebProxy but with empty fields will not work as well. So what is the correct way to do so? -- 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://code.google.com/apis/calendar/community/forum.html
