热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

使用消息头向服务发送额外的信息的实例演示

本文介绍了使用消息头向服务发送额外信息的实例演示。客户端通过OutgoingMessageHeaders添加信息,服务端通过IncomingMessageHeaders获取信息。同时解释了OperationContextScope的作用和使用方法。该实例涉及到WCF技术。

作用:使用消息头向服务发送额外的信息。

1.客户端代码如下:

   



1 namespace Client
2 {
3 class Program
4 {
5 static void Main(string[] args)
6 {
7 CalculatorClient client = new CalculatorClient("secure");
8 double n1 = 5.6;
9 double n2 = 7.3;
10 double result;
11
12 result = client.Add(n2, n1);
13 Console.WriteLine("执行加法后的结果为:{0}", result.ToString());
14
15 result = client.Subtract(n2, n1);
16 Console.WriteLine("执行减法后的结果为:{0}", result.ToString());
17
18 result = client.Multiply(n1, n2);
19 Console.WriteLine("执行乘法后的结果为:{0}", result.ToString());
20
21 result = client.Divide(n1, n2);
22 Console.WriteLine("执行除法后的结果为:{0}", result.ToString());
23
24 //CalculatorSessionClient clientSeesion = new CalculatorSessionClient();
25 //string s = clientSeesion.test("你好我做一个测试!");
26 //string b = clientSeesion.GetServiceDescriptionInfo();
27 //Console.WriteLine(s);
28 //Console.WriteLine(b);
29
30 Test();
31
32 }
33
34 static void Test()
35 {
36 CalculatorSessionClient wcfClient = new CalculatorSessionClient();
37 try
38 {
39 using (OperationContextScope scope = new OperationContextScope(wcfClient.InnerChannel))
40 {
41 MessageHeader header
42 = MessageHeader.CreateHeader(
43 "Service-Bound-CustomHeader",
44 "http://Microsoft.WCF.Documentation",
45 "Custom Happy Value."
46 );
47 OperationContext.Current.OutgoingMessageHeaders.Add(header);
48
49 // Making calls.
50 Console.WriteLine("Enter the greeting to send: ");
51 string greeting = Console.ReadLine();
52
53 //Console.ReadLine();
54 header = MessageHeader.CreateHeader(
55 "Service-Bound-OneWayHeader",
56 "http://Microsoft.WCF.Documentation",
57 "Different Happy Value."
58 );
59 OperationContext.Current.OutgoingMessageHeaders.Add(header);//TODO:自定义传出消息头的用处?
60
61 // One-way
62 wcfClient.test(greeting);
63
64
65 // Done with service.
66 wcfClient.Close();
67 Console.WriteLine("Done!");
68 Console.ReadLine();
69 }
70 }
71 catch (TimeoutException timeProblem)
72 {
73 Console.WriteLine("The service operation timed out. " + timeProblem.Message);
74 Console.ReadLine();
75 wcfClient.Abort();
76 }
77 catch (CommunicationException commProblem)
78 {
79 Console.WriteLine("There was a communication problem. " + commProblem.Message);
80 Console.ReadLine();
81 wcfClient.Abort();
82 }
83
84 }
85 }
86 }

2.服务端代码:

 



1 namespace Microsoft.ServiceModel.Samples
2 {
3 class Program
4 {
5 static void Main(string[] args)
6 {
7 //创建一个ServiceHost
8 using (ServiceHost serviceHost = new ServiceHost(typeof(CalculatorService)))
9 {
10 // Open the ServiceHost to create listeners
11 serviceHost.Open();
12 Console.WriteLine("服务已经开启!");
13 Console.WriteLine("按回车键结束服务!");
14 Console.WriteLine();
15 Console.ReadLine();
16
17 serviceHost.Close();
18
19 }
20 }
21
22 }
23 [ServiceContract]//定义服务协定完成
24 public interface ICalculator
25 {
26 [OperationContract]
27 double Add(double n1, double n2);
28 [OperationContract]
29 double Subtract(double n1, double n2);
30 [OperationContract]
31 double Multiply(double n1, double n2);
32 [OperationContract]
33 double Divide(double n1, double n2);
34 }
35
36 [ServiceContract]
37 public interface ICalculatorSession
38 {
39 [OperationContract]
40 string test(string s);
41
42 [OperationContract]
43 string GetServiceDescriptionInfo();
44 }
45
46 public class CalculatorService : ICalculator, ICalculatorSession
47 {
48 public double Add(double n1, double n2)
49 {
50 return n1 + n2;
51 }
52
53 public double Subtract(double n1, double n2)
54 {
55 return n1 - n2;
56 }
57
58 public double Multiply(double n1, double n2)
59 {
60 return n1 * n2;
61 }
62
63 public double Divide(double n1, double n2)
64 {
65 return n1 / n2;
66 }
67
68 public string test(string s)
69 {
70 Console.WriteLine("Service Said" + s);
71 WriteHeaders(OperationContext.Current.IncomingMessageHeaders);
72 return s;
73 }
74
75 public string GetServiceDescriptionInfo()
76 {
77 StringBuilder sb = new StringBuilder();
78 OperationContext operatiOnContext= OperationContext.Current;
79 ServiceHost serviceHost = (ServiceHost)operationContext.Host;
80 ServiceDescription dec = serviceHost.Description;
81 sb.Append("Base addresses:\n");
82 foreach (Uri url in serviceHost.BaseAddresses)
83 {
84 sb.Append(" " + url + "\n");
85 }
86 sb.Append("Service endpoint:\n");
87 foreach (ServiceEndpoint endPoint in dec.Endpoints)
88 {
89 sb.Append("Address:" + endPoint.Address + "\n");
90 sb.Append("Binding:" + endPoint.Binding + "\n");
91 sb.Append("Contract:" + endPoint.Contract + "\n");
92 }
93
94 return sb.ToString();
95 }
96
97 private void WriteHeaders(MessageHeaders headers)
98 {
99 foreach (MessageHeaderInfo header in headers)
100 {
101 Console.WriteLine("\t" + header.Actor);
102 Console.ForegroundColor = ConsoleColor.White;
103 Console.WriteLine("\t" + header.Name);
104 Console.ForegroundColor = ConsoleColor.Yellow;
105 Console.WriteLine("\t" + header.Namespace);
106 Console.WriteLine("\t" + header.Relay);
107 if (header.IsReferenceParameter == true)
108 {
109 Console.WriteLine("IsReferenceParameter header detected: " + header.ToString());
110 }
111 }
112 Console.ResetColor();
113 }
114 }
115
116 }

这个实例演示的是客户端通过OutgoingMessageHeaders添加了一些信息,然后服务端通过IncomingMessageHeaders

附:(>也许你会有疑问,事情都是OperationContext做的,要class="selflink">OperationContextScope 干什么:个人理解OperationContextScope 类似于数据库连接对象类,wcfClient.InnerChannel就好像是连接字符串,告诉要连接到哪去,整个class="selflink">OperationContextScope 块就像是数据库中的当期连接,信息头就好像是sql语句,出了class="selflink">OperationContextScope 块范围就好数据库断开了连接,进行其他操作要重新连接,>OperationContext 就好像是Command对象执行一些操作)

class="selflink">OperationContextScope 对象建立了当前操作上下文之后,可以使用 OperationContext 执行以下操作:



  • 访问和修改传入和传出消息头和其他属性。


  • 访问运行库,包括调度程序、主机、信道和扩展。


  • 访问其他类型的上下文,如安全、实例和请求上下文。


  • 访问与 OperationContext 对象关联的信道,或(如果信道实现System.ServiceModel.Channels.ISession)访问关联信道的会话标识符。


创建了 class="selflink">OperationContextScope 后,将存储当前的 OperationContext,并且新的 OperationContext 由Current 属性所返回。释放 class="selflink">OperationContextScope 后,将还原原始 OperationContext。

wcf之OperationContextScope,布布扣,bubuko.com


推荐阅读
  • ListView简单使用
    先上效果:主要实现了Listview的绑定和点击事件。项目资源结构如下:先创建一个动物类,用来装载数据:Animal类如下:packagecom.example.simplelis ... [详细]
  • 深入解析动态代理模式:23种设计模式之三
    在设计模式中,动态代理模式是应用最为广泛的一种代理模式。它允许我们在运行时动态创建代理对象,并在调用方法时进行增强处理。本文将详细介绍动态代理的实现机制及其应用场景。 ... [详细]
  • 利用Selenium与ChromeDriver实现豆瓣网页全屏截图
    本文介绍了一种使用Selenium和ChromeDriver结合Python代码,轻松实现对豆瓣网站进行完整页面截图的方法。该方法不仅简单易行,而且解决了新版Selenium不再支持PhantomJS的问题。 ... [详细]
  • 探讨 HDU 1536 题目,即 S-Nim 游戏的博弈策略。通过 SG 函数分析游戏胜负的关键,并介绍如何编程实现解决方案。 ... [详细]
  • 本文介绍了如何通过Java代码计算一个整数的位数,并展示了多个基础编程示例,包括求和、平均分计算、条件判断等。 ... [详细]
  • 本题要求在一组数中反复取出两个数相加,并将结果放回数组中,最终求出最小的总加法代价。这是一个经典的哈夫曼编码问题,利用贪心算法可以有效地解决。 ... [详细]
  • 本文探讨了C++编程中理解代码执行期间复杂度的挑战,特别是编译器在程序运行时生成额外指令以确保对象构造、内存管理、类型转换及临时对象创建的安全性。 ... [详细]
  • C#设计模式学习笔记:观察者模式解析
    本文将探讨观察者模式的基本概念、应用场景及其在C#中的实现方法。通过借鉴《Head First Design Patterns》和维基百科等资源,详细介绍该模式的工作原理,并提供具体代码示例。 ... [详细]
  • Appium + Java 自动化测试中处理页面空白区域点击问题
    在进行移动应用自动化测试时,有时会遇到某些页面没有返回按钮,只能通过点击空白区域返回的情况。本文将探讨如何在Appium + Java环境中有效解决此类问题,并提供详细的解决方案。 ... [详细]
  • 如何清除Chrome浏览器地址栏的特定历史记录
    在使用Chrome浏览器时,你可能会发现地址栏保存了大量浏览记录。有时你可能希望删除某些特定的历史记录而不影响其他数据。本文将详细介绍如何单独删除地址栏中的特定记录以及批量清除所有历史记录的方法。 ... [详细]
  • 解决TensorFlow CPU版本安装中的依赖问题
    本文记录了在安装CPU版本的TensorFlow过程中遇到的依赖问题及解决方案,特别是numpy版本不匹配和动态链接库(DLL)错误。通过详细的步骤说明和专业建议,帮助读者顺利安装并使用TensorFlow。 ... [详细]
  • 本篇文章介绍如何将两个分别表示整数的链表进行相加,并生成一个新的链表。每个链表节点包含0到9的数值,如9-3-7和6-3相加得到1-0-0-0。通过反向处理链表、逐位相加并处理进位,最终再将结果链表反向,即可完成计算。 ... [详细]
  • CentOS 系统管理基础
    本文介绍了如何在 CentOS 中查询系统版本、内核版本、位数以及磁盘分区的相关知识。通过这些命令,用户可以快速了解系统的配置和磁盘结构。 ... [详细]
  • 本文详细探讨了 PHP 中 method_exists() 和 is_callable() 函数的区别,帮助开发者更好地理解和使用这两个函数。文章不仅解释了它们的功能差异,还提供了代码示例和应用场景的分析。 ... [详细]
  • 本文详细介绍了如何解决 Microsoft SQL Server 中用户 'sa' 登录失败的问题。错误代码为 18470,提示该帐户已被禁用。我们将通过 Windows 身份验证方式登录,并启用 'sa' 帐户以恢复其访问权限。 ... [详细]
author-avatar
mobiledu2502862343
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有