Hello,
We are using two RFA consumers with the following rfa libs:
<dependency>
<groupId>com.reuters</groupId>
<artifactId>rfa</artifactId>
<version>8.0.0.L2</version>
</dependency>
<dependency>
<groupId>com.reuters</groupId>
<artifactId>rfa-rdm-ext</artifactId>
<version>8.0.0.L2</version>
</dependency>
After the Infrastructure migration to TREP3 this saturday we started receiving this message on our consumers randomly:
DataStatus: CLOSED; Message: Request Rejected: Request message payload not supported on non-private streams.
For a single item one consumer receives a closed state whereas the other consumer recevies an open state.
we checked with our local infra and they told us it is a client side bug and they advised us to migrate our rfa libs
so we tested with this new conf:
<dependency>
<groupId>com.reuters</groupId>
<artifactId>rfa</artifactId>
<version>8.1.0.L1</version>
</dependency>
<dependency>
<groupId>com.reuters</groupId>
<artifactId>rfa-rdm-ext</artifactId>
<version>8.0.0.L2</version>
</dependency>
Notice the difference between the rfa and rfa-rdm-ext lib. Is this a good setup? (we couldnt find the 8.1.0.L1 for rdm). More importantly we still have the issue and migrating only to 8.1.0.L1 did not resolve the issue.
Please advise.
Cedric