1

我正在开发一个使用 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();

 //....................................
}

看来我在这里做错了,该程序引发了我提到的异常。我必须做更多的事情才能工作,但我没有弄清楚。

提前感谢您能给我的任何建议。

4

2 回答 2

3

我没有测试过这个,但我相信你需要在创建工厂之前为绑定设置安全模式。的默认安全模式WSHttpBindingSecurityMode.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");

第三个示例假定wsHttpBinding客户端配置文件中有一个名为“TransportSecurity”的部分。

有关详细信息,请查看以下 MSDN 文章:

如何:设置安全模式

WSHttpBinding 构造函数

于 2013-02-18T06:23:29.480 回答
1

好吧,解决了自创证书的问题。我已经更改了 Viosual Studio 2010 中编程连接和服务引用的端点地址。

string ADRESASSL = "https://localhost/ServiciuSSLwsBind/Service1.svc";

现在是

string ADRESASSL = "https://eu-pc/ServiciuSSLwsBind/Service1.svc";

我已将地址从 localhost 更改为 pc "eu-pc" 的名称。它与颁发证书的域有关。使用 localhost 或 127.0.0.1 仅适用于一种方法或另一种方法。

希望这会帮助其他可能遇到此问题的人。

于 2013-02-18T20:43:05.007 回答