Hi,
one more problem with routing service:
We're using partion QoS to separate the data. But when using routing service this QoS is not passed through. On the sender side I see that the routing service has no partition string set (which is fine because it should route all data to the client) and on the client side there's also no partition string.
How can I route all data with the correct partition QoS set? Do I need a routing service per partition? If so - how looks the configuration like?
Thx,
Christian
Hi Christian,
In Routing Service the partitions are configured at the Session level. In a session, you can configure the publisher and subscriber QoS. Hence, all the TopicRoutes beloning to that session will use such partition QoS. That is, TopicRoute's input is created with the partition in SubscriberQos, and TopicRoute's output is created with the partition in PublisherQos.
In addition, you can configure as many Sessions as you need within a DomainRoute.
-Antonio
Thx, this did the trick.