How to remove thie ".svc" extension in RESTful WCF service?
Posted
by Morgan Cheng
on Stack Overflow
See other posts from Stack Overflow
or by Morgan Cheng
Published on 2008-12-10T05:41:34Z
Indexed on
2010/04/21
6:43 UTC
Read the original article
Hit count: 186
In my knowledge, the RESTful WCF still has ".svc" in its URL.
For example, if the service interface is like
[OperationContract]
[WebGet(UriTemplate = "/Value/{value}")]
string GetDataStr(string value);
The access URI is like "http://machinename/Service.svc/Value/2". In my understanding, part of REST advantage is that it can hide the implementation details. A RESTful URI like "http://machinename/Service/value/2" can be implemented by any RESTful framework, but a "http://machinename/Service.svc/value/2" exposes its implementation is WCF.
How can I remove this ".svc" host in the access URI?
© Stack Overflow or respective owner