In a project, I made the TCP settings as follows :
GXNet server = new GXNet(NetworkType.Tcp, 777);
server.Trace = TraceLevel.Verbose;
server.OnClientConnected += new ClientConnectedEventHandler(server_OnClientConnected);
and this is client connected handler:
GXNet server = (GXNet)sender;
try
{
using (GXNet cl = server.Attach(e.Info))
{
server.Server = false;
Read(cl);
}
}
catch (Exception ex)
{
}
When a user connects, information is sent to the user, but nothing is received
I tested many times and did not get any results
The latest version of the library is installed
and the project is asp.net core 7.0 , also i tested it with asp.net core 6.0
thank you.