Receiving CAM message with userTaggedValue but an exception ClassNotFoundException observed in the log #164
-
I am trying to understand how V2X communication happens here. Reading through
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi, the problem seems to be, that the application simulator uses a custom classloader to load applications from the jar-files of the scenario. However, during deserialization of the custom byte array the default classloader is used, which does not know the scenario-specific jar files. This is general problem we need to solve. You can workaround this problem by copying the jar files (e.g. |
Beta Was this translation helpful? Give feedback.
Hi, the problem seems to be, that the application simulator uses a custom classloader to load applications from the jar-files of the scenario. However, during deserialization of the custom byte array the default classloader is used, which does not know the scenario-specific jar files. This is general problem we need to solve.
You can workaround this problem by copying the jar files (e.g.
example-applications-21.1.jar
) from the application directory of your scenario to thelib/mosaic
directory of your MOSAIC installation.