ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
The wiki has a tutorial for creating a ros-service server and client in python:
http://wiki.ros.org/ROS/Tutorials/WritingServiceClient%28python%29
You must create custom Request and Response messages. In python, you must create rospy.Service() object on the server, and rospy.ServiceProxy() object on the client.