代码改变世界

WCF 第四章 绑定 ws2007HttpBinding

  DanielWise  阅读(1721)  评论(0编辑  收藏  举报
.NET Framework 3.5 介绍了一种用于Web 服务交互称为ws2007HttpBinding绑定的新的绑定。这个绑定类似于ws2007HttpBinding绑定除了它支持最新的WS-* 消息,安全,可信赖消息和事务标准。表4.8列出了ws2007HttpBinding支持的新的WS-*标准。
表4.8 WS-* ws2007HttpBinding 绑定支持的标准
下面的代码显示了ws2007HttpBinding绑定使用的地址格式:
http://{hostname}:{port}/{service location}
https://{hostname}:{port}/{service location}
默认http端口是80,https端口是443。这是任意基于HttpTransportBindingElement绑定元素的情形,包括wsHttpBinding绑定。
表4.9 显示了在ws2007HttpBinding上可以配置的绑定属性。
表4.9 ws2007HttpBinding绑定属性
n/a – 意味着设置是一个子元素,需要多个属性被设置或者另外一个属性被设置才会起作用。
下面的配置信息用来与列表4.2~4.4中显示了样例一起使用。列表4.15中显示的配置信息使用ws2007HttpBinding绑定来暴露StockQuoteService服务。
列表4.15 ws2007HttpBinding 宿主配置
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.serviceModel>
        <services>
            <service behaviorConfiguration="" name="EssentialWCF.StockQuoteService">
                <endpoint binding="ws2007HttpBinding" bindingConfiguration=""
                    contract="EssentialWCF.IStockQuoteService" />
                <host>
                    <baseAddresses>
                        <add baseAddress="http://localhost/stockquoteservice" />
                    </baseAddresses>
                </host>
            </service>
        </services>
    </system.serviceModel>
</configuration>
列表4.16显示了对用ws2007HttpBinding绑定的4.15中的服务进行调用的客户端配置信息。
列表4.16 ws2007HttpBinding客户端配置
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.serviceModel>
        <bindings />
        <client>
            <endpoint address="http://localhost/stockquoteservice" binding="ws2007HttpBinding"
                bindingConfiguration="" contract="EssentialWCF.IStockQuoteService"
                name="" />
        </client>
    </system.serviceModel>
</configuration>
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· [AI/GPT/综述] AI Agent的设计模式综述
点击右上角即可分享
微信分享提示