WCF获取客户端IP正确代码操作剖析

开发 开发工具
我们今天将会在这篇文章中以一段代码示例来为大家详细介绍一下WCF获取客户端IP的相关实现方法,希望大家可以充分掌握这一技巧。

WCF应用方法比较灵活,可以为开发人员创造一个跨平台的解决方案。我们在这里会为大家详细讲解一下有关WCF获取客户端IP的操作方法,希望对这方面又需要的朋友们可以从中获得一些帮助。

WCF获取客户端IP的简单方法:

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;using System.Runtime.Serialization;  
  4. using System.ServiceModel;  
  5. using System.Text;  
  6. using System.ServiceModel.Channels;  
  7. namespace ClientInfoSample  
  8. {  
  9. public class MyService : IService  
  10. {  
  11. public string GetData(string value)  
  12. {  
  13. OperationContext context = OperationContext.Current;  
  14. MessageProperties messageProperties = context.IncomingMessageProperties;  
  15. RemoteEndpointMessageProperty endpointProperty =  
  16. messageProperties[RemoteEndpointMessageProperty.Name]  
  17. as RemoteEndpointMessageProperty;   
  18. return string.Format("Hello {0}! Your IP address is {1} and your port is {2}",  
  19. value, endpointProperty.Address, endpointProperty.Port);  
  20. }  
  21. }  
  22. }  
  23. using System;  
  24. using System.Collections.Generic;  
  25. using System.Linq;  
  26. using System.Runtime.Serialization;  
  27. using System.ServiceModel;  
  28. using System.Text;  
  29. namespace ClientInfoSample  
  30. {  
  31. [ServiceContract]  
  32. public interface IService  
  33. {  
  34. [OperationContract]  
  35. string GetData(string value);  
  36. }  

【编辑推荐】

  1. WCF代理文件相关应用技巧分享
  2. WCF服务端安全实现技巧剖析
  3. WCF ABC实质内容介绍
  4. WCF Message类应用基础讲解
  5. WCF自定义过滤器相关实现方法简介
责任编辑:曹凯 来源: 博客园
相关推荐

2009-12-21 15:53:56

WCF获取客户端IP

2010-02-22 11:10:17

WCF获取客户端IP

2009-12-08 16:47:06

WCF IP

2023-11-15 13:50:07

服务端IP

2009-12-21 10:09:26

WCF创建客户端服务对

2009-11-05 13:00:25

WCF客户端

2009-12-22 18:18:11

WCF客户端编程

2009-12-07 18:26:36

WCF客户端

2019-10-29 05:34:34

IPJava服务器

2010-02-25 16:20:02

WCF客户端

2009-12-22 10:29:59

WCF客户端处理

2010-12-21 11:03:15

获取客户端证书

2018-12-19 10:31:32

客户端IP服务器

2010-02-23 09:58:21

WCF客户端验证

2010-02-24 16:39:27

WCF客户端处理

2009-11-05 13:08:44

WCF客户端配置

2009-11-09 15:49:01

WCF异步调用

2011-09-09 09:44:23

WCF

2010-02-23 15:12:25

WCF客户端

2009-12-21 10:19:05

Silverlight
点赞
收藏

51CTO技术栈公众号