java.rmi.MarshalException

前端 未结 2 481
太阳男子
太阳男子 2021-01-28 22:09

whenever I try to call my ejb from a client, I get this error :

  java.rmi.MarshalException: Failed to communicate. 

    Problem during     marshalling/unmarsha         


        
相关标签:
2条回答
  • 2021-01-28 22:26

    The local class and the remote class are differente versions. During the unmarshalling process the receiver does not support the protocol version of the sender. Make sure the compiled class on the server is the same version of the compiled class on the client, so can be serialized/deserialized without problems. I suggest you rebuilding from zero all the project and redeploying them, and regenerate the stubs.

    0 讨论(0)
  • 2021-01-28 22:39

    Looks like your server has a different version of the object that your client. Make sure they are both using the same code for the com.afrikbrain.util.message.MessageInfo object.

    0 讨论(0)
提交回复
热议问题