How to send ReverseHello message periodically from OPC UA server to OPC UA client in C#?

123 Views Asked by At

I have developed OPC UA SERVER application using CSharp(C#) language. I want to send periodically reverse hello messages to OPC UA Client. I configured the configuration file in following way in OPC UA Server. Please help it.

</ServerConfiguration>
  ...
  <ReverseConnect>
    <Clients>
      <ReverseConnectClient>
        <EndpointUrl>opc.tcp://localhost:65300</EndpointUrl>
        <Timeout>30000</Timeout>
      </ReverseConnectClient>
    </Clients>
    <ConnectInterval>15000</ConnectInterval>
    <ConnectTimeout>30000</ConnectTimeout>
    <RejectTimeout>60000</RejectTimeout>
  </ReverseConnect>
</ServerConfiguration>
0

There are 0 best solutions below