-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Send content-length header in method responses #132
base: master
Are you sure you want to change the base?
Conversation
- unlike method calls (client), method responses (server) did not yet send content-length headers. This was causing problem with at least one client (ros's turtlesim, in the context of rosnodejs: publishing to /turtlt1/cmd_vel had no effect on the turtle). This commit fixes that.
Hi, there! |
@agladkov We would love to see this patch pushed. Are there any actual objections? |
I have no objections. |
@baalexander @patricklodder Any chance you guys can merge this and update the published npm package? We are dependent on a downstream package (https://www.npmjs.com/package/rosnodejs) and I would hate to have to fork both projects for a 1 line change. Thanks. |
I need that change as well! |
@cr1979 We've forked the package a while ago and published a new one with the fixes we needed. You can find it here: https://www.npmjs.com/package/xmlrpc-rosnodejs. Just change |
@chfritz perfect thank you! |
send content-length headers. This was causing problem with at least
one client (ros's turtlesim, in the context of rosnodejs: publishing
to /turtlt1/cmd_vel had no effect on the turtle). This commit fixes
that.