Hi,

I get the successed result by the method of "Update" of
CalendarService instead of AtomFeed.


service.Update(myResultsFeed.Entries[i]);


Sincerely,


Yamamoto


On 2007年12月28日, 上午10時57分, yamamoto <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Unfortunately, the same exception is thrown whether the event which I
> want to update is recurrsive one or not.
>
> Sincerely,
>
> Yamamoto
>
> On 12月28日, 上午6時06分, "Austin (Google)" <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi,
>
> > Try setting the singleevents property to be true for the query object.  This
> > way it unrolls all recurring instances of a recurring series into individual
> > event entry.
>
> > myQuery.SingleEvents = true;
>
> > Hope it helps,
> > Austin
>
> > On Dec 27, 2007 12:50 AM, yamamoto <[EMAIL PROTECTED]> wrote:
>
> > > Dear All,
>
> > > With .NET Calendar API 1.2.0.0 for Mobile, I have the same problem.
> > > When I try to update an event, an event is thrown with the message
> > > below:
> > > Execution of request failed:
>
> > >http://www.google.com/calendar/feeds/default/private/full/3ero612gbhc...
>
> > > The sample code for the test is detailed below:
>
> > > using System;
> > > using System.Collections.Generic;
> > > using System.Text;
> > > using Google.GData.Client;
> > > using Google.GData.Calendar;
>
> > > namespace Google_Event_Update
> > > {
> > >  class Program
> > >  {
> > >    static string G_userName = "[EMAIL PROTECTED]";
> > >    static string G_userPassword = "XXXX";
> > >    static string G_feedUri = "http://www.google.com/calendar/feeds/
> > > default/private/full";
>
> > >    static void Main(string[] args)
> > >    {
> > >      CalendarService service = new CalendarService("exampleCo-
> > > exampleApp-1");
> > >      service.setUserCredentials(G_userName, G_userPassword);
>
> > >      EventQuery myQuery = new EventQuery(G_feedUri);
> > >      EventFeed myResultsFeed = service.Query(myQuery) as EventFeed;
>
> > >      for (int i = 0; i < myResultsFeed.Entries.Count; i++)
> > >      {
> > >        myResultsFeed.Entries[i].Update();
> > >      }
> > >    }
> > >  }
> > > }
>
> > > Additionally, in the case, I had a NetLog file with extention of .cap
> > > which can be view by the software of "Ethereal."
> > > If you need me to transfor it the other file format, I would like to
> > > do it and Email you the result.
>
> > > Sincerely,
>
> > > Yamamoto
>
> > > On 11月27日, 下午5時06分, Frank Mantek <[EMAIL PROTECTED]> wrote:
> > > > Can you catch the HTTP traffic for this update? I am guessing server
> > > > problem, but i can't tell you for sure yet.
>
> > > > Frank Mantek
> > > > Google
> > > > On Nov 27, 2007, at 5:33 AM, Kulvinder Singh wrote:
>
> > > > > Hi,
>
> > > > > I am using .NET Calendar API 1.2.0.0 and i am getting the following
> > > > > error when i try to update a Recurring event on my calendar :
>
> > > > > Execution of request failed:
> > > http://www.google.com/calendar/feeds/[EMAIL 
> > > PROTECTED]/private/full/eventSubId/63331468118
>
> > > > > Source : Google.GData.Client
>
> > > > > InnerException : The remote server returned an error: (400) Bad
> > > > > Request.
>
> > > > > Google Error : Invalid Request URI
>
> > > > > How can i know about the problem with this event ?
>
> > > > > I am first fetching a list of events within a date range and then
> > > > > updating them and this is the only one which is throwing the error.
>
> > > > > Thanks
>
> > > > > Kulvinder Singh
>
> > > > > Be a better pen pal. Text or chat with friends inside Yahoo! Mail.
> > > > > See how.- 隱藏被引用文字 -
>
> > > > - 顯示被引用文字 -- 隱藏被引用文字 -
>
> > - 顯示被引用文字 -- 隱藏被引用文字 -
>
> - 顯示被引用文字 -
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to