TCP Driver problem polling

Hello,

I am using Ignition 7.9.7.

I have created a TCP Driver conection and I have enabled the Writeback. I have a TCP server developed in .NET and I communicated with Ignition succesfully. I Want that Ignition send a message to the server each 5 seconds, the problem is that when I enable the TCP driver the communication starts polling as fast Ignition can that means that in one second Ignition sends around 30 messages per second.

All the messages received in the server in the image were received in less than 1 second. And I want to send 1 message each 5 seconds. How can I do that?

Thanks,

It looks like your server is closing the TCP connection and the driver is reconnecting (over and over).

Hi,

Thank you, that was it! I change the server and now it works perfect! Thank you!