you can not. Atom publishing protocol does not specify a format for batch updates/inserts. This could be added on as an extension, but is for most applicaitons just not required.

In the C# libs, the feed has a method called "publish". So if you wrote code like:

for (int i=0; i< 10; i++) {
   EventEntry entry = new EventEntry()....
   .....
   feed.Entries.Add(entry);
}

feed.Publish()

it will then send 10 posts to the server in a loop. The same works for editing. It's still N roundtrips though.

Frank Mantek
...writing the code in an HTML editor without color coding...

On 7/21/06, chrism <[EMAIL PROTECTED] > wrote:

Is it possible to insert multiple entry's in a single post.  I see all
the single entry examples but what format do i use for adding 5 entries
at once.  Or can i?  What would the XML for posting look like?

Thanks.






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

Reply via email to