Linux/macOS
Ensure that your environment has:
- a C++ compiler (GCC or Clang)
- GNU Make
- Perl
- Optional Java SDK 1.5 or greater for Java JNI binding support
See Building for a complete list of dependencies and supported platforms.
- Download and extract the latest tar.gz file from the download site
- Enter the OpenDDS-<version> directory
./configure
(To enable Java bindings, use./configure --java
)make
See Support if you encounter problems with configuration or building.
source setenv.sh
cd DevGuideExamples/DCPS/Messenger
for C++ example orcd java/tests/messenger
for Java example./run_test.pl
The Messenger Example starts an InfoRepo, publisher, and subscriber. The InfoRepo allows the publisher and subscriber to find each other. Once the publisher finds the subscriber, it sends 10 messages to the subscriber and waits 30 seconds for the subscriber to acknowledge the messages.
Note: The setenv.sh script sets various environment variables needed for running OpenDDS tests. Be sure to source setenv.sh if you start a new terminal session.
See Chapter 2 of the Developer's Guide for a detailed explanation of the Messenger C++ Example or Chapter 10 for the Java Example.