ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Okay, so after a lot of poking around I found my problem(s):
I was sending a string for the time values when I should have been sending integers. This was throwing the exception of "Unknown Operation: Auth" which was throwing me off.
For time values, I was sending the seconds relative to when my program started. This was wrong. I should have been sending seconds since epoch (http://en.wikipedia.org/wiki/Unix_time). Of course.
I hope this is useful for people with this problem in the future.