是否有可能有這樣的WCF服務配置:是否可以在VS 2008開發服務器上使用netTcpBinding?
<service behaviorConfiguration="WcfService1.Service1Behavior"
name="WcfService1.Service1">
<endpoint address="" binding="netTcpBinding" bindingConfiguration=""
contract="WcfService1.IService1">
</endpoint>
<endpoint address="mex" binding="mexTcpBinding" bindingConfiguration=""
contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="net.tcp://localhost/netTcpService" />
</baseAddresses>
</host>
</service>
而且有它託管隨Visual Studio 2008中的ASP.NET開發服務器上,或者我一定要主辦IIS服務7還是將其託管在託管應用程序/ Windows服務中?
謝謝你的見解!