up vote 1 down vote favorite
share [g+] share [fb]

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.

link|improve this question

57% accept rate
feedback

2 Answers

up vote 1 down vote accepted

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

link|improve this answer
Along with rewriting the path in the HttpContext.Current in an IHttpModule, that fixed it. Thanks! – Neil D Feb 12 '09 at 21:57
feedback

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|improve this answer
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 '09 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. – Neil D Feb 12 '09 at 16:19
feedback

Your Answer

 
or
required, but never shown

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