分享
 
 
 

连接Corba和dotNet

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

连接Corba和dotNet

翻译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 是其主要应用方式)是不容易的。要连接这两者,就需要一个能将dotNet的object描述成Corba的object,以至于J2EE能使它们交互的方法,同样,也能将Corba的object描述成dotNet的object,让dotNet的code能认识。换句话说,需要一些中间代码能翻译Corba和dotNet FrameWork之间的这些对象和方法调用。Borland的Janeva可以做到这一点。它简化了Corba或J2EE和dotNet之间的处理过程。

Getting Started

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

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

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

分开skeleton和stub,要有一个能实际运行的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 model、data module并且是否需要在WinMain中创建一个对象示例,向导会建议你输入单元名、类名等。

点击OK,IDE会产生两个文件ICorbaDiaryServer.cpp,ICorbaDiaryServer.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

我已经用C#builder创建了一个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 对象无缝结合并高效集成。C#Builder的企业版和架构版都带有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,你就可以右击C#builder中的工程文件,增加一个J2EE或Corba引用(见图6),没有Janeva,你只能增加普通接口或Web reference。

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

Corba Server应用发布“接口”定义是通过IDL文件,支持Corba客户端应用的开发环境通常都支持将IDL转化为计算机语言,如C++、java,然而对于dotNet客户端,必须要将IDL转化为dotNet语言,如VB.NET 或c#,IDL-to-C#(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方法。但是不要没有检索Date和Time,并构造特殊的DiarySrv.DateTime(IDL文件和Corba服务端实现的类型) 对象。

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

代码还包含了4个Label和TextBox控件,用来让最终用户输入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 server和dotNetClient间的企业应用 集成(EAI)层。这项技术的主要优点就是你可以不需重写或修改已经存在的Corba服务就可以连接dotNet应用。

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

第一次翻译,请指正。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有