我正在尝试配置WCF项目以使用HTTPS和HTTP。
我已经设法让这个在我的服务器上运行(HTTPS和HTTP) - 当我远程调试时(使用Chrome的扩展“Advanced Rest Client”)完美无缺地工作,但我一直得到“错误500 System.ServiceModel.ServiceActivationException “在我的localhost环境中。
我已经附加了我的代码,请注意我只是尝试更改“Behavior_Users”(只是为了弄明白)但我确实需要为所有界面使用此HTTP + HTTPS功能。< / p>
这是我的Web.config :
<bindings>
<webHttpBinding>
<binding name="basicWebBinding">
<security mode="None">
<transport clientCredentialType="None" />
</security>
</binding>
<binding name="secureWebBinding">
<security mode="Transport">
<transport clientCredentialType="None" />
</security>
</binding>
</webHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="true" httpsHelpPageEnabled="true"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="Behavior_Users">
<webHttp defaultOutgoingResponseFormat="Json" defaultBodyStyle="Bare"/>
</behavior>
</endpointBehaviors>
</behaviors>
<protocolMapping>
<add binding="basicHttpBinding" scheme="http"/>
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
<services>
<service name="TakesApp.MainWCF.Users">
<endpoint behaviorConfiguration="Behavior_Users" binding="webHttpBinding" bindingConfiguration="basicWebBinding" contract="TakesApp.MainWCF.IUsers">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint behaviorConfiguration="Behavior_Users" binding="webHttpBinding" bindingConfiguration="secureWebBinding" contract="TakesApp.MainWCF.IUsers">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
</service>
</services>
</system.serviceModel>
</configuration>
这是我的方法:
[OperationContract]
[WebInvoke(Method = "*", BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json)]
System.ServiceModel.Channels.Message Register(Stream body);
希望你们能帮助我,我试着找2天正确答案,没有运气。
非常感谢!!!
更新:仍然没有。考虑简单地为调试和发布提供不同的配置。我尝试了每种配置组合。它在服务器上托管时同时适用于HTTPS和HTTP,但它在我的localhost环境中通过POST进行故障转移。 WCF很糟糕。
答案 0 :(得分:0)
好的,所以我发现这是一个已知的WCF错误,特别是在我的调试环境中 - 使用IIS express。
我尝试使用web.config转换(将特定的HTTPS端点添加到web.release.config)来解决它,但它也有一个严重的错误,阻止您更改除第一个设置之外的任何内容。
在2015年的标准中,WCF对于简单的网络外观来说太复杂了。
无论如何,我所做的是在运行时以编程方式设置HTTPS端点,具体取决于环境(生产与否)。
我在global.asax中添加了一个新的服务器主机工厂:
public class ExtendedServiceHostFactory : WebServiceHostFactory
{
protected override ServiceHost CreateServiceHost(Type serviceType, Uri[] baseAddresses)
{
//Add host
WebServiceHost host = (WebServiceHost)base.CreateServiceHost(serviceType, baseAddresses);
host.Description.Behaviors.Add(new ServiceMetadataBehavior { HttpGetEnabled = true });
//Add HTTP endpoint
ServiceEndpoint httpEndpoint = host.AddServiceEndpoint(serviceType.GetInterfaces()[0], new WebHttpBinding(WebHttpSecurityMode.None), string.Empty);
httpEndpoint.Behaviors.Add(new WebHttpBehavior());
//Add HTTPS endpoint
if (ToolBox.IsProduction()) //My proprietary indication for environment type, replace with yours
{
ServiceEndpoint httpsEndpoint = host.AddServiceEndpoint(serviceType.GetInterfaces()[0], new WebHttpBinding(WebHttpSecurityMode.Transport), string.Empty);
httpsEndpoint.Behaviors.Add(new WebHttpBehavior());
}
return host;
}
}
然后我使用此扩展名注册了一个服务(在Application_Start中):
//Routing
RouteTable.Routes.Add(
new ServiceRoute(
"Users", new ExtendedServiceHostFactory(),
typeof(Users)));
现在这显然有效。