Hi,
I am using Google Data API for Java to connect some Java app with
Google calendars. Everythink works fine for querying calendars and
events.

I used the following tutorial: 
http://code.google.com/intl/de/apis/gdata/client-java.html#Update_Item

However, in my case after the update() the event is removed* from the
calendar. The source code is that:

// changes to entry object (retrieved by getEntry)
CalendarService service = new CalendarService(appID);
// authenticate service... using setUserCredentials
URL editUrl = new URL(entry.getEditLink().getHref());
CalendarEventEntry updatedEntry = service.update(editUrl, entry);

No exception is thrown, and the updatedEntry object is not null.

Thanks in advance...

*) i.e. the Google Calendar website does not show it anymore after
reload, and a new getFeed() query will not list the event again

PS: If somebody knows how to turn on debug messages of gdata that
would be great ;)

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