anode505
Streaming Star
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2015
05:33 AM
Apil 7 update bug POST
I got updated over night, and the http/POST scripts won't run anymore.
Port 8060 is still open
I get a 404 bad request.
semi cleaned up:
Port 8060 is still open
I get a 404 bad request.
semi cleaned up:
echo -e 'POST /keypress/Enter HTTP/1.1
' | nc " 192.168.1.199 " 8060 HTTP/1.1 200 OK Content-Length: 0" as string
3 REPLIES 3


Roku Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2015
10:48 AM
Re: Apil 7 update bug POST
I suspect the server is requiring CR-LF line endings now, instead of accepting LF-only line endings.
You might try using \r\n\r\n at the end instead of using an embedded newline constant.
You might try using \r\n\r\n at the end instead of using an embedded newline constant.


Roku Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2015
10:55 AM
Re: Apil 7 update bug POST
Yes, that appears to be the problem.
This should work:
printf "POST /keypress/Enter HTTP/1.1\r\n\r\n"' | nc " 192.168.1.199 " 8060
This should work:
printf "POST /keypress/Enter HTTP/1.1\r\n\r\n"' | nc " 192.168.1.199 " 8060
anode505
Streaming Star
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2015
12:51 PM
Re: Apil 7 update bug POST
Thanks!
Skinned the cat a different wat.
Used the curl method. Alls working again.
Skinned the cat a different wat.
Used the curl method. Alls working again.