John Mercier
John Mercier
I think I figured it out I just need to find some time to work on it. The problem is in writing the output. This is what CreateContext has. ```...
This should be fixed now in 0.14.0
One thing I noticed is you are supposed to use two clients for this. One for the control client and one for the data client. So I added a data...
To test multiple replies I added this. ``` try (X11Client data = X11Client.connect()) { EnableContextReply enableContextReply = data.send(enableContext); log.info(String.format("enableContextReply: %s", enableContextReply)); data.getNextEvent(); data.getNextEvent(); } ``` Then I get an error...
I added this PR that seems to work. https://github.com/moaxcp/x11-client/pull/27
I updated the PR to help in reading the data in the record replies. Reading x11 replies is going to be tricky because I also need to track the sequence...
I updated the PR with everything I have. I don't think it will work for reading requests and replies but it does work for most examples I have seen online.
I merged the PR and published the changes in 0.15.0. It should show up in maven soon.
Thanks for the reference! I don't think I have seen it. I will look into it and use 0 if the length is 0. Edit: right now I am splitting...
This should be fixed in 0.18.2.