I have a service operation of the form:
[WebGet]
public IQueryable<BusinessObject> BusinessObjectsByType(string name)
with access rule
config.SetServiceOperationAccessRule("BusinessObjectsByType", ServiceOperationRights.All);
When I access this service operation through a web browser, it exposes the data but not in feeds and entries (AtomPub format) and neither does it let me use basic query options like $top, $orderby, etc complaining that these 'cannot be applied to the requested resource'. I have matched all requirements specified at http://msdn.microsoft.com/en-us/library/cc668788.aspx but to no success. Any help will be appreciated. Thanks.