博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WCF wsHttpBinding之Transport security Mode, clientCredentialType=”Basic”
阅读量:6699 次
发布时间:2019-06-25

本文共 1717 字,大约阅读时间需要 5 分钟。

 

原创地址:                                                                                        

转载请注明出处

 

如何在WCF中使用Transport Security Mode,以及如何创建证书,请参见,本文介绍如何使用Basic clientCredentialType。

 

server web.config

 

 

client app.config:

public partial class Form1 : Form {     DemoServiceReference.DemoServiceClient demoServiceClient;    public Form1()     {         InitializeComponent();         demoServiceClient = new DemoServiceReference.DemoServiceClient();         demoServiceClient.ClientCredentials.UserName.UserName = "alex";         demoServiceClient.ClientCredentials.UserName.Password = "123456";     }    private void buttonCalculate_Click(object sender, EventArgs e)     {         try         {             textBoxResult.Text = demoServiceClient.Divide(Convert.ToInt32(textBoxNumerator.Text), Convert.ToInt32(textBoxDenominator.Text)).ToString();         }         catch (FaultException
fault) { MessageBox.Show(fault.Detail.Error + " - " + fault.Detail.Detail); } } }

 

调用成功。

 

你可能感兴趣的文章
Android添加全屏启动画面
查看>>
6月最后一天
查看>>
使用注解校验参数
查看>>
CSU1256 天朝的单行道(spfa)
查看>>
程序猿的还有一出路:大数据project师
查看>>
洛谷P3375 【模板】KMP字符串匹配
查看>>
grpc mvn protobuf:compile 过程
查看>>
Reflections - Java 8 - invalid constant type
查看>>
CAS无锁实现原理以及ABA问题
查看>>
FIREDAC直连ORACLE数据库
查看>>
六成黑客攻击与PDF漏洞有关 远超微软
查看>>
Gac代码库分析(3)智能指针
查看>>
如何做好技术串讲
查看>>
oracle的sql语句语法
查看>>
实例教程十三:拍照
查看>>
SCRIPT - to Tune the 'SESSION_CACHED_CURSORS' and 'OPEN_CURSORS' Parameters
查看>>
【转】MFC 字体LOGFONT
查看>>
iOS 图片填充 UIImageView
查看>>
spark2.3.0 配置spark sql 操作hive
查看>>
mysql常见错误解决方法
查看>>