nbevans
nbevans

Reputation: 7959

WCF REST Starter Kit has ugly URIs

This starter kit seems to use incredibly ugly URIs that include a "Service.svc" filename.

Surely if you're going to have a service called say "Users.svc" you'd want the URI to look like '/users/' rather than '/Users.svc/'?

Is there a way this can be fixed?

Upvotes: 1

Views: 186

Answers (1)

marc_s
marc_s

Reputation: 755361

This is a limitation of hosting the WCF REST Service in IIS - for the time being, this requires a *.svc file and that file shows up in the URL.

You do not have this limitation:

Marc

Upvotes: 2

Related Questions