Closed delarosa1962 closed 9 years ago
It is a client API actually without server functions. Use notification to update your client without polling
Hello,
So, if the SoftPLC has a UDT that represents some transaction and the PLC is updating it --- would the PLC be able to issue a "send UDT now" ? I understood that the notifications can be used, this is fine. But how are notifications handled for an UDT or array for example and their updates are not done in one scan for example. Other PLC systems have instructions to send data (ie, Siemens = TSEND, AG_SEND, Rockwell = MSG, Mitsubishi = BUFSND)
Notifications can be used for standard datatypes (bool, int, etc) and complex datatypes (structs, arrays....). Their is no difference
Thanks. Is the notification sent because the data changes or because the SoftPLC decidest to send it?
depend on the attributes of the notification. the plc can sent it cyclically or onchange
What PLC instruction will deliver a block of data ?
check your issue #3
I see the bit for request|response in the header. As a client it is clear to set as request --- when the reply comes the response bit should be set. So, in the event that the PLC decides to send a block of data --- what would the instruction be in the PLC and what should the header/command would look like at the client when the message is received ?