Hi, 
I got a big problem with my Sync-Tool which I finished 3 Month ago. I just 
included it into my application and now, every time I Insert an event, the 
following error accrues:


Execution of request failed: 
http://www.google.com/calendar/feeds/default/private/full?gsessionid=dIX99FJ1HrzepoLuOMYHyw
ResponseString = "Element must contain value for attribute value"


Here the code:
Optionen.SGoogleUri = 
"http://www.google.com/calendar/feeds/default/private/full";;
                    CalendarService service = new 
CalendarService("CalendarApp");
                    service.setUserCredentials(Optionen.SGoogleUser, 
Optionen.SGooglePass);
                    Uri postUri = new Uri(Optionen.SGoogleUri);
                    try
                    {
                        GoogleEntry = (EventEntry)service.Insert(postUri, 
GoogleEntry);
                    }
                    catch(GDataRequestException error)
                    {
                        Console.Write("Received an exception:  
{0}",error.Message);
                    }

Any idea what changed? I can still download the Events without any 
Problems...

-- 
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

Reply via email to