Releases: jebej/MatlabWebSocket
Release 1.6.1
Release 1.6.0
Add option to pass additional HTTP headers, e.g. for authentication. See the ditto.m
test file for an example.
Release 1.5.0
server sendTo and sendToAll methods now will use fragments if needed
This change allows supporting sending large messages by sending keepalive messages in between fragments. Previously, the timeout mechanism in Java-WebSocket would close the connection automatically because no ping-pongs would be exchanged while the client was receiving a large message.
Also update Java-WebSocket to 1.5.1
Release 1.4.1
Small fixes + documentation update.
Release 1.4.0
Updated Java-Websocket to 1.3.6 to support receiving fragments with the onMessage
method.
Release 1.3.0
- Updated Java-WebSocket to v1.3.4
- Updated jar
Release 1.0.0
-
SSL works with self-signed certifcates made with the java keytool (change the passwords!), see the
runtests.m
file for example usage:
keytool -genkey -validity 3650 -keystore "keystore.jks" -storepass "storepassword" -keypass "keypassword" -alias "default" -dname "CN=127.0.0.1, OU=MyOrgUnit, O=MyOrg, L=MyCity, S=MyRegion, C=MyCountry"
-
Fixed issue #1 by updating to recently released Java-Websocket version