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 ...

learn more… | top users | synonyms

0
votes
0answers
13 views

lean-and-mean CORBA mock server

We're planning to create a CORBA client on several platforms. For integration testing, it would be useful to be able to have a CORBA service to mock the 'real' thing. I'm currently looking into what ...
-3
votes
0answers
21 views

Send data from CORBA server to connected clients [closed]

I am trying to create a worksheet for smart phones using the CORBA middleware and I want to know how a corba server can send data to clients connected to the server when it receives data from another ...
0
votes
0answers
25 views

Naming rebind execution time

I have a question regarding naming rebind operation execution time. In my test I do the following to initialize context: Properties props = new Properties(); ...
0
votes
0answers
15 views

omniORB how to using omniEvents

I'm working with omniORB recently to implement a bank manager, and when I want to use the omniEvents to do something about the untyped push model with the event service of omniORB, I found that it ...
0
votes
1answer
27 views

Local JacORB call: org.omg.CORBA.OBJECT_NOT_EXIST

We use JacORB 2.3.0 with Java 6 and JBoss 5.1.0 in a legacy project. The CORBA infrastructure and the old versions of the ORB, Java and JBoss are given and not a subject of change. After a migration ...
0
votes
1answer
18 views

Changes in Orbix Idl compiler flags from 3.3 to 6.3

I am quite new to the IDL compiler and am trying to port a decade old code from 3.3 to 6.3 (C++) and I see that the old compiler flags like -A -B -N are no longer valid in the new compiler. Can some ...
-1
votes
1answer
53 views

CORBA programming - Making a Sensor

I have a few problems trying to create a flood sensor device in CORBA. The first part which is to create a a Flood Sensor stand-alone water level monitoring device which is to be prototyped as a CORBA ...
0
votes
0answers
36 views

How do I get the IP address of my Corba client from the sever

I have a c++ client publishing Corba messages to a c# server via omniOrb. I have registered a PortableInterceptor with the Orb at the server end and can intercept messages. In debug I get a ...
0
votes
1answer
50 views

error with array and object in IDL corba

I got a problem with array and object in IDL corba This is my code: interface ISinhVien { SinhVien[] DocFile(in String filename); void GhiFile(in SinhVien[] sv,in String filename); }; ...
0
votes
2answers
26 views

Corba - are server-side methods possible?

Is it possible to have methods that access and change variables on the server-side of a corba object? If so, how does one do it?
0
votes
0answers
18 views

Deploy Corba objects in Glassfish Server

I am working a corba to glassfish server migration. How do i deploy the corba objects to the Glassfish server, so the client application can look them up
0
votes
1answer
33 views

Issue creating many server's from one class Corba

For a uni assignment, we have to create a way of managing flood sensors and alerting once if the water level becomes to high. So my idea was to create a LMS (Local Monitoring Station) which would hold ...
1
vote
1answer
22 views

OMNIORB: uses Vmnet8 ip in IOR which is not reachable outside the server

I have installed a CORBA server on a machine that also runs VMWare-Player. The VMWare player creates two virtual Network connections. The VMnet8 connection is used for VM network NAT mode. ...
0
votes
1answer
39 views

Legacy RMI call from a Spring Application

we have a service running in another server and can be accessed using legacy rmi calls (Corba). This server has nothing to do with Spring and lives in another place and we dont have any influence on ...
1
vote
1answer
54 views

translating from corba to slice

I'm trying to translate corba .idl file into ZeroC ICE .ice file. They are very similar, although I have problem with lines: interface Item { readonly attribute string name; void ...
1
vote
1answer
51 views

Pass DII out-argument in Java CORBA

I have the following IDL interface: interface ItemA : Item { void actionA(in float a, out long b); }; In my Java implementation I'd like to invoke the operation actionA dynamically (using ...
0
votes
0answers
46 views

CORBA Configuration in JBoss 7.1.1, Unable to get NameService

I'm trying to setup a CORBA enabled application on JBoss 7.1.1 Final. It seems that I'm missing something because everything I try results in another exception. So, what I tried: standalone -c ...
1
vote
1answer
31 views

How to specify enum field values in CORBA

I want to write one enum in an idl file as - module Media { enum eSpeed { int speed1 = 2000, int speed2 = 4000, int speed3 = 8000 }; }; but CORBA doesn't allow any value assignment in ...
0
votes
1answer
45 views

CORBA IDL Hashmap

Is there such a way to write CORBA IDL to generate stubs for a Hashmap for storing the following for example? public static final Map<Date, Integer> map = new HashMap<Date, Integer>();
0
votes
0answers
50 views

Broken usage of portable interceptors for local objects in JacORB 3.x?

The implementation how portable interceptors are used for local objects has changed in JacORB 3, as stated in the release notes: "Implemented portable interceptors correctly for local objects." It ...
0
votes
1answer
38 views

CORBA: Server as a Client

I have been looking around and can't find an example of a CORBA server implemented as a Client as well. I understand you can have a Client Connecting to a Server to Call methods but is there a way to ...
0
votes
0answers
27 views

Suitable architecture for event driven, multitasking machine control

I am looking for a technology that I can use in an embedded system for event communication. I am limited to a basic RTOS and, say, a 100MHz processor. I would like to be able to extend messaging ...
0
votes
1answer
25 views

Corba Trading Service inspecting tool

Is there any tool for viewing registered types in CORBA Trading Service, and maybe, for making some simple queries for objects? I am using TAO, if it matters.
0
votes
1answer
63 views

Start Naming service with Eclipse for CORBA IDL in java

I am learning CORBA IDL and I am developing a Java Based Distributed System using Eclipse and ORB Studio. My questions is, Is there a way to start a naming service with Eclipse other than having to ...
0
votes
0answers
28 views

Is CORBA state-of-the-art for hard-fast real-time applications? [closed]

If not, what is the leading RPC architecture in this domain?
0
votes
1answer
33 views

Does corba allow a client to include it's own server stub

I am working on an application in which the clients send RPCs to server and also the server will be requesting services from the clients. My question is can the server have multiple client stubs and ...
0
votes
1answer
94 views

Set Corba timeout in Glassfish

Calling from a jar client to code allocated in an EJB, after 30 minutes executing code inside the EJB, I receive a timeout: com.sun.corba.ee.impl.transport.CorbaResponseWaitingRoomImpl ...
0
votes
0answers
92 views

Too Many open files error, on CORBA call, Websphere, Linux

We are having an application in which thread continiously makes a CORBA call to get an corba object. Now if the other system is down the thread keeps calling and we get the exception that Corba sys is ...
0
votes
0answers
48 views

Memory leaks and the IDL to C++ mapping [closed]

In CORBA programming under the IDL to C++ mapping, assume I have a class A and A_var. Consider this code on the server side as part of some CORBA interface class: A_ptr SomeInterface::getA() { ...
-1
votes
1answer
69 views

How to send one sequence in CORBA events and receive?

In my corba idl file I have struct tMetadataEntry { eMetadataType eMetaData_wu; /**< enum metadata */ MWabCommon::MWabString custom_type_wu; /**< custom metadata types ...
0
votes
0answers
27 views

EJB-calls to GF wraps enums in javax.rmi.CORBA.EnumDesc

I am working on a client-server application using EJB for communication between the client and the server. Now I am updating from glassfish 3.0.1 to glassfish 3.1.2.2, so I wanted to change the ...
0
votes
1answer
44 views

CORBA differentiate servant behavior on the ip of server (incomming request)

I would like to create CORBA server application with 1 or many servants (for example HelloWorld). Server will be run on machine with many ipaddresses. For example I got only 1 method in the object ...
1
vote
2answers
111 views

Differen between CORBA and RMI

I know clearly the difference between CORBA and RMI except a problem about existence of in, out, inout. CORBA uses IDL language to describe interface and the parameters in the methods defined have ...
3
votes
2answers
695 views

Returning an entity via remote EJB results in - java.lang.NullPointerException at com.sun.corba.ee.impl.orbutil.ClassInfoCache$ClassInfo.<init>

I'm trying to create an enterprise web application in the following environment. NetBeans 7.2.1 Glassfish Server 3.1.2 (containing the Servlet 3.0 API) EJB 3.1 JPA 2.0 JSF 2.1 jdk 1.7 Oracle 10g I ...
1
vote
1answer
125 views

IPC using CORBA with C++ and Java

I am decided to use CORBA to communicate between a C++ service and a java service. I want to know that is it possible using CORBA to inter call C++ library and java library like we call a dll in an ...
1
vote
1answer
111 views

How to implement CORBA client behind NAT

I have following interfaces. interface Server { void subscribe(in Client client); }; interface Client { void ping(); void pong(); }; On initialization, client will connect to server and ...
0
votes
0answers
52 views

Glassfish Bean Validation weird error

I am using bean validation in my application. When there is no constraint validation errors everything works nicely. Every time there is a validation error, Glassfish throws the following exception: ...
0
votes
1answer
112 views

Corba COS Naming service list all nodes

I have a name list consisting of 4 contexts. Context 1,2 and 3 are binded to the root node, and context 4 is binded to context 2. I am able to list the name of context 1-3 but I cant get context 4. ...
0
votes
1answer
183 views

InvalidName exception in jacorb

I am using Jacorb for corba implementation. I have started the NS on port 900. When I am trying to start the server I am getting following exception D:\eclipse_workspace\WorkSpace\corba\bin>jaco ...
0
votes
1answer
68 views

Using Corba string_dup versus using pointer to const

There is something I don't get, please enlighten me. Is there a difference between the following (client side code)? 1) blah = (const char *)"dummy"; 2) blah = CORBA::string_dup("dummy"); ... just ...
0
votes
1answer
48 views

does CORBA support ASCII data exchange?

I know that CORBA exchanges data using IDL, which supports binary format. Could someone please explain if it is possible to exchange data in ASCII ? THinking you in advance for reply
-4
votes
1answer
180 views

How to develop corba android client? [closed]

How can I make a client for Android which calls a distanct method on a server Corba?
2
votes
0answers
222 views

IIOP Protocol Manager failure Glassfish 3.1.2

During startup of Glassfish I get the following failure. I do have the vbjorb.jar on the domain's classpath where the org.omg.CORBA.InterfaceDef resides. ...
0
votes
1answer
376 views

RMI needs java.rmi.server.hostname for NAT, so what's the way other technology like CORBA to resolve NAT issue?

In Java, if client needs to open connection to RMI server, we need to specify -Djava.rmi.server.hostname=hostxxx to server's startup parameter, and add hosts entry to client's hosts file like below: ...
1
vote
0answers
88 views

java.lang.VerifyError in stand-alone thin client websphere 7 application

Properties properties = new Properties(); properties.put(Context.INITIAL_CONTEXT_FACTORY, "com.ibm.websphere.naming.WsnInitialContextFactory"); properties.put(Context.PROVIDER_URL, url); ...
0
votes
0answers
58 views

how to compile mico corba in windows xp?

i have a Project sevrer corba with java,and a client corba c++ for the corba implementation i need compile mico corba in windows xp with visual studio then can anyone describe me how i can compile and ...
1
vote
1answer
111 views

Problems with starting C++ CORBA Server on Ubuntu, CORBA::SystemException

I'm trying to run an example of CORBA in C++ on Ubuntu 12.04: http://www.yolinux.com/TUTORIALS/CORBA.html and I still have an error when I'm trying to run: $ ./Server ...
0
votes
1answer
103 views

Exception trying to connect a websphere server

I have a eclipse plugin that connects to the WAS via RMI ... When I am running the plugin in eclipse, works fine ... but when I try to run on ...
1
vote
1answer
250 views

CORBA :: Get the client ORB address and port with use of IIOP

I have application in CORBA using IIOP protocol, i am using the Java IDL component of the JDK 6 , another ORB implementation. Implementation of both client and server in Java language. Is there any ...
0
votes
0answers
94 views

CORBA code explanation [closed]

I have the following code, which is mapped with IDL. I wrote it personally. I know how to create CORBA client-server system, the sequence of the functions needed to be used. I've also read the ...

1 2 3 4 5 8