Tagged Questions

Internet Inter-ORB Protocol (IIOP) defines a protocol for CORBA invocation over the TCP/IP (transport layer). It is a specialization of General Inter-ORB Protocol (GIOP).

learn more… | top users | synonyms

4
votes
1answer
430 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 ...
2
votes
1answer
103 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
2answers
368 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
1answer
900 views

InitialContext.lookup of remote EJB fails after remote server restart

We have a setup in which EJB A is running on server A, and another EJB B is running on server B. EJB A connects to EJB B via IIOP. This setup normally works, but if server B is restarted, EJB A will ...
1
vote
0answers
57 views

Move to Glassfish-2.x clustered causes connections to timeout after 1hr

We recently moved from Glassfish-2.x not clustered to a Glassfish-2.x clustered environment. Part of the move included using RMI over IIOP instead of connecting to a static server. Everything works ...
1
vote
0answers
125 views

Custom main loop in C# Remoting

I'm using IIOP.NET to communicate with C++ in C#. Currently C++ calls can happen anytime, since C# Remoting Framework uses its own thread. I don't want that. Some other middleware gives me a ...
1
vote
1answer
137 views

Unicast Vs Portable Remote Object

What is the basic difference between java.rmi.server.UnicastRemoteObject and java.rmi.PortableRemoteObject. I know that one is used for JRMP and the other for IIOP,but can anyone explain it in a lay ...
1
vote
1answer
95 views

Using Python or Other Scipting Language With IIOP

I have a java version of an IIOP client but I am having all sorts of issues with connectivity. I would like to build the client in python but haven't found anything that would let me. Is there such a ...
1
vote
3answers
288 views

exception message getting lost in IIOP between glassfish domains

I'm running two glassfish v2 domains containing stateless session EJBs. In a few cases, an EJB in one domain has to call one in the other. My problem is that when the called EJB aborts with an ...
0
votes
2answers
28 views

Websphere 6.1: Issue in Multiple Cells Call using IIOP

Need some help with below issue We have 2 machines, each of these machines has 2 websphere cells installed in it. Machine 1 (X1 and X2 cell) Machine 2 (Y1 and Y2 cell) We have web application ...
0
votes
0answers
35 views

How to enable bidirectional communication in Glassfish wit IIOP?

I'm porting an application from Weblogic 8 to Glassfish 2.1. The clients often have multiple network interfaces, some with link local adresses and they sometimes bind to wrong interface. With ...
0
votes
0answers
30 views

Singleton Bean and remote observers receiving notifications

I'm trying to port a standalone Java application that supports RMI remote observers, that can register to the server and receive notifications to events. The classes involved look like: // the ...
0
votes
2answers
254 views

Receiving JMS messages from remote GlassFish server

I'm trying to receive JMS messages from a GlassFish (2.1) server remotely. I have followed the instructions here: http://www.tidytutorials.com/2009/06/jms-example-using-glassfish-and-remote.html and ...
0
votes
2answers
74 views

RMI IIOP client object as callback

I'm trying to build rmi-iiop application (very simple chat). I need server to be able to communicate with client so my thinking was to create interface of connected user: public interface ...
0
votes
1answer
98 views

How to specify a CodeSet for WChar string from a CORBA client

This question is related to another question with which I have been struggling: How to access CORBA interface without IDL or late-bound invoke remoting methods I'm really stumped on how to get past ...
0
votes
1answer
29 views

Where can I find a specification for Hypertext Inter-ORB Protocol (HTIOP)?

According to wikipedia, HTIOP is an implementation of IIOP over HTTP. IIOP being an specific instance of CORBA's GIOP (general inter-ORB protocol) over TCP/IP. However, I cannot find a ...
0
votes
1answer
87 views

nonstandard namespace in corba idl

I'm using IIOP.NET to connect to corba servers. The servers are enterprise level machines and deployed by world renowned vendors, so they all implement standard corba IDL files. More specifically, all ...
0
votes
1answer
480 views

How to Re-order the network interfaces returned by WSAIoctl with SIO_GET_INTERFACE_LIST control code

Is there a way to dictate the order of the network interfaces returned by the Win32 WinSock WSAIoctl function's SIO_GET_INTERFACE_LIST functionality? Background: We've got a heterogeneous CORBA ...