I have a slice file similar to:
module test {
class Foo {
//
};
class Bar extends Foo {
//
};
class Manager {
void addFoo(Foo* f);
};
};
I am able to call addFoo with either a Foo or Bar but, in the addFoo method, f.getClass() always returns a FooPrxHelper. I looked at the BarPrxHelper.java file and noted that it does not extend FooPrxHelper.
I am running Ice 3.3.1 due to RHEL4 requirement of project. Has this been address is 3.4?

Reply With Quote