-
If I create my own application and have the compiled java file in the "application" folder of my scenario, how should I call it from my mapping file? In my application, vehicles should be sending V2X messages, but in the visualizer, none of the vehicles ever turn green or red, so I assume that my application is not linking properly to the prototype. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
As stated in the documentation, you need to use the full qualified name of the application, that is: |
Beta Was this translation helpful? Give feedback.
As stated in the documentation, you need to use the full qualified name of the application, that is:
name.of.the.package.ClassName
. If your application is not inside a Java package, you can just use the name of the class. If your class could not be loaded, there would be an error and the simulation would not succeed.