7
我可以在WCF的IIS下的一個虛擬目錄中有多個.svc文件嗎?如果是這樣如何?我可以在WCF的IIS下的一個虛擬目錄中有多個.svc文件嗎?
我可以在WCF的IIS下的一個虛擬目錄中有多個.svc文件嗎?如果是這樣如何?我可以在WCF的IIS下的一個虛擬目錄中有多個.svc文件嗎?
你需要有兩個服務合同,並在web.config
部分,你需要有註冊的兩個服務:
<system.serviceModel>
<services>
<service name="YourNamespace.Service1"
behaviorConfiguration="returnFaults">
<endpoint
address=""
binding="basicHttpBinding"
contract="Yournamespace.IService1" />
</service>
<service name="YourNamespace.Service2"
behaviorConfiguration="returnFaults">
<endpoint
address=""
binding="basicHttpBinding"
contract="Yournamespace.IService2" />
</service>
</services>
</system.serviceModel>
然後,你可以爲自己的各兩個服務.svc
文件。