Hi All,
I have created custom TCP service and custom TCP Operation in ensemble.
The custom TCP operation sending some data to Cutom TCP service and received ACK from TCP service.
My Custom TCP Opeartion :
Method OnMessage(pRequest As CUSTOM.RECORD, Output pResponse As Ens.StringContainer) As %Status
{
Do ..Adapter.SendMessageString("Testing string",.pResponse)
Set ^RESPONSE=pResponse
Quit $$$OK
}
My Custom TCP Service :