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
1 answer

What is the full protocol hierarchy when using Glassfish with IIOP

The setup is Glassfish 2.1.1 and a Java standalone client. Connection is via IIOP. Our client produces an enormous amount of traffic on the wire and I'm trying to find out where this comes from. From my understanding the protocol hierarchy should…
bbuser
  • 918
  • 11
  • 33
1
vote
1 answer

Corba communication between different languages

How is the CORBA IDL used to support communication between objects that have been implemented in different languages?
Raju Kumar
  • 1,255
  • 3
  • 21
  • 39
0
votes
2 answers

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 installed on X1 cell, which has EJB client component,…
Viral Patel
  • 8,506
  • 3
  • 32
  • 29
0
votes
0 answers

Can we add jars to sun.boot.class.path in JDK 8?

Trying to compile the EJB project which uses EJSContainer class in IBMWasruntime.jar Getting the below error due to ibm related jars(ibmorb.jar) not available in sun.boot.class.path cannot access com.ibm.CORBA.iiop.ObjectResolver class file for…
0
votes
1 answer

Weblogic Corba Remote API ACCESS "datatype java.lang.String and java.lang.Character printing 0X00"

We are having a REST API inside weblogic that internally connects to Corba Server. API response object comes with '0X00' in Datatypes java.lang.String and java.lang.String.Character. Remaining all datatypes are fine with correct data. This is…
Rakesh
  • 658
  • 6
  • 15
0
votes
2 answers

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 also here:…
Petter
  • 4,053
  • 27
  • 33
0
votes
1 answer

How to specify the network interface when using Naming Service lookup using Oracle Java ORB

So I'm currently hosting a service which utilizes Oracle's Interoperable Naming Service (INS) according to tutorial listed below. This service deploys a servant on one machine and registers it with the INS, we'll call this machine A. Properties…
0
votes
2 answers

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 UserInterface extends Remote { public void…
Leonti
  • 10,400
  • 11
  • 43
  • 68
0
votes
1 answer

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 this error about the CodeSet not being specified. I…
BlueMonkMN
  • 25,079
  • 9
  • 80
  • 146
0
votes
1 answer

org.omg.CORBA.TRANSIENT: initial and forwarded IOR inaccessible vmcid: IBM minor code: E07 from IIB application

I am working on IIB 10.There is a soap application in which an iiop URL is called using java compute node.I am getting the following error"org.omg.CORBA.TRANSIENT: initial and forwarded IOR inaccessible vmcid: IBM minor code: E07 completed: No"
0
votes
0 answers

javax.naming.ConfigurationException: Problem with PortableRemoteObject.toStub(); object not exported or stub not found

I am writing a Iiop server and I encountered the following error when I try to run it: Exception in thread "main" javax.naming.ConfigurationException: Problem with PortableRemoteObject.toStub(); object not exported or stub not found [Root exception…
Artyomska
  • 1,309
  • 5
  • 26
  • 53
0
votes
2 answers

how can I get all the mbeans about weblogic?

When I use jconsole to access weblogic's mbean,I just can get some info about jvm like 'java.lang'.But what I want to get is about 'jdbc','jta','ejb','servlet'... I wonder if I can get these indicators through…
trgbishi
  • 55
  • 1
  • 2
  • 10
0
votes
1 answer

Wireshark Corba stub decompiling

I am trying to find a way to decompile a omniorb CORBA stub that I found through wireshark. The technology seems old as I can not find any new deep documentation whatsoever. Here is the data of the request: Key Addres: .omniINSPOA.FMPOA.FMRPO Stub…
Coronon
  • 327
  • 5
  • 13
0
votes
1 answer

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 of them conform to 3gpp standards. In the 3gpp…
Saad Khakwani
  • 43
  • 1
  • 5
0
votes
1 answer

Why is my application client reporting a StreamCorruptedException when updating a JPA entity on a GlassFish 4.1.2 application?

I have a application client that performs the following actions using my application running on GlassFish 4.1.2: Creates a new person JPA entity. Calls a create method on server an passes new person. Note: Server creates a person and person2…
Reed Elliott
  • 223
  • 2
  • 15