Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

java

corba

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 search for. Thanks to anyone who can at least point me in the right direction with available resources.

like image 781
Thomas Owens Avatar asked Jul 06 '09 13:07

Thomas Owens


1 Answers

An IOR file is a file which contains an Interoperable Object Reference which is a kind of a locator string. The IOR file itself contains the IOR. The IOR is an CDR encoded string which, depended on the CORBA version, contains various information regarding the servant who created this string. But basically it works as a locator string.

Inside the IOR normally an IP, portnumber and object reference of the servant could be found.

In a simple hello world example the servant (server) will create this file. The client reads this file and the client ORB (Object Request Broker) will delegate the call from the client to the servant transparently.

All about CORBA: OMG CORBA Website or just visit Wikipedia

like image 52
tuergeist Avatar answered Oct 12 '22 10:10

tuergeist