RTI Web Integration Service Version 7.5.0
RTI Web Integration Library API

RTI Web Integration Service can be deployed as a native library linked into your application in select architectures. More...

Data Structures

class  rti::webdds::Service
 The RTI Web Integration Service. More...
 
class  rti::webdds::ServiceProperty
 Configuration properties for a RTI Web Integration Service object. More...
 

Detailed Description

RTI Web Integration Service can be deployed as a native library linked into your application in select architectures.

This API allows you to create, configure and start RTI Web Integration Service instances from your application.

The following code shows the typical use of the API:

int main ()
{
.cfg_file("MyWebint.xml")
.cfg_name("MyWebint"));
...
service.start();
while(keep_running) {
sleep();
...
}
return 0;
}
Configuration properties for a RTI Web Integration Service object.
Definition: ServiceProperty.hpp:33
The RTI Web Integration Service.
Definition: Service.hpp:83

Instead of a file, you can use XML strings to configure RTI Web Integration Service. See ServiceProperty for more information.

To build your application you need to link with the RTI Web Integration Service native library in <RTI Connext home>/bin/<architecture>/ .

Development Requirements

Unix-based Systems Windows Systems
Shared Libraries librtiwebintegrationservice.so rtiwebintegrationservice.dll
libnddscpp.so nddscpp.dll
libnddsc.so nddsc.dll
libnddscore.so nddscore.dll
librtiapputilsc.so rtiapputilsc.dll
librtisqlite.so rtisqlite.dll
libcivetweb-cpp.so.1.15.0 civetweb-cpp.dll
libcivetweb.so.1.15.0 civetweb.dll
Headers rti/webdds/Service.hpp rti/webdds/Service.hpp