Questions tagged [iiop]

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

IIOP is a high-level communication protocol used by Orb (Object Request Broker) which makes platform independence. It is a binary protocol that can use both big and little endian and is efficient in transferring both simple data (like arrays) and complex structures (these must be pre-defined in IDL). Apart data transfer, IIOP supports that is required for RPC.

CORBA is not the only that uses IIOP. Java RMI-IIOP is an implementation of RMI-like functionality on the top of CORBA.

79 questions
1
vote
0 answers

How to lookup EJB deployed on Wildfly 11 using IIOP/CORBA?

I want to lookup EJB deplpoyed on Wildfly server using IIOP/CORBA. On Payara Server I am able to do this using below configuration: Payara JNDI lookup Properties jndiProperties = new…
1
vote
1 answer

Using Python or Other Scripting 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 thing?
Benny
  • 3,899
  • 8
  • 46
  • 81
1
vote
1 answer

Understand GIOP network packet

Question I want to understand a GIOP (CORBA) packet in detail, but I am struggling with ServiceContextList part. Especially I don't know which length one ServiceContext does have. Example I created a IDL file as following: module AdditionApp { …
rage
  • 69
  • 9
1
vote
0 answers

Spring RMI-IIOP(CORBA) with spring-aop

I am trying to implement rmi-iiop using spring. I searched a lot but didn't find any latest example of it. So I started with Exposing Corba Services section in this book. Even though it is written based on older spring version, it seems to…
1
vote
0 answers

How to enable secure Corba/IIOP communication with Sun ORB or ORBD?

I am creating a new CORBA client and registering this to the Persistent Naming Service which was started using Sun ORB or ORBD. I want to use secure IIOP communication for my application and I am able to set the security properties while starting my…
Vinayak
  • 11
  • 3
1
vote
1 answer

rmi iiop over the internet

I am trying to get the Oracle RMI-IIOP example to work, but I'm having problems doing this in Netbeans. My Code is as follows : The Interface import java.rmi.Remote; import java.rmi.RemoteException; public interface HelloInterface extends Remote…
Tony Bock
  • 21
  • 3
1
vote
3 answers

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 exception, the caller does not receive the message of…
Michael Borgwardt
  • 342,105
  • 78
  • 482
  • 720
1
vote
1 answer

Getting errors while converting a string back to CORBA object reference

This is my server class : import java.io.FileNotFoundException; import java.io.PrintWriter; import org.omg.CORBA.ORB; import org.omg.CORBA.ORBPackage.InvalidName; import org.omg.PortableServer.POA; import org.omg.PortableServer.POAHelper; import…
Aayush
  • 1,244
  • 5
  • 19
  • 48
1
vote
0 answers

CORBA via IIOP: Calling methods accepting enums

I am trying to access the interface LicenseServerFactory described in the follwing IDL: typedef sequence usBuffer; enum LicenseClientUTFType {LIC_UTF16 , LIC_UTF32}; exception NotAuthenticated {}; exception UserNotConnected {}; interface…
Anton Shepelev
  • 922
  • 9
  • 19
1
vote
1 answer

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 system where a nameservice running the ACE/TAO CORBA…
David Gladfelter
  • 4,175
  • 2
  • 25
  • 25
1
vote
0 answers

Embedded GlassFish inside Grails

I'm using Grails 2.2.3 together with the Grails GlassFish plugin: http://grails.org/plugin/glassfish So far, everything works as expected (run-app), except integration testing that in my understanding should startup/tear down a GlassFish instance as…
naggy
  • 11
  • 2
1
vote
1 answer

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 ServerRequestInfo message in the intercept and In debug…
1
vote
1 answer

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. Accidentially my Corba server picks this network connection…
Totonga
  • 4,236
  • 2
  • 25
  • 31
1
vote
1 answer

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 map = new HashMap();
MSRahman
  • 79
  • 2
  • 13
1
vote
2 answers

How to diagnose JBoss IIOP Stub generation, class loading issue?

I am migrating a ten years-old EJB2 application running on JBoss 6.1 from JNP protocol to CORBA RMI/IIOP because I want to use ORB PortableInterceptor. First JBoss complains with org.jboss.iiop.rmi.RMIIIOPViolationException I have now fixed. Now…
Yves Martin
  • 10,217
  • 2
  • 38
  • 77