我正在开发一个使用WCF服务的项目。我已经构建了该服务,配置了 web.config 文件,并将其部署在 IIS 7 服务器上。该服务是通过HTTPS访问的(在我的开发机器上,我已经自行创建了证书)。 当在 Visual Studio 2010 中创建 ServiceReference 时,一切都很好,它创建了客户端并且工作正常。
我需要的是以编程方式创建一个客户端(需要一点灵活性),所以当我尝试“手动”连接时,它会给我一个像这样的错误:
提供的 URI 方案“https”无效;预期为“http”。 参数名称:via
web.config的代码是:(希望没有问题)
<system.serviceModel>
<services>
<service name="WcfService1.Service1" behaviorConfiguration="WcfService1.Service1Behavior">
<endpoint address="" binding="wsHttpBinding" bindingConfiguration="TransportSecurity" contract="WcfService1.IService1" />
<endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="WcfService1.Service1Behavior">
<serviceMetadata httpsGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="True"/>
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<wsHttpBinding>
<binding name="TransportSecurity">
<security mode="Transport">
<transport clientCredentialType="None"/>
</security>
</binding>
</wsHttpBinding>
</bindings>
</system.serviceModel>
我编写的访问WCF服务的程序是:
void proc()
{
string ADRESASSL = "https://localhost/ServiciuSSLwsBind/Service1.svc";
WSHttpBinding bind= new WSHttpBinding();
EndpointAddress ea = new EndpointAddress(ADRESASSL);
var myChannelFactory = new ChannelFactory<IService1>(bind, ea);
IService1 client = null;
try
{
client = myChannelFactory.CreateChannel();
client.RunMethod1();
client.Close();
//((ICommunicationObject)client).Close();
}
catch (Exception exc)
{
MessageBox.Show(exc.Message);
if (client != null)
client.Close();
}
}
IService1 的代码
[ServiceContract]
public interface IService1 : IClientChannel
{
[OperationContract]
int RunMethod1();
//....................................
}
看来我在这里做错了什么,该过程引发了我提到的异常。我必须做更多的事情才能工作,但我没有弄清楚。
预先感谢您给我的任何建议。
我还没有对此进行测试,但我相信您需要在创建工厂之前设置绑定的安全模式。
WSHttpBinding
的默认安全模式是 SecurityMode.Message
,而您需要 SecurityMode.Transport
。
您可以通过以下三种方法之一解决此问题。
首先,您可以使用
WSHttpBinding
构造函数的重载版本来指定安全模式,如下所示:
WSHttpBinding bind= new WSHttpBinding(SecurityMode.Transport);
bind.Security.Transport.ClientCredentialType = HttpClientCredentialType.None;
其次,您可以使用无参数构造函数并指定安全模式(和客户端凭据类型),如下所示:
WSHttpBinding bind= new WSHttpBinding();
bind.Security.Mode = SecurityMode.Transport;
bind.Security.Transport.ClientCredentialType = HttpClientCredentialType.None;
第三,您可以在客户端配置中放置一个
binding
配置部分,并在构造函数中引用该部分,如下所示:
WSHttpBinding bind = new WSHttpBinding("TransportSecurity");
第三个示例假设客户端配置文件中有一个名为“TransportSecurity”的
wsHttpBinding
部分。
有关更多信息,请查看这些 MSDN 文章:
好了,用自建证书解决了问题。 我已更改 Viosual Studio 2010 中编程连接和服务引用的端点地址。
string ADRESASSL = "https://localhost/ServiciuSSLwsBind/Service1.svc";
现在是
string ADRESASSL = "https://eu-pc/ServiciuSSLwsBind/Service1.svc";
我已将地址从 localhost 更改为电脑“eu-pc”的名称。它与颁发证书的域有关。 使用 localhost 或 127.0.0.1 仅适用于一种方法或另一种方法。
希望这能帮助其他可能遇到此问题的人。