We have a Java client that uses corba to call several third-party systems. These are different systems that implement the same set of interfaces. We were provided with libraries (jar files) for using these interfaces. For example, one object from these libraries
this.that.GeneralException
Now we need to connect to another external system, but they changed the name by introducing several more levels of packages, for example:
org.example.this.that.GeneralException
I assumed that the classes above would be recognized as completely different. So I made a copy of the old client, switched to the new library and changed the links to match the new name game. Having no test environment for the new system, I connected this client to one of the old systems. And, apparently, it worked very well.
Is this something related to corba or what I'm missing here?
EDIT
Just received a note from one of the third-party developers. Actually, this is in no way associated with corba. Instead, they try to maintain backward compatibility for their system. Therefore, they compared the new naming scheme with the old one and now offer an interface under both names simultaneously.
TPete source share