List of All QoS policies, parameters, and values

2 posts / 0 new
Last post
Offline
Last seen: 8 years 1 month ago
Joined: 01/09/2016
Posts: 8
List of All QoS policies, parameters, and values

Hello,

I have found this nice document called Comprehensive Summary of QoS Policies, but I would like to get some help in finding the list of all the actual XML tags that are used in QoS policies.

For example, for History policy, there is the <kind> and <depth> tags. But hadn't I looked at the example files, where can I get this information about specific tag names associated with any policy?

Thanks,

Fernando Garcia's picture
Offline
Last seen: 4 months 3 weeks ago
Joined: 05/18/2011
Posts: 199

Hi Abdulrahman,

RTI Connext DDS provides different XSD schemas that contain all the possible QoS settings that can be defined in its XML files. These schemas are shipped along with the product. If you use RTI Connext DDS 5.2.0, you will the complete list of schemas under /path/to/your/installation/rti_connext_dds-x.y.z/resource/schema/.

You will probably be needing a schema called "rti_dds_profiles.xml", which includes all the possible definitions for QoS, types, and entities. The schemas are also available online (e.g., https://community.rti.com/schema/5.2.0/rti_dds_profiles.xsd) so that you can include them in your XML files even if you do not have the product installed.

If you have an XML editor that supports auto-completion, you can include the appropriate schema using the xsi:noNamespaceSchemaLocation attribute in the <dds> tag:

<dds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:noNamespaceSchemaLocation="https://community.rti.com/schema/5.2.0/rti_dds_profiles.xsd">
...
</dds>

With that information, your editor should be able to provide auto-completion and you should be able to see all the available tags under a certain location in the XML code. This screenshot shows all the possible tags under  <participant_qos> in Eclipse:

Autocompletion of XML files

You will find more information on the specifics of each QoS setting in the different API documentation. Here is a link to the QoS settings for DataWriters as they are described in the C++ API Documentation.

Please, let me know f you have more questions on how to configure your XML editor to enable auto-completion or any other doubt regarding QoS settings.

Thanks,
Fernando.