Salut AutreChien,
NorGUI wrote:
When you say socket it is conection using TCPIP ?
Sockets are used to communicate using TCP or UDP protocols. When you say TCP/IP it means using TCP (Transmision Control Protocol) of the IP (Internet protocol) suite. It is the same thing.
NorGUI wrote:
In your list there is not the DCOM, it is from you side not a possible solution ?
I am not an expert with COM, but here's what I know. 1) DCOM is an extension to COM that allow communication accross a network. In your case, on the same PC you only need COM. 2) COM is an object model. I think to use that with your applications, you would create a project to create that object. Then your applications will have to use this object, that will need to be installed (registered) on the PC. It will give you an object that you can use from different applications, independent of their programming model. More info on COM[^]: 3) Where I work, we have created ActiveX controls to be used on IIS servers to access different resources. It works fine, but can be somewhat complex and sometimes hard to debug. I think ActiveX closely resemble COM. 4) This is all very Windows. Not portable. 5) If your application will not be exchanging data more then you mention and wont exchange across different PCs and you are already familiar with COM, then it may be the right choice for you.
Louis * google is your friend *