I just figured out the issue myself. I recently had changed a method in my
google overridden library as :
public new TEntry Insert<TEntry>(Uri feedUri, TEntry newEntry) where TEntry
: EventEntry
{
SetWebProxy(feedUri);
return base.Insert(feedUri, newEntry);
}
when i change it back to :
public new EventEntry Insert(Uri feedUri, AtomEntry newEntry)
{
SetWebProxy(feedUri);
return base.Insert(feedUri, newEntry) as EventEntry;
}
It worked fine. Can somebody at google check the issue in API code ?
Frank, can you help ? Do you remember me ?
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://code.google.com/apis/calendar/community/forum.html