How to run DynamicHelloWorldExample and RequestReplyExample ? No feedback #4908
-
I'm trying to run all Fast-DDS examples locally on my Ubuntu 22.04 machine and so far most of them work and give feedback if a message was send or received. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @knorr02, thanks for using Fast DDS. So, to continue with the discussion, it is highly recommended to use the latest version v2.14.1 On the one hand, the DynamicHelloWorldExample loads a type from the XML file On the other hand, the RequestReplyExample illustrates how to achieve a Client/Server communication between two applications using the Fast DDS request-reply mechanism. More information in Fast DDS documentation |
Beta Was this translation helpful? Give feedback.
Hi @knorr02, thanks for using Fast DDS.
As you can see in the master README, there are API breaks and master is unstable in some terms until the release of the following Fast DDS version v3.0.0.
One of the biggest features that is introduced in v3.0.0 is a complete refactor of Dynamic types.
The examples are being refactored too, so their README, code, and outputs are being improved for the next v3.0.0 release. Mind that the DynamicHelloWorldExample may not work as expected until both Dynamic types and examples refactors are finished.
So, to continue with the discussion, it is highly recommended to use the latest version v2.14.1
On the one hand, the DynamicHelloWorldExample loads a type f…