Поиск по:rtm-cs.sinp.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера rtm-cs.sinp.msu.ru ,которые мы индексируем. Показаны документы 421 - 440 из 1170.
Упорядочить по:
URL
|
дате изменения
421. MICO application
... Now we want to turn the standalone implementation from the previous section into a MICO application. Because CORBA objects can be implemented in different programming languages the specification of an object's interface and implementation have to be separated. ... Basically the CORBA IDL looks like C++ reduced to class and type declarations (i.e., you cannot write down the implementation of a class method using IDL). Here is the interface declaration for our account object in CORBA IDL: . ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node14.html -- 16.1 Кб -- 07.06.1999
Похожие документы
Похожие документы
422. Separating client and server
Next: Stringified Object References Up: Sample Program Previous: MICO application . CORBA would be pretty useless if you always had to run the object implementation ( server ) and the client that uses the server in the same process. Here is how to separate the client and server parts of the example in the previous section into two processes running on the same or on different machines . ... Stringified Object References . ... The MICO Binder (CORBA Extension) . ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node15.html -- 4.0 Кб -- 07.06.1999
Похожие документы
Похожие документы
423. Stringified Object References
... 1: // file account_ server .cc 2: 3: #include iostream.h 4: #include fstream.h 5: #include account.h 6: 7: class Account_impl : ... public Account_skel 8: { 9: // unchanged, see section MICO Application 10: // ... 11: }; 12: 13: 14: int main( int argc , char * argv [] ) 15: { 16: // ORB initialization 17: CORBA :: ORB _var orb = CORBA :: ORB _init( argc , argv , mico-local- orb ); 18: ... Compile the client and server programs like this: . ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node16.html -- 8.3 Кб -- 07.06.1999
Похожие документы
Похожие документы
424. Naming Service
Next: The MICO Binder (CORBA Up: Separating client and server Previous: Stringified Object References . What we have actually done in the last section is to implement some very simple kind of naming service on top of the file system. ... In the CORBA context a naming service maps names to object references. The simple naming service we implemented in the previous section maps file names to stringified object references. ... make the server register its offered objects with the name service . ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node17.html -- 4.3 Кб -- 07.06.1999
Похожие документы
Похожие документы
425. The MICO Binder (CORBA Extension)
Next: Implementation Overview Up: Separating client and server Previous: Naming Service . ... IDL:Account:1.0 . ... 1: // file account _server2.cc 2: 3: #include account .h 4: 5: class Account _impl : virtual public Account _skel 6: { 7: // unchanged, see section MICO Application 8: // ... 9: }; 10: 11: 12: int main( int argc, char *argv[] ) 13: { 14: // ORB initialization 15: CORBA :: ORB _var orb = CORBA :: ORB _init( argc, argv, mico -local- orb ); 16: CORBA :: BOA _var boa = ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node18.html -- 10.4 Кб -- 07.06.1999
Похожие документы
Похожие документы
426. Implementation Overview
Next: ORB Up: No Title Previous: The MICO Binder (CORBA . ... the Object Request Broker ( ORB ) provides for object location and method invocation. the interface repository stores runtime type information. one or more object adapters which form the interface between object implementations and the ORB ; at least the Basic Object Adapter ( BOA ) has to be provided, part of which is the implementation repository that stores information about how to activate ... Activation Modes . ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node19.html -- 7.2 Кб -- 07.06.1999
Похожие документы
Похожие документы
427. Installation
. Next: Getting MICO Up: No Title Previous: What is MICO? . љ . This chapter explains from where MICO can be obtained, the prerequisites for compiling MICO, how to compile and install MICO, and on which platforms MICO has been tested. љ . Getting MICO . Prerequisits . Unix . Windows 95/NT . Installing MICO . Supported Platforms . Next: Getting MICO Up: No Title Previous: What is MICO? . Arno Puder . Mon Jun 7 10:53:40 PDT 1999
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node2.html -- 3.7 Кб -- 07.06.1999
Похожие документы
Похожие документы
428. ORB
. Next: ORB Initialization Up: Implementation Overview Previous: Implementation Overview . The ORB is implemented as a library ( libmico2.2.7.a ) that is linked into each MICO application. љ . ORB Initialization . Obtaining Initial References . Next: ORB Initialization Up: Implementation Overview Previous: Implementation Overview . Arno Puder . Mon Jun 7 10:53:40 PDT 1999
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node20.html -- 3.3 Кб -- 07.06.1999
Похожие документы
Похожие документы
429. ORB Initialization
... After evaluating them the ORB removes the command line options it understands so the application doesn't have to care about them. ... Set the address the IIOP server should run on. ... If you do not specify this option the IIOP server will choose an unused address. ... Do not add code set information to object references. ... For example the pattern *8859-1* will make the ORB use the code set ISO-8859-1 (Latin 1) as the native char code set, which is the default if you do not specify this option. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node21.html -- 9.6 Кб -- 07.06.1999
Похожие документы
Похожие документы
430. Obtaining Initial References
Next: Interface Repository Up: ORB Previous: ORB Initialization . The ORB offers two functions for obtaining object references for the interface repository, the implementation repository, and the naming service. Here is an example that shows how to obtain a reference for the interface repository using resolve_initial_references() : . int main (int argc, char *argv[]) { CORBA::ORB_var orb = CORBA::ORB_init (argc, argv, "mico-local-orb"); .. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node22.html -- 4.8 Кб -- 07.06.1999
Похожие документы
Похожие документы
431. Interface Repository
... The interface repository is implemented by a separate program ( ird ). ... As has been mentioned in section 4.1.2 the command line option -ORBIfaceRepoAddr can be used to tell a MICO application which interface repository to use. ... ird -ORBIIOPAddr inet:<ird-host-name>:8888 . ... To avoid typing in such long command lines you can put the option into the file .micorc in your home directory: . ... Specifies the file name where ird should save the contents of the interface repository when exiting . ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node23.html -- 5.1 Кб -- 07.06.1999
Похожие документы
Похожие документы
432. BOA
Next: BOA Initialization Up: Implementation Overview Previous: Interface Repository . The Basic Object Adapter (BOA) is the only object adapter specified by CORBA 2. One of its main features is the ability to activate object implementations when their service is requested by a client. Using the implementation repository the BOA decides how an object implementation has to be activated . ... Listing All Entries . ... Forcing Activation of an Implementation . ... Activation Modes . ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node24.html -- 5.6 Кб -- 07.06.1999
Похожие документы
Похожие документы
433. BOA Initialization
Next: BOA Daemon Up: BOA Previous: BOA . ... That way it has access to the applications command line arguments. After evaluating them the BOA will remove the command line options it knows about from argv . As for the ORB you can put BOA specific command line options into a file called .micorc in your home directory. ... This options is part of the interface between the BOA daemon and an object implementation. ... This option tells an object implementation the address of the BOA daemon. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node25.html -- 4.9 Кб -- 07.06.1999
Похожие документы
Похожие документы
434. Getting MICO
Next: Prerequisits Up: Installation Previous: Installation . The latest MICO release is always available at . http://www.vsb.cs.uni-frankfurt.de/~mico/ http://www.icsi.berkeley.edu/~mico/ ftp://diamant.vsb.cs.uni-frankfurt.de/pub/projects/mico/mico-2.2.7.tar.gz . New releases are announced over the MICO mailing list. If you want to subscribe send a message containing . subscribe mico-devel . ... Mon Jun 7 10:53:40 PDT 1999 ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node3.html -- 3.4 Кб -- 07.06.1999
Похожие документы
Похожие документы
435. Prerequisits
. Next: Unix Up: Installation Previous: Getting MICO . љ . љ . Unix . Windows 95/NT . Next: Unix Up: Installation Previous: Getting MICO . Arno Puder . Mon Jun 7 10:53:40 PDT 1999
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node4.html -- 3.2 Кб -- 07.06.1999
Похожие документы
Похожие документы
436. Unix
Next: Windows 95/NT Up: Prerequisits Previous: Prerequisits . ... gnu make version 3.7 or newer (required) . C++ compiler and library (required): . g++ 2.7.2.x and libg++ 2.7.2, or . ... egcs 1.x . flex 2.5.2 or newer (optional) . bison 1.22 or newer (optional) . JDK 1.1.5 (SUN's Java developers kit) (optional) . ... In contrast to gcc 2.7.2 both of them have proper support for exceptions. egcs is a bit easier to install than g++, because it includes a matching C++ library. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node5.html -- 4.1 Кб -- 07.06.1999
Похожие документы
Похожие документы
437. Windows 95/NT
... In order to run MICO on Windows 95 or NT you have to use the Cygnus CDK beta 19 , a port of the GNU tools to Win32 or Microsoft's Visual-C++ compiler. ... Note that you have to install it in the directory the setup program suggests ( c: Cygnus CDK B19 ); otherwise bison won't be able to find its skeleton files. ... mkdir c:\bin copy c:\Cygnus\CDK\B19\H-i386-cygwin32\bin\bash.exe c:\bin\sh.exe mkdir c:\lib copy c:\Cygnus\CDK\B19\H-i386-cygwin32\lib\gcc-lib\2.7-B19\cpp.exe c:\lib . ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node6.html -- 5.3 Кб -- 07.06.1999
Похожие документы
Похожие документы
438. Installing MICO
... With this options you tell configure where the MICO programs and libraries should be installed after compilation. ... If you do not use the -disable-shared option you have to make sure the directory where the MICO library resides is either by default searched for shared libraries by the dynamic linker ( /usr/lib and /lib on most systems) or you have to include the directory in the environment variable that tells the dynamic linker where to search for additional shared libraries. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node7.html -- 9.3 Кб -- 07.06.1999
Похожие документы
Похожие документы
439. Supported Platforms
Next: Guided tour through MICO Up: Installation Previous: Installing MICO . MICO has been tested on the following operating systems: . ... AIX 4.2 on IBM RS/6000 . Linux 2.x on Intel x86 and DEC Alpha . Digital Unix 4.x on DEC Alpha . ... Ultrix 4.2 on DEC Mips (no shared libs, no dynamic loading) . ... Addionally some users reported MICO runs on the following platforms: . FreeBSD 3.x on Intel x86 . ... Please let us know if you fail/succeed in running MICO on any unsupported platform. ...
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node8.html -- 3.7 Кб -- 07.06.1999
Похожие документы
Похожие документы
440. Guided tour through MICO
. Next: Objects in distributed systems Up: No Title Previous: Supported Platforms . љ . Objects in distributed systems . State of development . Sample Program . Standalone program . MICO application . Separating client and server . Stringified Object References . Naming Service . The MICO Binder (CORBA Extension) . Next: Objects in distributed systems Up: No Title Previous: Supported Platforms . Arno Puder . Mon Jun 7 10:53:40 PDT 1999
[
Сохраненная копия
]
Ссылки http://rtm-cs.sinp.msu.ru/manual/mico/doc/node9.html -- 3.9 Кб -- 07.06.1999
Похожие документы
Похожие документы