Skip to content

Commit 2dad443

Browse files
Fix Routing Service file adapter examples
1 parent 3d54f8a commit 2dad443

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/routing_service/file_adapter/c++11/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ appropriate value of ```SHAPE_TOPIC``` before starting Routing Service.
9797
To run Routing Service, you will need first to set up your environment as follows.
9898

9999
Before running the RTI Routing Service, you need to specify where the
100-
`fileadapter` library is located as shown below:
100+
`FileAdapterC++11` library is located as shown below:
101101

102102
```bash
103-
$export RTI_LD_LIBRARY_PATH=<Connext DDS Directory>/lib/<Connext DDS Architecture>:<Path to fileadapter library>
103+
$export RTI_LD_LIBRARY_PATH=<Connext DDS Directory>/lib/<Connext DDS Architecture>:<Path to FileAdapterC++11 library>
104104
```
105105

106106
```bash

examples/routing_service/file_adapter/c++11/RsFileAdapter.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<adapter_plugin name="FileAdapter">
1111
<!--
1212
By specifing this value, RTI Router will search for
13-
libfileadapter.so in Unix systems, fileadapter.dll on
14-
Windows systems and libfileadapter.dylib on Mac OS.
13+
libFileAdapterC++11.so in Unix systems, FileAdapterC++11.dll on
14+
Windows systems and libFileAdapterC++11.dylib on Mac OS.
1515
RTI Routing Service will attempt to load this library from:
1616
- Working directory or plugin_search_path
1717
- Executable directory

examples/routing_service/file_adapter/c/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ $export NDDSHOME=<RTI Connext DDS Directory>
7676
```
7777

7878
Before running the RTI Routing Service, you also need to specify where the
79-
`fileadapter` library is located as shown below:
79+
`FileAdapterC` library is located as shown below:
8080

8181
```bash
8282
$export RTI_LD_LIBRARY_PATH=<Path to CMake build folder>

examples/routing_service/file_adapter/c/file_bridge.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<!-- Adapter entry points are defined here -->
1818
<adapter_library name="adapters">
1919
<adapter_plugin name="file">
20-
<dll>fileadapter</dll>
20+
<dll>FileAdapterC</dll>
2121
<create_function>RTI_RoutingServiceFileAdapterPlugin_create</create_function>
2222
</adapter_plugin>
2323
</adapter_library>

0 commit comments

Comments
 (0)