ws versus wss with Hub fonction
Java implementation of BACnet Secure Connect
Brought to you by:
btltechadvisor,
emilyhayes
Hi all,
I'm just start with BACnet/SC, so socket without TLS is required.
For uncrypted Websocket I've change "wss" by "ws" but I have errors when trying to run TestHub
TestHub.properties look like :
I get this loop message :
SCConnection - CONFIGURATION: HCP#1 111111111111-(pending) in SC-1: Incorrect scheme in URI 'ws://100.64.68.216:4443'
So no way with TestNode(s) with this TestHub.
Some help will be appreciated.
Thank's a lot
Bye.
By default, all the behavior of the reference implementation complies with the standard. Since the use of "plain" WebSockets is not allowed by the standard, you have to specifically enable it with a configuration property: sc.allowPlain = true A note about this has been added to the README that will be pushed out with the 3.2 changes.
Hi,
Thanks, works like a charm.
Bye.