views:

48

answers:

1

I have created a new RIA service with OData exposed. I wanted to test it out.

My project name was ChinookSample and the namespace was ChinookSample.Web.Services.

When I try to browse...

http://localhost:52878/Services/ChinookSample-Web-services-dsAlbumAndArtist.svc

I get the service page, but the moment I go for...

http://localhost:52878/Services/ChinookSample-Web-services-dsAlbumAndArtist.svc/OData I get EndPoint not found. What is the correct way to troubleshoot this? I have checked my Web.Config and that has the OData defined.

Also, tag has a squiggly saying system.ServiceModel has invalid Child element domainServices.

Any help is highly appreciated!

+1  A: 

Finally got the issue resolved. I missed the trailing / in the URL.

ttp://localhost:52878/Services/ChinookSample-Web-services-dsAlbumAndArtist.svc/OData/ works.

Rahul Soni