-
Notifications
You must be signed in to change notification settings - Fork 51
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
A bug in engineio.parser.ParserV4 #38
Comments
Version 4 of the engine.io protocol does not support binary encoding over polling transport. |
thx for replay,i will close issue soon. in fact,I have a idea to coding a socket.io serve by use vert.x and i have read socket.io-java-client ,engine-io-server,socketio-nodejs,can u give me some advice or idea? In your perspective,Is vert.x suitable? |
I don't have any experience with vert,x. You'll have to make any decisions on your own but I'd say go for it. |
thx and I'll give it a try!can u help me get some solution when i got any trouble about engine.io protocol or socket.io? |
Sure. if you have any questions about the protocol, you can ask me and I'll try my best to answer. |
`public void encodePayload(List<Packet> packets, boolean supportsBinary, EncodeCallback callback) { final String[] encodedPackets = new String[packets.size()]; for (int i = 0; i < encodedPackets.length; i++) { final Packet packet = packets.get(i);
it should be :
`public void encodePayload(List<Packet> packets, boolean supportsBinary, EncodeCallback callback) { final String[] encodedPackets = new String[packets.size()]; for (int i = 0; i < encodedPackets.length; i++) { final Packet packet = packets.get(i);
i fould the code during I runing the unit test in your project.
The text was updated successfully, but these errors were encountered: