Batching with Encryption

3 posts / 0 new
Last post
Offline
Last seen: 5 years 6 months ago
Joined: 09/27/2018
Posts: 2
Batching with Encryption

I need to do batching with encryption but it looks like I can't use multiple base names in my qos_profile:

        <qos_profile name="batch_profile" base_name="BuiltinQosLib::Generic.Security">
        <qos_profile name="batch_profile" base_name="BuiltinQosLibExp::Generic.StrictReliable">

Is there a way to do this perhaps outside of the QOS file?

Thanks

Offline
Last seen: 5 years 6 months ago
Joined: 06/16/2015
Posts: 3

This should work:


    <qos_profile name="batch_profile" base_name="BuiltinQosLibExp::Generic.StrictReliable">
        <participant_qos base_name="BuiltinQosLib::Generic.Security"/>
    </qos_profile>

-- Geoff

Offline
Last seen: 5 years 6 months ago
Joined: 09/27/2018
Posts: 2

Excellent!

It's working.

Thank you!