service call succeeds, but not applied in gazebo
hi, in my gtest i do a service call
ros::ServiceClient client = nH.serviceClient<gazebo_msgs::applyjointeffort>("/gazebo/apply_joint_effort"); EXPECT_TRUE(client.call(r));
this service call returns true, the response message tells me: ApplyJointEffort: effort set
but the effort is not applied to the model in the running gazebo simulator ?
I have checked the network tcp/ip streams, and see that there are some packets talking about the service /gazebo/apply_joint_effort, but i cannot see anywhere some values i send like duration,start_time,effort ?
How can i do a better inspection of the services? what could this error cause?
thanks flo