Skip to main content
When I do this BindField for an IPC Server Event, the data is not available in the sub process. If I examine the processes in the workspace, I can see the data of the field in the Parent process but the data is empty in the sub process.

K2.BindField(IPCBindType.ActData, "ContactCustomerType", "ContactCustomerType", IPCBindDirection.In)
Sorry for that the IPCBindDirection should have been Out and not In
With IPC, the 'direction' of the data flow is always from the Parent process's point of view. Therefore:

OUT: is data sent from the parent to the child process
IN: is data from the child to the parent (calling) process
IN/OUT: is data send from the the parent (calling) to the child process, where it can potentially be changed throughout the life cycle of the child process, and thereupon, it is sent back to the parent process.

Cheers
Olaf

Reply