With the current topic structure for uE-to-uE communication, it is not possible to filter on uEntity instance IDs.
Example:
uEntity 0x5678 version 0x02 on device1 wants to add a listener for requests to its resource 0xA100 originating from any instance of uEntity with type ID 0x1234 on any other device (connected to the same MQTT broker). This would result in topic filter
+/FFFF1234/+/0/device1/5678/2/A100
However, if the uEntity with uE ID 0x00041234 on device2 sends a corresponding request, it would get published on topic
device2/41234/2/0/device1/5678/2/A100
which would not match the topic filter used to register the listener on device1 (because 41234 is not the same as FFFF1234).
With the current topic structure for uE-to-uE communication, it is not possible to filter on uEntity instance IDs.
Example:
uEntity
0x5678version0x02ondevice1wants to add a listener for requests to its resource0xA100originating from any instance of uEntity with type ID0x1234on any other device (connected to the same MQTT broker). This would result in topic filter+/FFFF1234/+/0/device1/5678/2/A100However, if the uEntity with uE ID
0x00041234ondevice2sends a corresponding request, it would get published on topicdevice2/41234/2/0/device1/5678/2/A100which would not match the topic filter used to register the listener on device1 (because
41234is not the same asFFFF1234).