service didn't show namespace. [closed]
launch file specify the node "surface_service" in namespace "opnear3".
the node "surface_service" has the function to provide one service "select service" ros::ServiceServer surface_server_; surface_server_ = nh.advertiseService( "select_service", &xxxx::select_callback, this);
roslaunch launch file, I'm expecting the service name of "select_service" will be /opnear3/select_service when using rosservice list. in stead, in only shows /select_service.
Because I want to get another service like /opnear4/select_service by running same ROS node in different namespace, is there any way to create service with namespace on it?