I was asked to split my WCF service into several different .svc files, one per each logical operation group. Now the question is that I must host them in the exact same address
http://somehost/ProjectX/
and I don't really know if I can put them in that exact same route because, although the .svc files have different names, their configuration files all share the name Web.config
. How can I get around this? Should I use
http://somehost/ProjectX/Service1/Service1.svc
http://somehost/ProjectX/Service2/Service2.svc
...
?