我查看了所有其他解决方案,但没有一个正在运行。我正在使用IIS托管WCF服务。以下是我的web.config(我添加WCF服务时的默认设置):
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
</assemblies>
</compilation>
<customErrors mode="Off" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
</configuration>
一切都很好,我可以使用http://www.domain.com/path/service.svc和https://www.domain.com/path/service.svc在浏览器中访问我的wcf服务 - 现在我在Windows控制台应用程序中添加了对https://www.domain.com/path/service.svc的Web引用,以下是在我的app.config中:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="defaultBasicHttpBinding">
<security mode="Transport">
<transport clientCredentialType="None" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="https://www.domain.com/path/service.svc" binding="basicHttpBinding" bindingConfiguration="defaultBasicHttpBinding" contract="DomainExt.IExt" name="BasicHttpBinding_IExt" />
</client>
</system.serviceModel>
</configuration>
以下代码是我用来测试服务的代码:
public static String DoPing()
{
ExtClient client = new ExtClient("BasicHttpBinding_IExt", "https://www.domain.com/path/service.svc");
return client.DoPing();
}
运行后,我得到以下异常:
https://www.domain.com/path/service.svc没有可以接受该消息的端点。这通常是由错误的地址或SOAP操作引起的。有关更多详细信息,请参阅InnerException(如果存在)。
内部异常状态:
“远程服务器返回错误:(404)Not Found。”
此服务在http上正常工作但在https上失败。我怎样才能解决这个问题?请注意,我正在使用Windows控制台而不是通过ASP.NET访问此服务; ASP.NET仅托管WCF服务。
答案 0 :(得分:2)
尝试设置 httpsGetEnabled =“true”而不是httpGetEnabled
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpsGetEnabled="true" />
编辑:如果您使用SSL,我也很好奇为什么选择BasicHttpBinding。为什么不使用WsHttpBinding?
EDIT2:您在主机配置文件中缺少<services>
节点吗?我不认为你可以创建没有一个客户端。您可以右键单击app.config文件并在那里进行配置......如下所示:
<services>
<service behaviorConfiguration="MyServiceBehavior" name="MyService">
<endpoint address="" binding="defaultBasicHttpBinding" bindingConfiguration="basicBinding" contract="IMyService" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="MyServiceBehavior">