0
我正在使用HTTP綁定動態IIS託管(http://blog.micic.ch/net/dynamic-iis-hosted-wcf-service)。我如何在動態IIS託管中使用tcpbinding。動態IIS託管WCF服務與TCP綁定
感謝
我正在使用HTTP綁定動態IIS託管(http://blog.micic.ch/net/dynamic-iis-hosted-wcf-service)。我如何在動態IIS託管中使用tcpbinding。動態IIS託管WCF服務與TCP綁定
感謝
如果遇到在啓動時使用非HTTP激活與註冊的VirtualPathProvider的問題,你應該把類的任何名稱App_Code文件夾。此類必須有public static void AppInitialize()
方法,您可以在其中註冊VirtualPathProvider。
namespace YourHostNameSpace.App_Code
{
public class NonHttpActivation
{
public static void AppInitialize()
{
//do start up stuff here
}
}
}
順便說一句,WCF 4提供開箱即用的頂級WCF 4路由的無文件功能。
Global_asax on App_Start我使用HostingEnvironment.RegisterVirtualPathProvider(new ServicePathProvider());我應該在這個metod中使用 –
那麼,我認爲最好的選擇是使用WCF 4路由。然後你應該寫RouteTable.Routes.Add(new ServiceRoute(「Data」,new ServiceHostFactory(),typeof(DataDips)));在該方法中 – xelibrion
並且不要忘記添加此部分CONFIG <添加relativeAddress = 「Data.svc」 服務= 「DataDips」/> serviceActivations> –
xelibrion