连接Corba和dotNet

类别:.NET开发 点击:0 评论:0 推荐:

连接CorbadotNet

翻译HowCanIDo

原文http://www.devx.com/interop/Article/19916/0/page/1

Corba, 公用对象请求代理程序结构(Common Object Request Broker Architecture)的首字母缩写,在跨平台和跨语言(如J2EE)的分布式(多层)系统通信中具有广泛的应用,将CORBA连接到dotNET(在多层应用中,ASP.NET Web services and .NET Remoting 是其主要应用方式)是不容易的。要连接这两者,就需要一个能将dotNetobject描述成Corbaobject,以至于J2EE能使它们交互的方法,同样,也能将Corbaobject描述成dotNetobject,让dotNetcode能认识。换句话说,需要一些中间代码能翻译CorbadotNet FrameWork之间的这些对象和方法调用。BorlandJaneva可以做到这一点。它简化了CorbaJ2EEdotNet之间的处理过程。

Getting Started

在开始之前,你需要有一个Corba Server,尽管有很多读者都有而且在运行,但是还有很多没有,所以,本文第一步就演示如何用C++创建一个简单的Corba Server以练习和测试。要说明的是Corba Server同样可以用JavaDelphi 以及其它语言编写。第二步演示如何利用Janeva连接这个Server

本例中的Server是用Borland C++Builder 6 Enterprise.创建的。如果没有Borland C++Builder,你可以下载编译过的Server,这个Server是基于一个个人议事日程的系统,用来安排电子会议。这个日程编排的细节对于本文来说不是很重要。重要的是如何你用Janeva连接ServereClient

Build a CORBA Server

To build the CORBA server, start C++Builder, click the File | New menu, select Other and go to the Multitier tab of the Object Repository (see Figure 1).

Figure 1. C++Builder Object Repository: The Object Repository contains a list of the items available 

  

Figure 2. CORBA Server Wizard: You use this wizard to specify project options for a new CORBA server project. 

A number of icons appear in the dialog related to CORBA. To start a new CORBA server project from scratch, double-click on the CORBA Server icon, which will display the CORBA Server Wizard so you can specify the options for the new project (see Figure 2).

You can choose to create a Console Application (with or without using Borland's Visual Component Library) or a Windows Application. For this project, select the Windows Application option, because it's convenient to have the server display some visual (debug) information during development.

一个Corba服务能包含一个或多个Corba对象,这些Corba对象的接口声明通常都存储在IDL文件中,当新建一个Corba服务时,可以选择一个存在的IDL 文件或者新建一个空IDL文件,然后加入Corba对象的定义,本例中的IDL如下:

module DiarySrv

   {

     struct DateTime {

       long Date; // example: 20030929

       long Time; // example: 1200

     };

  

     interface ICorbaDiaryServer

     {

       exception MeetingImpossible

       {

         string Reason;

       };

  

       void Meeting(in wstring Names, in DateTime DayTime, in long Duration)

         raises (MeetingImpossible);

     };

   };

  

当点击Corba Server的向导OK按钮后,C++Builder会创建一个新的工程,将Form保存为.MainForm.cpp,工程文件保存为BCB6CorbaServer.bpr。在IDE中将DiarySrv.idl加入工程。当你编译这个工程,C++Builder会运行idl2cpp工具,产生4个基于IDL定义的文件,即DiarySrv_c.cpp and DiarySrv_c.hh (for the stub classes,客户端使用) DiarySrv_s.cpp and DiarySrv_s.hh (for the skeleton classes服务端使用)

Figure 3. CORBA Object Implementation Wizard: You use this Wizard to specify the IDL file, select interface names, the delegation model, and other properties. 

CORBA Object Implementation

分开skeletonstub,要有一个能实际运行的DiarySrv Corba对象。可以使用向导。(see Figure 1 for the icon in the Object Repository). Click File | NewOther, go to the Multitier tab, and double-click on the CORBA Object Implementation icon, which will display the dialog shown in Figure 3

对于每一个IDL文件,可以选择所有接口,根据你选择的是delegation modeldata module并且是否需要在WinMain中创建一个对象示例,向导会建议你输入单元名、类名等。

点击OKIDE会产生两个文件ICorbaDiaryServer.cppICorbaDiaryServer.h。这就是写实际运行的Corba Server对象实现的地方。部分代码:

#pragma hdrstop

  

   #include <corba.h>

   #include "ICorbaDiaryServerServer.h"

  

   #include "MainForm.h"

  

   //----------------------------------------------------

  

   #pragma package(smart_init)

  

  

   ICorbaDiaryServerImpl::ICorbaDiaryServerImpl(

      const char *object_name):

      _sk_DiarySrv::_sk_ICorbaDiaryServer(object_name)

   {

     if (Form1)

        Form1->Caption =

        "ICorbaDiaryServer up and running...";

   }

  

   void ICorbaDiaryServerImpl::Meeting(

      const CORBA::WChar* _Names,

      const DiarySrv::DateTime& _DayTime, CORBA::Long

      _Duration)

   {

     if (Form1)

       Form1->Memo1->Lines->Add(

          "Meeting with " + AnsiString(_Names));

     if (_Duration > 60)

        throw

        DiarySrv::ICorbaDiaryServer::MeetingImpossible(

        "I don't like long meetings...");

   }

 

Figure 4 shows the running application.

Figure 4. The Running CORBA Server: Here's a screenshot of the completed CORBA server. 

注意检查会议时间的代码,如果会议持续时间超过一个小时,会抛出一个错误信息:"I don't like long meetings.",很显然,这个异常纯粹是演示Corba异常,以及C#客户端接受并回应这个错误。

在运行Corba Server之前,要保证VisiBroker在运行状态。

 

Build a CORBA Client

我已经用Cbuilder创建了一个dotNet Corba的客户端,但理论上来说,任何dotNet语言都是可以的。Start C#Builder Enterprise or Architect, and create a new C# application. In the New Application dialog you can specify the name as well as the location of the new project (see Figure 5).

 

Borland Janeva 1.0

Borland Janeva 可以让Microsoft .NET Framework 应用和J2EE/CORBA server 对象无缝结合并高效集成。CBuilder的企业版和架构版都带有Janeva,你也可以到Borland网站上下载(和其它dotNet 开发环境结合,详细信息参见本文结尾)。

Figure 6. Add CORBA Reference: Janeva adds two items to the Add References menu, letting you select J2EE or CORBA references as well as standard file or Web references.

在免费注册后,你可以得到一个用来测试的licence。但是,如果你要分发.Net客户端,则需要购买分发licence

安装完Janeva,你就可以右击Cbuilder中的工程文件,增加一个J2EECorba引用(见图6),没有Janeva,你只能增加普通接口或Web reference

因为本例是Corba server,选择增加Corba引用,将会显示一个对话框,可以选择Corba服务定义的IDL文件。如图7

Corba Server应用发布“接口”定义是通过IDL文件,支持Corba客户端应用的开发环境通常都支持将IDL转化为计算机语言,如C++java,然而对于dotNet客户端,必须要将IDL转化为dotNet语言,如VB.NET c#,IDLtoC#(IDL2CS)是Borland Janeva最受欢迎的特征。

 

Figure 7. Adding a CORBA Reference: Browse to the location of the DiarySrv.idl file to add the reference.

注意,尽管你导入了Corba Server的定义,但是你还没有指明如何连接它。

添加了IDL文件后,Janeva导入并编译IDL文件,产生一个相应的CS文件(DiarySvr.cs)。

"Figure 8. Manual Janeva Compile: If you need to alter an IDL file after adding it, right-click the file in Project Manager and select Janeva Compile from the context menu.

如果将来你要改变IDL文件,可以在工程管理器中右击IDL文件(如图8)选择重新编译。

要使用DiarySrv.cs,在using中增加Corba命名空间和产生的DiarySrv命名空间。

using System;

   using System.Drawing;

   using System.Collections;

   using System.ComponentModel;

   using System.Windows.Forms;

   using System.Data;

  

   using CORBA;

   using DiarySrv;

 

WinForm的构造函数中,创建ORB(对象请求代理)的实例,来连接客户端和服务端。要做到这样,利用vbroker代理端口和14000参数(visibroker默认端口-译者注)调用CORBA.ORB.Init即可。

我使用的是默认的14000端口,你可以使用另外的端口,端口的配置相信信息请参见Corba ORB的文档。

string[] args = new string[]

      {"-vbroker.agent.port", "14000"};

   orb = CORBA.ORB.Init(args);

Calling the CORBA Server

配置完客户端程序后,可以利用一个按钮来创建Corba DiarySrv对象的实例。然后调用Meeting方法。

  private void button1_Click(object sender,

      System.EventArgs e)

   {

      try

      {

         MyCorbaDiaryServer =

            ICorbaDiaryServerHelper.Bind(

            "ICorbaDiaryServerObject");

  

         DiarySrv.DateTime MyDateTime = new

            DiarySrv.DateTime();

         MyDateTime.Date =

            Convert.ToInt32(textBox2.Text);

         MyDateTime.Time =

            Convert.ToInt32(textBox3.Text);

         MyCorbaDiaryServer.Meeting(textBox1.Text,

            MyDateTime, Convert.ToInt32(textBox4.Text));

      }

      catch

         (DiarySrv.ICorbaDiaryServerNS.MeetingImpossible

            ex)

         {

           MessageBox.Show(ex.Reason, "CORBA Exception");

         }

         catch (Exception ex)

         {

           MessageBox.Show(ex.Message, "Error");

         }     

}

对照代码,可以发现:

首先,必须通过正确的名字(在Corba服务端创建Corba Diary 服务对象时指定的,本例中为ICorbaDiaryServerObject)调用绑定方法。

绑定完Corba服务器端对象后,才能调用Meeting方法。但是不要没有检索DateTime,并构造特殊的DiarySrv.DateTimeIDL文件和Corba服务端实现的类型) 对象。

Figure 9. C#Builder CORBA Client: The figure shows the main window for the completed CORBA client running.

代码还包含了4LabelTextBox控件,用来让最终用户输入Meeting方法需要的名称,日期,时间,持续时间等信息。在运行阶段,应用程序效果如图9

注意,持续时间设定为61分钟,仅仅是让Corba客户端抛出异常(如图10)。

Figure 10. CORBA Exception: A MessageBox display of an exception received by the C#Builder CORBA client.

只有将时间限制在60分钟内。就可以安全的增加会议安排到议事日程中。

你在这里所看到的就是Janeva作为所谓的在Corba serverdotNetClient间的企业应用 集成(EAI)层。这项技术的主要优点就是你可以不需重写或修改已经存在的Corba服务就可以连接dotNet应用。

 

―――――――――――――――――――――――――――――――――――

第一次翻译,请指正。

本文地址:http://com.8s8s.com/it/it44005.htm