Hello!
I would like to ask you if it will work if I open 2 websocket servers into the same application, with different ports.
I mean:
srvr.AddWebSocket("/wsserver/listen","PushB4A")
srvr.Port = 56430
srvr.Start
srvrB.AddWebSocket("/wsserver/listen","PushB4A")
srvrB.Port = 56440
srvrB.Start
I need to do it, in case of internet line interrupt.
I have a backup line on my server and I want to reconnect the devices there!
I've tried to do it to my test environment and works, but I hesitate to do it to the production.
Thank you in advance.