Question:
I can compile my distributed application without error,
but at runtime I get a "no such method error" on org.omg.CORBA.orb.BOA_Init()
Answer:
this error can be remedied by using an explicit cast on the orb, for example:
org.omg.CORBA.BOA boa = ((com.visigenic.vbroker.orb.ORB)orb).BOA_init();