How to resolve Error org.omg.CORBA.BAD_OPERATION exception in java ?

4.7k Views Asked by At

When I invoke method on client side, for distributed reference object, I have this message error:

Exception in thread "main" org.omg.CORBA.BAD_OPERATION:
        at org.omg.CORBA.portable.ObjectImpl._get_delegate(ObjectImpl.java:18)
        at org.omg.CORBA.portable.ObjectImpl._is_local(ObjectImpl.java:130)
        at fr.esiag.commun._ManageDemandStub.createDemand(_ManageDemandStub.java
:28)
        at fr.esiag.commun.resource.MyInvocationHandler.invoke(MyInvocationHandl
er.java:29)
        at com.sun.proxy.$Proxy0.createDemand(Unknown Source)
        at org.TD.TransactionDriver.main(TransactionDriver.java:55)

Can someone tell me what that means ?

1

There are 1 best solutions below

0
On

BAD_OPERATION expception happens when you try to call a method that dosen't exist in the servant. I think you cast (instead of narrow) the remote object wrong. Maybe it's is relative to your previous question