Tagged Questions

CORBA is an object-oriented middleware standard, defined by the OMG. It enables software components written in different languages to communicate with each other. Server components implement interfaces defined in IDL and register them with an Object Adapter, and clients can access those services using an ORB (Object Request Broker).

learn more… | top users | synonyms

26
votes
6answers
2k views

Is Corba Legacy?

For a distributed computing project starting today, with 0 legacy components, are there any good reasons to look into Corba?
11
votes
5answers
2k views

CORBA from .NET - (dis)recommended libraries?

I am working on a .NET-based server component that talks to a set of destinations (equity options exchanges, to be specific) using a variety of destination-specific protocols. The next destination we ...
8
votes
3answers
744 views

Why has CORBA lost popularity? [closed]

I've never heard anyone speak of CORBA in anything but derisive terms which is odd considering that 10+ years ago it was the bee's knees. Why did CORBA fall from grace? Was it purely that the ...
8
votes
1answer
576 views

IIOP Client Authentication and ProgrammaticLogin in Glassfish v3

In Glassfish v2 I secure my JNDI lookups by enabling the "IIOP Client Authentication" checkbox in the admin console under the ORB node. In my standalone client I then perform a "ProgrammaticLogin", ...
7
votes
8answers
884 views

Cross-platform alternative to COM

I've been enamoured with component based programming (be it with COM, another system, or just using the paradigm in plain C++). It requires a bit of getting used to, if one is usually used to the ...
6
votes
7answers
1k views

Good guide to CORBA?

Anyone know of a good guide to CORBA? I've never used it and I'm going to have to write a Java (Not my native language I'm a .Net Developer) proof of concept app that uses CORBA.
5
votes
1answer
2k views

How to use Corba with Python

I'm wondering if anyone have a good resource for working with Corba in Python? I've googled around and saw that fnorb was recommended by some, but that it doesn't support some new features in Corba. ...
5
votes
4answers
3k views

What is the best ORB for Java/C++ interoperation using CORBA?

I have a client-server application written in Java using CORBA for the communication. The ORB used is orbd, the one provided by the Java6 platform. I have to replace the Java server implementation ...
4
votes
1answer
71 views

Java class names compatible

We have a Java client which is using corba to call several third party systems. These are different systems which implement the same set of interfaces. We were provided libraries (jar files) to use ...
4
votes
4answers
143 views

Ada/C/++ distributed applications

I am trying to evaluate some technologies for implementing a communication process between some Ada modules with some C++/OpenGL modules. There is an (Windows XP) Ada application which communicates ...
4
votes
1answer
420 views

How to access CORBA interface without IDL or late-bound invoke remoting methods

We have been using an SAP "COM License Bridge" to access their license server and query the hardware key of a system programatically (to reuse with out own licensing). This worked fine on SAP Business ...
4
votes
2answers
237 views

CORBA/ RMI and (D) COM are any still relevant today?

Are CORBA (language agnostic) / RMI (Java) and (D) COM (MS) still relevant today, or is there a technology that has surpassed them? Cheers, J
4
votes
0answers
241 views

How can I compile omniORB for 64-Bit Windows?

I need to call the omniORB's DLLs from a 64-Bit-process and as I get it I need to compile those DLLs as 64-Bit. omniORB seems to support 64-Bit in general, but there are no configuration files ...
4
votes
2answers
462 views

RMI and CORBA Differences?

I am studying for a final and have a few questions about RMI and CORBA. These are discussion questions taken from a study guide so there is no real application context around them. Why are RMI and ...
4
votes
1answer
556 views

Erlang corba tutorial or example?

Can anyone point me at a good tutorial or example of using Erlang for a CORBA client. I have an existing CORBA server written in another language, and need to connect to it using Erlang.
3
votes
1answer
41 views

Error handling using CORBA

I'm currently working on a small client/server project that uses CORBA and I am unsure what the best error handling strategy is. My exposed methods return a string and I need a logical way of ...
3
votes
2answers
422 views

Why did Facebook create Thrift?

Why Facebook created Thrift, when there are CORBA and ICE for the same purpose?
3
votes
1answer
347 views

Is CORBA still being widely used today? [closed]

Possible Duplicate: Is Corba Legacy? I am asking this question because I don't see any new books on CORBA in recent years. I am really new to CORBA, and I am not sure if I still need to ...
3
votes
2answers
188 views

What protocol to use in client-server app comunication with python?

I need to do a client-server application, the client will be made with python-gtk, all procedures will be on server-side to free the client of this workload. So i did search on google about ...
3
votes
3answers
122 views

corba for java - tools that i would need

can someone please tell me what are the tools i would need to write corba compliant applications in java.
3
votes
1answer
141 views

corba implementations where are they found

Corba is a specification and is rmi a corba implementation ?
3
votes
1answer
161 views

How to install implementation of Corba on my computer and then program using any language compatible with Corba

I have to do a project in Corba.I have absolutely zero knowledge of corba.Things that I've to do is first is to install a corba implementation on my PC.After that I have to develop a Photo Printing ...
3
votes
3answers
1k views

Should I use CORBA, MessagePack RPC or Thrift, or something else entirely?

I'm writing software for a new hardware device which I want any kind of new third-party application to be able to access if they want to. The software will be a native process (C++) that should be ...
3
votes
1answer
657 views

Eclipse CORBA plugin howto

I'm new to CORBA and I need to learn how to use it with C++. I see that there is a CORBA plugin for Eclipse, is there some tutorial on how to use this plugin? Are there better ways to use CORBA with ...
3
votes
2answers
353 views

Java CORBA Client Disconnects When Event Fires

I have built a Java CORBA application that subscribes to an event server. The application narrows and logs on just fine, but as soon as an event is sent to the client, it breaks with the error below. ...
3
votes
1answer
505 views

How to let idlj compile idl files in ant

I've no idea how to compile my idl files with the sun-idl compiler (idlj) with the help of ant? Does anyone have an idea?
3
votes
4answers
692 views

Wait for a detached thread to finish in C++

How can I wait for a detached thread to finish in C++? I don't care about an exit status, I just want to know whether or not the thread has finished. I'm trying to provide a synchronous wrapper ...
3
votes
2answers
385 views

How is something like Zircon Zircomp different from ZeroC Ice?

Is there anyone that's currently using Zircon Zircomp? How is their technology different from something like ZeroC ICE? Are they trying to solve the same problem domain? How's their target audience ...
3
votes
2answers
3k views

What is an IOR file, what does it do, and how does it work?

I believe it is related to CORBA in some way (I'm not sure). I'm curious as to its function and how it works. Google isn't helping me when I search for "IOR file", and I'm not sure what else I could ...
2
votes
1answer
88 views

Java IDL : servertool does not register and hangs

I am running CORBA Persistent Object implementation in Java IDL as in Java IDL: The "Hello World" Example I followed exact procedure in above article I used servertool for registering Persistent ...
2
votes
1answer
102 views

CORBA IIOPNet and OmniORBpy, remote method call with valuetype param issue

My scope: I'm trying to create a CORBA solution for two apps one at .NET side (server) and the other on python (client). I'm using IIOPNet for server and IDLs generation and OmniORBpy for Stubs ...
2
votes
1answer
68 views

Which CORBA implementation to use?

In some project, SysV IPC | Posix queues are used to exchange data between processes; with upcoming Windows port of a software, "an enormous amount of headache will be introduced without getting into ...
2
votes
4answers
99 views

Drop-in replacement for MICO Corba?

We are currently using MICO to establish the communication between a server and a client, where the client is a simulator written in C++ and the server is a java program displaying an animation of ...
2
votes
3answers
146 views

how to implement an idl-to-java compiler

I need to implement an idl-to-java compiler. In fact, it's not idl-to-java. Interface definition language is extended. So I need to implement a compiler which can generates java source file. I know ...
2
votes
1answer
65 views

Orbix client in Delphi 7

Is there an easy way to create an Orbix client in Delphi 7? The server is created in C and runs on a Linux server. I know about idl2pas.bat but does that not generate Visibroker specific stubs? It ...
2
votes
2answers
367 views

Implementing CORBA interface in JBoss

I'm looking for a tutorial or any additional information on how to make an EJB (or underlying MBean) accessible via CORBA. This is all I've found: http://www.jboss.org/jbossiiop I have an ...
2
votes
2answers
302 views

IDL to Type Library

Is there a way in Delphi 7 to generate a tlb from an idl? Or even from a class/ interface definition?
2
votes
1answer
60 views

omniORB::MaxMessageSize in omni 4

I am working on a porting project where omni3 has been used. Now we are integrating it with omni 4 which omniORB::MaxMessageSize function is not supported. Anyone know from which function we have to ...
2
votes
3answers
390 views

What is a real life example of CORBA?

What is an example of a situation where CORBA would be used? Is it just a matter of using an interface language (e.g. Java) to 'talk' to all applications?
2
votes
1answer
70 views

Printing stack trace while using CORBA

I need to identify the caller of my method. So I would like to print stack trace. Unfortunately, our system is built with CORBA interfaces so if I print stack trace I see smth like this: at ...
2
votes
0answers
82 views

There is no com.inprise.vbroker.IIOP.Task in vbjclientorb.jar for AIX

We are migrating to VisiBroker 7.0. In our client application we started to use VBJ Client Runtime provided as a Java archive vbjclientorb.jar file. There is no com.inprise.vbroker.IIOP.Task in ...
2
votes
1answer
509 views

C++ CORBA (ACE/TAO) questions

Im using ACE TAO as the CORBA implementation. I would like to find out if anyone know of any options to set Maximum Message Size and Maximum number of Connections. omniORB has two options for these, ...
2
votes
1answer
319 views

Java CORBA Client Disconnects Immediately

I have built a Java CORBA application that subscribes to an event server. The application connects to and narrows on the context just fine, but as soon as an event is sent to the client, it breaks ...
2
votes
2answers
211 views

ORB forwards to a wrong location

I have an orbd started at a virtual host (with the IP A), with some remote object registered. Box that hosts virual boxes has IP B. When client tries to connect to the ORB at A to acquire the ...
2
votes
3answers
784 views

Attempting to connect to a CORBA Service using corbaloc url

String[] orbargs= {}; org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(orbargs, null); org.omg.CORBA.Object cobj = orb.string_to_object("corbaloc:iiop:10.1.1.200:6969/OurServiceHelper"); ...
2
votes
1answer
199 views

How do I get started writing a .Net-wrapper around C++ Omniorb-stubs

my job is to access a CPRBA-server-application from .NET 3.5. After evaluating projets like IIOP.Net (undefined state) and products like VisiBroker (expensive) I'd like to do it "by myself" and write ...
2
votes
3answers
171 views

communication between 2 programs written in different language - Serialization?

when is serialization,marshaling etc required during communication between programs residing across 2 different machines /network/Internet? Suppose I have a client program in java/flash and a server ...
2
votes
4answers
1k views

Is Corba the same as SOA?

I have been looking alot at SOA recently. Isn't CORBA exactly the same thing as SOA?
2
votes
1answer
436 views

CORBA: Trouble while attempting to configure and run OpenORB

I am writing a simulator for a CORBA client, that is I am simulating a CORBA server. A requirement of the CORBA server is that it register a certain object with the CORBA NameService. I have ...
2
votes
1answer
467 views

How to change endianness when unmarshalling a CDR stream containing valuetype objects in Java

I've got marshaled CDR data all by itself in the form of a file (i.e., not packed in a GIOP message) which I need to unmarshal and display on the screen. I get to know what type the data is and have ...

1 2 3 4