rossrv vs rosservice
What's the difference? I see my service in rossrv list
but not with rosservice list
.
From ROS wiki
• rossrv: displays information about .srv data structures.
• rosservice: lists and queries ROS Services
I have catkin_ws/src/simple_arm/srv/GoToPosition.srv
that I see when I run rossrv list
as
simple_arm/GoToPosition
However, my request handler is in catkin_ws/src/simple_arm/src/arm_mover.cpp
and I only see it in rosservice list
as /arm_mover/safe_move
. Why can't I see /arm_mover/safe_move
under rossrv list
if it is a service? And the inverse with simple_arm/GoToPosition
?