ASP

本类阅读TOP10

·asp常用数据库连接方法和技巧
·无组件生成BMP验证码
·一些常用的辅助代码 (网络收藏)
·JavaScript实现的数据表格:冻结列、调整列宽和客户端排序
·VisualStudio.NET_2003及其 MSDN 下载地址
·ASP模拟MVC模式编程
·图片以二进制流输出到网页
·MD5加密算法 ASP版
·ASP.NET编程中的十大技巧
·改进 ASP 的字符串处理性能

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
在Remoting Server上取得Remoting Client的IP地址

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

In short, the Remoting Server can make use of Sink and Sink Provider to retrieve the IP address of the incoming request. The IP address is available in the Transport Headers of the incoming message. After retrieving the IP address in the Sink, we save the IP address to the CallContext, so that it will be available later in the code execution path as well. The followings are some background information regarding the topics:

Sinks and Sink Chains
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconsinkssinkchains.asp

Using CallContext
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconusingcallcontext.asp

Code modified from the sample by Ingo Rammer, author of “Advanced .Net Remoting”:

using System;

using System.Collections;

using System.IO;

using System.Runtime.Remoting;

using System.Runtime.Remoting.Messaging ;

using System.Runtime.Remoting.Channels;

using System.Threading;

using System.Net;

 

namespace ClassLibRemotingIPSink

{

 

     public class ClientIPServerSinkProvider: IServerChannelSinkProvider

     {

         private IServerChannelSinkProvider next = null;

        

         public ClientIPServerSinkProvider(IDictionary properties, ICollection providerData)

         {

         }

        

         public void GetChannelData (IChannelDataStore channelData)

         {

         }

 

         public IServerChannelSink CreateSink (IChannelReceiver channel)

         {

              IServerChannelSink nextSink = null;

              if (next != null)

              {

                   nextSink = next.CreateSink(channel);

              }

              return new ClientIPServerSink(nextSink);

         }

 

         public IServerChannelSinkProvider Next

         {

              get { return next; }

              set { next = value; }

         }

     }

 

     public class ClientIPServerSink : BaseChannelObjectWithProperties, IServerChannelSink, IChannelSinkBase

     {   

         private IServerChannelSink _next;

 

         public ClientIPServerSink (IServerChannelSink next)

         {

              _next = next;

         }

 

         public void AsyncProcessResponse ( System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack sinkStack , System.Object state , System.Runtime.Remoting.Messaging.IMessage msg , System.Runtime.Remoting.Channels.ITransportHeaders headers , System.IO.Stream stream )

         {

         }

 

         public Stream GetResponseStream ( System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack sinkStack , System.Object state , System.Runtime.Remoting.Messaging.IMessage msg , System.Runtime.Remoting.Channels.ITransportHeaders headers )

         {

              return null;

         }

        

         public System.Runtime.Remoting.Channels.ServerProcessing ProcessMessage(System.Runtime.Remoting.Channels.IServerChannelSinkStack sinkStack, System.Runtime.Remoting.Messaging.IMessage requestMsg, System.Runtime.Remoting.Channels.ITransportHeaders requestHeaders, System.IO.Stream requestStream, out System.Runtime.Remoting.Messaging.IMessage responseMsg, out System.Runtime.Remoting.Channels.ITransportHeaders responseHeaders, out System.IO.Stream responseStream)

         {

              if (_next != null)

              {

                   IPAddress ip = requestHeaders[CommonTransportKeys.IPAddress] as IPAddress;

                   Console.WriteLine(ip.ToString());

                   CallContext.SetData("ClientIPAddress",ip);

                   ServerProcessing spres =  _next.ProcessMessage (sinkStack,requestMsg, requestHeaders,requestStream,out responseMsg,out responseHeaders,out responseStream);

                   return spres;

              }

              else

              {

                   responseMsg=null;

                   responseHeaders=null;

                   responseStream=null;

                   return new ServerProcessing();

              }

         }

  

         public IServerChannelSink NextChannelSink

         {

              get {return _next;}

              set {_next = value;}

         }

     }

}




相关文章

相关软件