With the following JAVA code (dds 7.1) the topic is created successfully, however topic2, the result of 'find_topic()' is always null.
Topic topic = my_participant.create_topic(topic_name,
type_name,
DomainParticipant.TOPIC_QOS_DEFAULT,
null,
StatusKind.STATUS_MASK_NONE);
}
Topic topic2 = my_participant.find_topic( topic_name, null);