2

这似乎是一个非常简单的问题,但我似乎根本无法弄清楚。

我正在尝试创建一个新的 WCF 服务,但我对必须保护它们并不陌生。我正在使用自定义用户名/密码进行身份验证。我似乎遇到的问题[现在无论如何]是我无法弄清楚如何定义服务以使用 WSHttpBinding(在服务端,而不是客户端)。

我错过了一些非常简单的东西吗?任何指针和/或建议将不胜感激!

编辑

到目前为止,这是我的代码: IAccountService

[ServiceContract]
public interface IAccountService
{
    [OperationContract]
    bool IsCardValid(string cardNumber);

    [OperationContract]
    bool IsAccountActive(string cardNumber);

    [OperationContract]
    int GetPointBalance(string cardNumber);
}

服务 web.config

<system.serviceModel>
<behaviors>
  <serviceBehaviors>
    <behavior>
      <!-- To avoid disclosing metadata information, set the value below to false before deployment -->
      <serviceMetadata httpGetEnabled="true"/>
      <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
      <serviceDebug includeExceptionDetailInFaults="false"/>

      <StructureMapServiceBehavior />
    </behavior>
  </serviceBehaviors>
</behaviors>
<extensions>
  <behaviorExtensions>
    <add name="StructureMapServiceBehavior" type="Marcus.Loyalty.WebServices.Setup.StructureMapServiceBehavior, Marcus.Loyalty.WebServices, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"/>
  </behaviorExtensions>
</extensions>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" aspNetCompatibilityEnabled="true" />
<services>
  <service name="Marcus.Loyalty.WebServices.Account.IAccountService">
    <endpoint address=""
      binding="wsHttpBinding"
      bindingConfiguration="WSHttpBinding_Config"
      contract="Marcus.Loyalty.WebServices.Account.IAccountService"/>
  </service>
</services>
<bindings>
  <wsHttpBinding>
    <binding name="WSHttpBinding_Config"/>
  </wsHttpBinding>
</bindings>
</system.serviceModel>

测试应用程序(控制台应用程序)

class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine("Please enter card number");
        var number = Console.ReadLine();

        var endPoint = new EndpointAddress("http://localhost:59492/Account/AccountService.svc");
        var binding = new WSHttpBinding(SecurityMode.Message);
        binding.Security.Message.ClientCredentialType = MessageCredentialType.UserName;
        binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.Basic;

        var cf = new ChannelFactory<IAccountService>(binding, endPoint);
        cf.Credentials.UserName.UserName = "testuser";
        cf.Credentials.UserName.Password = "Password1!";

        var service = cf.CreateChannel();
        var balance = service.IsAccountActive(number);

        Console.WriteLine("\nBALANCE: {0:#,#}", balance);

        Console.Write("\n\nPress Enter to continue");

        Console.Read();
    }
}

测试应用 app.config

<configuration>

<system.serviceModel>
    <bindings>
        <wsHttpBinding>
            <binding name="BasicHttpBinding_IAccountService" />
        </wsHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://localhost:59492/Account/AccountService.svc"
            binding="wsHttpBinding" bindingConfiguration="BasicHttpBinding_IAccountService"
            contract="ServiceReference1.IAccountService" name="BasicHttpBinding_IAccountService" />
    </client>
</system.serviceModel>
</configuration>
4

2 回答 2

0

MSDN 上有一个广泛的示例(如何:在代码中指定服务绑定) - 但基本上,您需要:

  • 您的服务合同 ( IMyService)
  • 该服务的实现 ( MyService)
  • 您创建ServiceHost托管服务的代码

你得到了这一切?伟大的!

在这种情况下,只需执行以下操作:

// Specify a base address for the service
string baseAddress = "http://YourServer/MyService";

// Create the binding to be used by the service.
WsHttpBinding binding1 = new WsHttpBinding();

using(ServiceHost host = new ServiceHost(typeof(MyService)))
{
    host.AddServiceEndpoint(typeof(IMyService), binding1, baseAddress);

    host.Open();

    Console.ReadLine();
}    

现在你应该让你的服务主机在你选择的基地址上启动并运行,并wsHttpBinding在代码中定义。

于 2012-11-30T16:55:36.273 回答
0

您需要将 abc(地址,绑定,合同)配置定义到 de web.config 文件中(您也可以通过编程方式进行。b部分,绑定,您可以指定wsHttpBinding

<system.serviceModel>
    <services>
        <service name = "MyNamespace.MyService">
            <endpoint
            address = "http://localhost:8000/MyService"
            binding = "wsHttpBinding"
            contract = "MyNamespace.IMyContract" />
        </service>
    </services>
</system.serviceModel>

如果您希望以适当的方式启用安全性,有很多文献和选项。您可以使用证书、基于 Windows 的令牌、... 像参数一样传递用户名和密码并不是最好的方法。

于 2012-11-30T16:09:02.063 回答