Thanks again.
I tried to implement the single occurence deletion and the entire event
deletion but in both cases I'm receiving the same 404 error:
Service Errorcom.google.gdata.util.ResourceNotFoundException: Not Found
<HTML>
<HEAD>
<TITLE>Not Found</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1>Not Found</H1>
<H2>Error 404</H2>
</BODY>
</HTML>
The repeating events that I'm trying to delete were created using
Google Calendar itself. I've literally pulled the event down and stored
it in a CalendarEventEntry object and then:
if(myEntry.getRecurrence() != null && instanceCheck.isSelected()) {
myEntry.setStatus(EventEntry.EventStatus.CANCELED);
myEntry = myService.insert(feedURL, myEntry);
}else {//if(myEntry.getRecurrence() == null){
myEntry.delete();
entries.remove(i);
}
Is there something extra I need to do to the event because I didn't
create it from code?
Thanks,
Jake
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---