dotnet/WatsonTcp

WatsonTcpServer MessageReceived event is not triggered from MSSQL server.

licentia88 opened this issue · 2 comments

Hi,
I try to send data from a sql stored procedure to the xxx:11007 port.
I have the code from the samples where I only changed Ip and port sections.
I start my server then I trigger the stored procedure but MessageReceived never gets triggered..

it's interesting that if I change from WatsonTcpServer to SimpleTcpServer I can see that it hits to DataReceived event

This is expected. WatsonTcp uses framing, SuperSimpleTcp does not.

From the README:
image