So I decided to go back to the beginning. I was trying not to use the java based server provided here as I don't know java and wanted to use the Php based Ratchet. Well I have decided once I looked at the java server that I think I should stick with something that works out of the box and then extend from there. The Ratchet product is just not well supported for the beginner. I have had some success but have hit a bump.
run Java server on my local windows pc and can connect to it via a browser and via my tablet using the stock push client. All works great! Nice to have success finally.
complied the non mysql server into a jar and unloaded it to my Amazon AWS. I opened the 8080 port to allow incoming connections. ran the server with "java -jar server.jar". I got this warning
2015-12-22 17:57:31.735:WARN
ejh.MimeTypes:main: java.util.MissingResourceException: Can't find bundle for base name org/eclipse/jetty/http/encoding, locale en_US
But the server runs.
I can connect to the server with my android tablet from my home wifi and I have a connected message and the server shows the connection as well. Using b4a client
when I try to connect to the server with my browser on my pc and cell phone (
www.knorrfamily.org:8080/push ) I get.
HTTP ERROR: 404
Problem accessing /push. Reason:
Not Found
Powered by Jetty://
The server logs show me this:
70.66.152.31 - - [22/Dec/2015:18:03:43 +0000] "GET /push HTTP/1.1" 404 282 "-" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36"
Any thoughts as to what is happening? Can anyone else connect to this address?
Brad