青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

twzheng's cppblog

『站在風口浪尖緊握住鼠標旋轉!』 http://www.cnblogs.com/twzheng

  C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
  136 隨筆 :: 78 文章 :: 353 評論 :: 0 Trackbacks
.NET Remoting
By Mark Strawmyer 

[源] http://www.developer.com/net/cplus/article.php/10919_1479761_1

The last two Nuts and Bolts articles focused on database related topics. This month we'll change gears and focus on something different. The focus of this month's article will be .NET remoting. We'll discuss what is .NET Remoting, how it compares to DCOM and Web services, and go through an example.

What is .NET Remoting?

.NET Remoting is an enabler for application communication. It is a generic system for different applications to use to communicate with one another. .NET objects are exposed to remote processes, thus allowing interprocess communication. The applications can be located on the same computer, different computers on the same network, or even computers across separate networks.

.NET Remoting versus Distributed COM

In the past interprocess communication between applications was handled through Distributed COM, or DCOM. DCOM works well and the performance is adequate when applications exist on computers of similar type on the same network. However, DCOM has its drawbacks in the Internet connected world. DCOM relies on a proprietary binary protocol that not all object models support, which hinders interoperability across platforms. In addition, have you tried to get DCOM to work through a firewall? DCOM wants to communicate over a range of ports that are typically blocked by firewalls. There are a ways to get it to work, but they either decrease the effectiveness of the firewall (why bother to even have the firewall if you open up a ton of ports on it), or require you to get a firewall that allows support for binary traffic over port 80.

.NET Remoting eliminates the difficulties of DCOM by supporting different transport protocol formats and communication protocols. This allows .NET Remoting to be adaptable to the network environment in which it is being used.

.NET Remoting versus Web Services

Unless you have been living in a cave, or are way behind in your reading, you have probably read something about Web services. When you read the description of .NET Remoting it may remind you a lot of what you're read about Web services. That is because Web services fall under the umbrella of .NET Remoting, but have a simplified programming model and are intended for a wide target audience.

Web services involve allowing applications to exchange messages in a way that is platform, object model, and programming language independent. Web services are stateless and know nothing about the client that is making the request. The clients communicate by transferring messages back and forth in a specific format known as the Simple Object Access Protocol, or SOAP. (Want to get some funny looks in the hallway? Stand around in the hallway near the marketing department with your colleagues and discuss the benefits of using SOAP).

The following list outlines some of the major differences between .NET Remoting and Web services that will help you to decide when to use one or the other:

  • ASP.NET based Web services can only be accessed over HTTP. .NET Remoting can be used across any protocol.
  • Web services work in a stateless environment where each request results in a new object created to service the request. .NET Remoting supports state management options and can correlate multiple calls from the same client and support callbacks.
  • Web services serialize objects through XML contained in the SOAP messages and can thus only handle items that can be fully expressed in XML. .NET Remoting relies on the existence of the common language runtime assemblies that contain information about data types. This limits the information that must be passed about an object and allows objects to be passed by value or by reference.
  • Web services support interoperability across platforms and are good for heterogeneous environments. .NET Remoting requires the clients be built using .NET, or another framework that supports .NET Remoting, which means a homogeneous environment.

Channels

Remote objects are accessed through Channels. Channels physically transport the messages to and from remote objects. There are two existing channels TcpChannel and HttpChannel. Their names give away the protocols that they use. In addition, the TcpChannel or HttpChannel can be extended, or a new channel created if you determine the existing channels do not meet your needs.

Create a Remotable Object

 

A remotable object is nothing more than an object that inherits from MarshalByRefObject. The following sample demonstrates a simple class to expose the omnipresent hello world. This object exposes a single method HelloWorld that will return a string. The only values that can be returned from methods are the classes in the .NET Framework that are serializable such as string and DataSet. In addition, if you need to return a user-defined object then the object needs to be marked as serializable.

 

Create a new C# class library project. Add a class called SampleObject and put in the following code. Add a reference to System.Runtime.Remoting in the project, otherwise the TcpChannel will not be found. Compile the class to make sure you have everything correct.

using System;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
namespace CodeGuru.Remoting
{
/// <remarks>
/// Sample object to demonstrate the use of .NET Remoting.
/// </remarks>
public class SampleObject : MarshalByRefObject
{
/// <summary>
/// Constructor
/// </summary> 
public SampleObject()
{
}

/// <summary>
/// Return a hello message
/// </summary>
/// <returns>Hello world message</returns>
public string HelloWorld()
{
return "Hello World!";
}
}
}

Create a Server To Expose the Remotable Object

We need to create a server object that will act as a listener to accept remote object requests. For this example we will use the TCP/IP channel. We first create an instance of the channel and then register it for use by clients at a specific port. The service can be registered as WellKnownObjectMode.SingleCall, which results in a new instance of the object for each client, or as WellKnownObjectMode.Singleton, which results in one instance of the object used for all clients.

It is not necessary to create the server listener if you are planning to use IIS. For obvious reasons, IIS only supports the use of the HttpChannel. Create a virtual directory for your application and then put code to register your service in the Application_Start event.

For our example, we'll go ahead and create a server listener in case you don't have IIS. Since the service needs to be bound to an available port, for our example I chose 8080, which is a port that I know to be unused on my computer. You may need to choose a different port depending upon what ports you have available. To see a list of the used ports on your computer open a command prompt and issue the command "netstat --a". It may produce a long listing so make sure the command prompt buffer sizes are set to allow scrolling. Compile the class to make sure you have everything correct.

Create a new C# console application project. Add a class called SampleServer and paste in the following code. Add a reference to System.Runtime.Remoting in the project, otherwise the TcpChannel will not be found. In addition, add a reference to the project containing the SampleObject, otherwise the code will not compile because it won't know how to find a reference to SampleObject.

using System;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
namespace CodeGuru.Remoting
{
/// <remarks>
/// Sample server to demonstrate the use of .NET Remoting.
/// </remarks>
public class SampleServer
{
public static int Main(string [] args)
{
// Create an instance of a channel
TcpChannel channel = new TcpChannel(8080);
ChannelServices.RegisterChannel(channel);
// Register as an available service with the name HelloWorld
RemotingConfiguration.RegisterWellKnownServiceType(
typeof(SampleObject),
"HelloWorld",
WellKnownObjectMode.SingleCall );
System.Console.WriteLine("Press the enter key to exit...");
System.Console.ReadLine();
return 0;
}
}
}

Create a Client To Use the Remotable Object

Now that we have our remotable object and a server object to listen for requests, let's create a client to use it. Our client will be very simple. It will connect to the server, create an instance of the object using the server, and then execute the HelloWorld method.

Create a new C# console application project. Add a class called SampleClient and paste in the following code. Add a reference to System.Runtime.Remoting in the project, otherwise the TcpChannel will not be found. In addition, add a reference to the project containing the SampleObject, otherwise the code will not compile because it won't know how to find a reference to SampleObject. Compile the class to make sure you have everything correct.

using System;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
namespace CodeGuru.Remoting
{
/// <remarks>
/// Sample client to demonstrate the use of .NET Remoting.
/// </remarks>
public class SampleClient
{
public static int Main(string [] args)
{
// Create a channel for communicating w/ the remote object
// Notice no port is specified on the client
TcpChannel chan = new TcpChannel();
ChannelServices.RegisterChannel(chan);
// Create an instance of the remote object
SampleObject obj = (SampleObject) Activator.GetObject(
typeof(CodeGuru.Remoting.SampleObject),
"tcp://localhost:8080/HelloWorld" );
// Use the object
if( obj.Equals(null) )
{
System.Console.WriteLine("Error: unable to locate server");
}
else
{
Console.WriteLine(obj.HelloWorld());
}
return 0;
}
}
}

Test the Remoting Sample

Once you have created the projects and successfully compiled each of them you are ready to try it out. Assuming you chose a free TCP/IP port for the service, start the server executable. After the server successfully starts it will result in a console window being displayed with the message "Press the enter key to exit". The server is listening so you are now ready to run the client. Executing the client should result in "Hello World!" being displayed in a separate console window. The client window will then close while the server remains open and available.

If you have multiple computers available to you on a network you could execute the server on one machine and the client on another just to prove to yourself that it really is remoting. In order to run on separate machines you would need to change the reference to localhost in the sample client to point to the appropriate location.

Summary

.NET Remoting is a powerful way to enable interprocess communication. It is more complicated to program against than Web services. You need to decide for yourself whether your standard architecture is to use .NET Remoting or Web services.

Future Columns

The next column will be on the use of encryption in the .NET framework. We'll take a look at some of the encryption algorithms available in the framework and ways to use them. If you have a particular topic in mind please email me at mstrawmyer@crowechizek.com

About the Author

Mark Strawmyer, MCSD, MCSE (NT4/W2K), MCDBA is a Senior Architect of .NET applications for large and mid-size organizations. Mark is a technology leader with Crowe Chizek in Indianapolis, Indiana. He specializes in architecture, design and development of Microsoft-based solutions. You can reach Mark at mstrawmyer@crowechizek.com.

posted on 2007-05-14 00:30 譚文政 閱讀(720) 評論(0)  編輯 收藏 引用 所屬分類: vc++.net
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            久久精品国产99精品国产亚洲性色| 美乳少妇欧美精品| aa亚洲婷婷| 欧美在线www| 日韩视频一区二区在线观看 | 久久免费视频网站| 亚洲中字黄色| 欧美日韩999| 亚洲美女电影在线| 久久精品网址| 欧美区视频在线观看| 亚洲人成网站色ww在线| 免费日韩成人| 免费人成网站在线观看欧美高清| **性色生活片久久毛片| 你懂的国产精品| 欧美大色视频| 亚洲色图在线视频| 亚洲网站在线| 国产一区免费视频| 免费一级欧美在线大片| 美女精品在线观看| 99精品国产一区二区青青牛奶| 亚洲激情精品| 老司机午夜精品视频| 亚洲人成在线影院| 99国产成+人+综合+亚洲欧美| 欧美四级在线观看| 欧美一区二区免费视频| 久久精品二区三区| 亚洲精品一二三| 夜夜嗨av一区二区三区四区| 国产精品国产| 久久久777| 欧美激情五月| 欧美在线观看一区二区三区| 久久久久一区二区三区四区| 亚洲精品在线视频观看| 亚洲一区二区三区乱码aⅴ蜜桃女| 国产日产欧产精品推荐色| 欧美成人亚洲成人日韩成人| 欧美日韩在线免费| 久久亚洲精品一区二区| 欧美精品福利在线| 欧美在线|欧美| 欧美好吊妞视频| 久久高清国产| 欧美日韩国产精品自在自线| 久久成人在线| 欧美日韩国产麻豆| 久久综合精品国产一区二区三区| 欧美韩日一区| 欧美连裤袜在线视频| 午夜精品久久| 欧美a级大片| 欧美与黑人午夜性猛交久久久| 另类国产ts人妖高潮视频| 欧美日韩精品系列| 麻豆国产精品777777在线| 欧美三级电影大全| 免费亚洲电影在线| 国产精品美女| 亚洲精品视频免费在线观看| 国产一区二区| 亚洲视频1区2区| 日韩午夜在线视频| 久久全球大尺度高清视频| 亚洲欧美国产77777| 久久在线视频在线| 欧美在线黄色| 国产精品一区免费视频| 亚洲伦理在线免费看| 一区二区日韩精品| 欧美极品一区| 性欧美1819性猛交| 最新中文字幕一区二区三区| 99re热这里只有精品视频| 欧美日韩三级在线| 久久精品国产精品亚洲综合| 亚洲国产欧美一区二区三区久久 | 玖玖玖国产精品| 亚洲欧美一区二区三区久久| 欧美激情视频一区二区三区在线播放 | 亚洲男同1069视频| av成人免费在线| 欧美xx视频| 欧美国产视频在线观看| 精品成人久久| 久热综合在线亚洲精品| 欧美国产日产韩国视频| 亚洲高清在线观看一区| 久久亚洲精品一区| 欧美aa在线视频| 尤妮丝一区二区裸体视频| 久久精品99国产精品酒店日本| 久久av一区| 韩国成人福利片在线播放| 欧美一区二区精品| 久久综合国产精品| 亚洲国产精品悠悠久久琪琪| 猫咪成人在线观看| 91久久久久久久久久久久久| 99热精品在线观看| 欧美视频日韩| 欧美一级日韩一级| 农村妇女精品| 99视频一区二区| 国产精品国产三级国产| 午夜精品影院在线观看| 葵司免费一区二区三区四区五区| 亚洲高清二区| 欧美日韩国产成人| 亚洲欧美国产另类| 美女视频网站黄色亚洲| 亚洲国产精品第一区二区三区| 麻豆精品在线观看| 日韩视频专区| 久久激情网站| 亚洲精品久久久久久久久久久久久| 欧美11—12娇小xxxx| 日韩视频在线免费| 久久免费视频网| 99热这里只有精品8| 国产精品一区二区黑丝| 久久亚洲综合网| 一区二区免费在线视频| 久久综合九色综合久99| 亚洲香蕉视频| 欧美日韩亚洲系列| 亚洲免费高清| 欧美在线观看视频在线| 亚洲国产日韩在线一区模特| 欧美日韩综合网| 久久久综合香蕉尹人综合网| 亚洲日本电影在线| 久久精品中文字幕免费mv| 亚洲黄色在线视频| 国产欧美日韩综合| 欧美精选午夜久久久乱码6080| 午夜精品av| 亚洲美女视频在线免费观看| 久久久女女女女999久久| 亚洲理伦在线| 很黄很黄激情成人| 国产精品久久久久7777婷婷| 麻豆freexxxx性91精品| 午夜精彩视频在线观看不卡 | 久久gogo国模裸体人体| 亚洲黄一区二区三区| 欧美亚洲视频在线看网址| 日韩视频精品| 1769国产精品| 国产在线欧美日韩| 国产精品一区久久久| 欧美国产日韩一区二区三区| 久久爱www.| 亚洲一区高清| 妖精成人www高清在线观看| 亚洲国产精品va在线看黑人 | 亚洲伊人观看| 一区二区三区.www| 欧美激情国产日韩| 久久久久久一区二区| 欧美一区二区三区视频免费| 亚洲天堂av在线免费| 亚洲免费av网站| 亚洲国产视频一区| 亚洲高清123| 亚洲精品日本| 亚洲黄色小视频| 在线日韩欧美视频| 精品成人在线观看| 精品成人国产在线观看男人呻吟| 国产欧美日韩另类一区| 国产精品系列在线播放| 国产精品久久国产三级国电话系列| 欧美日韩日本国产亚洲在线| 欧美福利视频| 欧美精品在线视频| 欧美日韩国语| 国产精品久久久久9999高清 | 亚洲精品国产精品国自产在线 | 国产精品超碰97尤物18| 欧美日韩国产91| 欧美日韩一区二区三区在线观看免| 欧美成人国产| 欧美日韩免费高清一区色橹橹| 欧美激情黄色片| 欧美日韩亚洲一区三区| 欧美日韩成人综合在线一区二区| 久久嫩草精品久久久精品一| 久久久精品一区| 麻豆91精品| 欧美日韩视频免费播放| 欧美性猛交xxxx免费看久久久 | 美女露胸一区二区三区| 欧美肥婆在线| 亚洲无线视频| 久久精品视频99| 欧美成人免费大片|