Hi, I am using Mina in my Android application where device will communicate with each other. To get started I developed a mini application available at "https://github.com/grgvineet/minassltest".
Since I have only one Android device, I test it using openssl cli. The server is working quite fine, can handle multiple connection with a great ease but I am experiencing some weird issues in client part. For example If the client sending some messages initially, at the start of session, all messages are buffered until a message is received from server, then all messages are sent at once. After that is works fine. The first message sent by server is received when it sends a second message, thus two messages simultaneously when second message is sent. After that all works quite fine. Thus in short after the second message, server's message can be seen properly. All sent messages are buffered initially until a message is received by server. In case finding code is difficult between directories, main files are present at " https://github.com/grgvineet/minassltest/tree/master/app/src/main/java/com/vineet/minassltest " Am I missing something ? Thanks Vineet
