views:

87

answers:

0

Try to understand what the options might be with use of WCF Data Services, Basicly i'm trying to abstract a 3rd party http API by making a RestFull services from the 3rd Party set of api calls. On top of this im intrested in the Odata representation and Api support that Data Services.

Example 3rd Party Call,

1)GetAll Vehicles

  I want to represent it in a restfull call http://localhost/Vehicles

2)GetVehicleLocation(vehicles)

  I want to represent it in a restfull call http://localhost/Vehicles(1)/Location

The challenge im looking at how can i invoke the List {to make it simple} from the web service call. This part is striaght forward where i need some guidance is when were doing the Call 2), since the Location infomation is based off a webservice call passing the Vehcle, Linq to Object is assuming the POCO are filled if im understanding correctly..

This article Data Services Streaming seems to be on the path...