Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SignalR in Delphi or C++Builder [closed]

I need to send data in real time between Delphi/C++Builder apps placed in different PCs not connected in the same LAN, only using Internet.

My first approach was via DataSnap REST server but it is not practical due proxy and router problems. The configuration was too hard for the users plus that some people do not like to have a web server running in their machines opening the corresponding ports.

My second approach is using a server in the middle. I am checking SignalR technology that seems to fit very well. It is well solved for C# but I cannot find any information about VCL, Delphi or C++ Builder.

Is there some library or do I need to work from scratch via WebSockets?

Is there another way to communicate VCL applications that run in separated PCs only connected to Internet?

like image 986
kokokok Avatar asked Nov 08 '22 20:11

kokokok


1 Answers

/n Software has a WebSockets library - with C++Builder support. https://www.nsoftware.com/ipworks/ws/

Docs at https://cdn.nsoftware.com/help/IWF/bcb/

Download (there is a trial edition) at https://www.nsoftware.com/ipworks/ws/download.aspx

like image 73
user186876 Avatar answered Nov 15 '22 06:11

user186876