介绍
WCF(Windows Communication Foundation) - 安全(Security):本文以用户名和密码做验证,通过X.509证书做加密为例
示例
1、证书
setup.bat makecert -sr LocalMachine -ss My -a sha1 -n CN=Webabcd -sky exchange -pe certmgr -add -r LocalMachine -s My -c -n Webabcd -s TrustedPeople
2、服务
IHello.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ServiceModel; namespace WCF.ServiceLib.Security { /**//// <summary> /// IHello接口 /// </summary> [ServiceContract] public interface IHello { /**//// <summary> /// 打招呼方法 /// </summary> /// <param name="name">人名</param> /// <returns></returns> [OperationContract] string SayHello(string name); } }
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索string
, security
, 证书
, using
, system
示例
wcf 示例、wcf tcp示例、wcf https 示例、wcf 404.17、小程序示例,以便于您获取更多的相关知识。
时间: 2024-11-05 12:29:41