vote up 1 vote down star

How would I set up a WCF service hosted in IIS on the root of the domain? i.e. http://www.example.com instead of http://www.example.com/Service1.svc/

I can't figure out how to get rid of the service filename.

flag

67% accept rate

2 Answers

vote up 1 vote down check

Add Service1.svc to the default document names in IIS and move it to the top of the list.

link|flag
Along with rewriting the path in the HttpContext.Current in an IHttpModule, that fixed it. Thanks! – nderraugh Feb 12 at 21:57
vote up 0 vote down

Is that what you really want? If there is any slight chance that you might want a second service from the same domain someday, you'll wish that you hadn't exposed the root publicly that way.

link|flag
I agree - this is certainly out of the norm. Can you (nderraugh) maybe explain why you'd like to do this? – Terry Donaghe Feb 12 at 5:42
I was planning on having a single service and use UriTemplates to handle the path structure. The service will be delivering an XHTML document.. essentially a web page. – nderraugh Feb 12 at 16:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.