Transport Protocol Change in Fast DDS #4900
AnoopGQuest
started this conversation in
General
Replies: 1 comment
-
Hi @AnoopGQuest, thanks for using Fast DDS. Although this would be the scenario using just Fast DDS... graph LR;
UDP_writer -. / .-> TCP_reader
The eProsima's DDS Router can perform the communication. graph LR;
UDP_writer --> DDS_Router
DDS_Router --> TCP_reader
DDS Router allows configuring different transports on different DDS Router's participant, so your requested scenario can be addressed. graph LR;
UDP_writer --> UDP_participant
TCP_participant --> TCP_reader
subgraph DDS_Router
UDP_participant-->TCP_participant
end
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Can we send data from publisher side using a particular protocol like UDP and receive data from the subscriber side using another protocol like TCP?
I was running a ros2 publisher node with transport protocol selected as UDP and ros2 subscriber node with transport protocol selected as PCIe...I was not able to subscribe the message sent by the publisher. Why?
Beta Was this translation helpful? Give feedback.
All reactions