我在运行时遇到了一些麻烦。
这是我的web.config:
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
<bindings>
<webHttpBinding>
<binding name="requestSizeMax_1MB" maxReceivedMessageSize="1048576" transferMode="Streamed"></binding>
<binding name="requestSizeMax_10MB" maxReceivedMessageSize="10485760" transferMode="Streamed"></binding>
<binding name="requestSizeMax_100MB" maxReceivedMessageSize="104857600" transferMode="Streamed"></binding>
<binding name="requestSizeMax_1000MB" maxReceivedMessageSize="1048576000" transferMode="Streamed"></binding>
</webHttpBinding>
</bindings>
<behaviors>
<endpointBehaviors>
<behavior name="http">
<webHttp />
</behavior>
</endpointBehaviors>
</behaviors>
<services>
<service name="REST.IO.FileHandler">
<endpoint binding="webHttpBinding" bindingConfiguration="requestSizeMax_1000MB" behaviorConfiguration="http" contract="REST.IO.IFileHandler"/>
</service>
</services>
这是我对程序化版本的尝试(在Global.asax中):
protected void Application_Start(object sender, EventArgs e) {
//Dynamically Add Service EndPoint
Uri baseAddress = new Uri("http://localhost:8000/");
WebServiceHost serviceHost = new WebServiceHost(typeof(FileHandler), baseAddress);
WebHttpBinding restBinding = new WebHttpBinding();
restBinding.MaxReceivedMessageSize = 1048576000;
restBinding.TransferMode = TransferMode.Streamed;
ServiceEndpoint restService = serviceHost.AddServiceEndpoint(typeof(IFileHandler), restBinding, "Services/IO/FileHandler");
restService.Behaviors.Add(new WebHttpBehavior());
serviceHost.Open();
}
现在这将有效,但前提是WebServiceHost是在与网站不同的端口上打开的。这与通过web.config设置的不同。如何获得反映web.config功能的编程设置。尝试将其设置为与网站相同的端口将生成“进程无法访问文件,因为它正被另一个进程使用”错误。
我听说你可以覆盖ServiceHostFactory,但我所有的尝试都失败了。我似乎无法让WebServiceHost使用它。 ServiceHost似乎有效,但我使用的是之前开发的REST服务,我需要通过我们的网站以编程方式托管它,主要是因为它是计划托管的少数服务中的第一个,我需要这样做尽可能动态地进行多次展示,我们需要执行。
答案 0 :(得分:0)
我想知道你可能遇到了什么问题。通过命令式配置公开WCF只是设置ServiceHostFactory
,将*.svc
文件指向工厂并在工厂中创建绑定。
这应该让你开始,我已经在博客上介绍了如何为基本的HTTP绑定WCF配置SSL,但总体思路是一样的,你只需要更改绑定,端点和契约。
http://www.wiktorzychla.com/2010/05/how-to-programmatically-configure-ssl.html