RameshPalanivel / gdata-samples

Automatically exported from code.google.com/p/gdata-samples
0 stars 0 forks source link

Service.Get() tunnels an Entry Get in a Feed Get to get an individual entry #9

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The problem with this is that the client is forcing a "self" url 
(.../feed?id=blah) that is different than 
the self returned by the server (/entry/id). I either have to adopt 
/feed?id=blah as the entry url for 
all clients or I have a situation where the url in Entry.SelfUri is different 
than the one that should be 
used to retrieve the entry.

As a suggestion, either the gdata .net client should not tunnel an entry get in 
a feed get returning 
one entry or it should override Entry.SelfUri to always return /feed?id=blah 
(btw, I am not able to do 
override this since these key methods/properties are not virtual).

Original issue reported on code.google.com by ydewit@gmail.com on 28 Apr 2010 at 12:39