Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When my application does EJB lookup using remote interface, I get following exception. It was working fine and in recently build something has changed which broke it.


java.rmi.MarshalException: CORBA MARSHAL 1398079745 Maybe; nested exception is:
        org.omg.CORBA.MARSHAL:   vmcid: SUN  minor code: 257 completed: Maybe
        at com.sun.corba.ee.impl.javax.rmi.CORBA.Util.mapSystemException(Util.java:279)
        at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.privateInvoke(StubInvocationHandlerImpl.java:205)
        at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.invoke(StubInvocationHandlerImpl.java:152)
        at com.sun.corba.ee.impl.presentation.rmi.bcel.BCELStubBase.invoke(BCELStubBase.java:225)

share|improve this question
If you want, see stackoverflow.com/questions/1473939/… – Arthur Ronald F D Garcia Oct 1 '09 at 22:10

2 Answers

up vote 2 down vote accepted

Most likely this is a version discrepancy between the client and the server. For example, you recompiled the client code and the shared classes for the client, but they differ from the same classes on the server.

share|improve this answer
Exactly. This was the problem. We got friendly which was latest version. I am accepting your answer. – rjoshi Oct 2 '09 at 2:26

According to this article, MARSHAL/SUN/257 means "could not find class". Apparently, this happens when it reads a value type from a CORBA message and can't find an implementation class.

share|improve this answer
Yes, it was different version of class. – rjoshi Oct 2 '09 at 2:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.