Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - corba
Search - corba - List
DL : 0
java网络编程的代码主要讲述了如何进行简单的服务器和客户端编程以及corba编程-Java network programming code
Update : 2024-05-17 Size : 218112 Publisher : 周通

DL : 0
中间件基于corba对象引用的bank案例-Middleware based on corba object references bank case
Update : 2024-05-17 Size : 25600 Publisher : 韦丽香

中间件基于corba值类型的bank案例-Middleware based on the the corba value type of bank case
Update : 2024-05-17 Size : 23552 Publisher : 韦丽香

Doxygen是一种开源跨平台的,以类似JavaDoc风格描述的文档系统,完全支持C、C++、Java、Objective-C和IDL语言,部分支持PHP、C#。注释的语法与Qt-Doc、KDoc和JavaDoc兼容。Doxgen可以从一套归档源文件开始,生成HTML格式的在线类浏览器,或离线的LATEX、RTF参考手册。-a code document generator tool for * C/C++ * Java * Objective-C * Python * IDL (Corba, Microsoft及KDE-DCOP类型) * Fortran * VHDL * PHP * C#
Update : 2024-05-17 Size : 1936384 Publisher : zhu

Example source code for CORBA IIOP client and server for Java
Update : 2024-05-17 Size : 1024 Publisher : nos12

【示例代码功能说明】 读取并解析出一个IOR文件中各个属性信息,然后按照CDR的编码规则,重新将其编写 生成一个新的IOR文件,在新的IOR文件中,将其中的HOST属性强制改为了计算机的主机名。 其他各个字段的属性信息保持与原IOR文件保持一致。 【阅读后可掌握如下知识点】 1.可以深刻理解CORBA技术中互操作对象的引用(IOR)的概念; 2.可以深刻掌握CDR的解码技术。 以上两点是TAO自带的例子程序(..\ACE_wrappers\TAO\utils\catior)本身提供的功能,我在学习和掌握后,增加了如下新的改动,通过阅读该版本,您可以掌握下面的知识点: 3.通过重新生成一个IOR文件,可以掌握CDR的编码技术(我给出了完整的代码,见头文件中所增加的Encode_IOR()等一系列函数; 4.特别是对于sequence类型,sequence中嵌套sequence<octets>类型的编码的掌握,在源码中给出了详细说明和注释。 [编译运行环境] WindowXP, VisualC++6.0 ACE/TAO开源代码, (注意:运行该代码前需要你先下载编译通过开源的ACE/TAO后,再编译本示例代码方能通过) 【运行测试举例】 comand-prompt:> Repaire -f ns.ior-to use this example project, you can grasp the following skills: (1)deeply understanding the IOR S struct and content. (2)how to encode/decode the CDR s informations.
Update : 2024-05-17 Size : 232448 Publisher : 张群峰

java网络编程精解,本书结合大量典型实例,详细介绍了用java来编写网络应用程序的技术。本书的范例都基于最新的jdk 1.5版本。书中内容包括java网络编程的基础知识、套接字编程、非阻塞通信、创建http服务器和客户程序、数据报通信、对象的序列化与反序列化、java反射机制、RMI框架、JDBC API、JavaMail API、MVC设计模式、安全网络通信、CORBA和web服务。另外还涵盖了Sun公司的SCJD认证的考试要点。
Update : 2013-06-15 Size : 48670094 Publisher : sky_409@126.com

我自己用java编写的一个CORBA结构的小程序。跟大家分享一下-my own use java prepared in a small structure of the CORBA procedures. Share with you some
Update : 2024-05-17 Size : 5120 Publisher : eseco

Distributed OS on serbian language. ODP, DCE, CORBA
Update : 2024-05-17 Size : 622592 Publisher : boby

DL : 1
用JAVA开发corba接口的文档记录 方便了解调测idl文件的流程-Developed using JAVA corba interface documentation to facilitate the understanding Commissioning idl file
Update : 2024-05-17 Size : 139264 Publisher : changlei

Patterns of Enterprise Application Architecture is written in direct response to the stiff challenges that face enterprise application developers. The author, noted object-oriented designer Martin Fowler, noticed that despite changes in technology--from Smalltalk to CORBA to Java to .NET--the same basic design ideas can be adapted and applied to solve common problems. With the help of an expert group of contributors, Martin distills over forty recurring solutions into patterns. The result is an indispensable handbook of solutions that are applicable to any enterprise application platform.
Update : 2024-05-17 Size : 2647040 Publisher : dantejr

DL : 0
Java远程方法调用,即Java RMI(Java Remote Method Invocation)是Java编程语言里,一种用于实现远程过程调用的应用程序编程接口。它使客户机上运行的程序可以调用远程服务器上的对象。远程方法调用特性使Java编程人员能够在网络环境中分布操作。RMI全部的宗旨就是尽可能简化远程接口对象的使用。 Java RMI极大地依赖于接口。在需要创建一个远程对象的时候,程序员通过传递一个接口来隐藏底层的实现细节。客户端得到的远程对象句柄正好与本地的根代码连接,由后者负责透过网络通信。这样一来,程序员只需关心如何通过自己的接口句柄发送消息。 接口的两种常见实现方式是:最初使用JRMP(Java Remote Message Protocol,Java远程消息交换协议)实现;此外还可以用与CORBA兼容的方法实现。RMI一般指的是编程接口,也有时候同时包括JRMP和API(应用程序编程接口),而RMI-IIOP则一般指RMI接口接管绝大部分的功能,以支持CORBA的实现。 最初的RMI API设计为通用地支持不同形式的接口实现。后来,CORBA增加了传值(pass by value)功能,以实现RMI接口。然而RMI-IIOP和JRMP实现的接口并不完全一致。-Java Remote Method Invocation , namely Java RMI (Java Remote Method Invocation) is the Java programming language, used to implement remote procedure call application programming interface. It allows a program running on a client can call a remote object on the server . Remote Method Invocation of the Java programming staff to operate in a distributed network environment . All RMI s mission is to simplify as much as possible the use of the remote interface object . Java RMI greatly dependent on the interface. The need to create a remote object, passing a programmer interface to hide the underlying implementation details. Clients get a remote object handle just connect with local root code , which is responsible for communication over the network . As a result , programmers simply concerned about how to handle through its own interface to send messages . Two common interface implemented as follows: initial use JRMP (Java Remote Message Protocol, Java remote message exchange protocol )
Update : 2024-05-17 Size : 741376 Publisher : 罗广镇

DL : 0
Corba developer library
Update : 2024-05-17 Size : 266240 Publisher : austin

DL : 0
Cos Notifi Corba Library
Update : 2024-05-17 Size : 53248 Publisher : austin

Con Event Channel Corba
Update : 2024-05-17 Size : 35840 Publisher : austin

EIRP notification Corba Library
Update : 2024-05-17 Size : 4096 Publisher : austin

CosNotifi Channel Corba Admn
Update : 2024-05-17 Size : 131072 Publisher : austin

DL : 0
java omniORB corba 资料-java omniORB corba data
Update : 2024-05-17 Size : 73728 Publisher : zhangxjian

Cette industrie du composant n’a vraiment émergé que dans les années 90. En effet, le développement des logiciels à base de composants (Component-Based Software Engineering) est devenu une réalité avec l’évolution des technologies web et java qui ont facilité la distribution, la recherche, l’interopérabilité des composants sur internet et en particulier des COTS (Commercial Off The Shelf). De nombreuses technologies à base de composants sont aujourd’hui proposées : CORBA de l’OMG, Javabeans de SUN, ActiveX de Microsoft, etc. Le nombre et la diversité de ces propositions sont un signe de l’effervescence des travaux dans le domaine mais aussi de leur disparité.
Update : 2024-05-17 Size : 556032 Publisher : djaber

用C++实现了中间件——corba,可以直接运行,工程含完整代码。-Achieved with C++ middleware- corba, you can directly run the project with complete code.
Update : 2024-05-17 Size : 47104 Publisher : 江苏
« 1 2 ... 21 22 23 24 25 2627 28 29 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.