I have written a code for Mobility of an Agent. It works fine with a Wireless (via Router) Link But when I created an Ad-Hoc Wireless Connection with my friend's laptop it failed. This is the error I got: Jan 27, 2012 12:06:37 PM jade.core.mobility.AgentMobilityService$CommandSourceSi nk handleInformMoved SEVERE: Error creating agent on destination container. Abort transfer. An I/O er ror occurred during de-serialization [nested java.io.InvalidClassException: jade .core.Agent$1; local class incompatible: stream classdesc serialVersionUID = -85 03980205419088695, local class serialVersionUID = -6369687405671300436] Since the program worked fine with one network connection, it failed with the same source on a different computer and a different connection.

  1. What does this error mean? De-serilization error if any should have come in the first case as well
  2. Is the type of connection i.e. Ad-Hoc a root of the problem?
  3. OR is it due to the code, which includes File Access commands that is causing the problem (then why did it work in the first case)

Thanks for your help!

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I think the serialized object's serialVersionUID is different from the class on the other JVM. For this give some fixed Long value. If you are using eclipse then add generated serial version ID to every class that implements Serializable. Clean and rebuild the source code. If you are just using command line then do

serialver "AgentClass"

and use the value generated from it and recompile the source code.

link|improve this answer
i can manually change the SerialUID of my computer where I am compiling the Agent Code, how do I change the SerialUID of a say unknown destination host? Is there any java library which allows me to auto-set the serialUID to any value? – Purushottam Jan 31 at 12:51
You have to distribute the same source code to all users. – Ravi Jan 31 at 13:31
then what is the purpose of the mobile agent if i am distributing the code across a distributed platform? is there any other way? – Purushottam Jan 31 at 13:37
Even though the containers may be different on different hosts but you initialize agent objects corresponding to the same agent class right? – Ravi Feb 1 at 1:41
i think there is a communication gap: I will put my question right as it is: I have written a mobile agent code which moves to another PC and executes it over there using doMove(destination). But I am getting this serialversionUID error because serialversionUID's for different PC's are different. Then what option do i have: 1. explicitly change the serialUID from the code itself 2. manually change the serialUID's of all the PC's which is a better option? – Purushottam Feb 1 at 5:08
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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