Hello,
I need a help, Whenever i have received submit_sm in bulk then why multiple submit_sm-resp going in one packet. it's creating issue to handle from connected node.
Please help me about this thing, whats going wrong.
Thanks.
Why multiple submit_sm-resp in one packet
Why multiple submit_sm-resp in one packet
- Attachments
-
- Untitled.png (22.56 KiB) Viewed 107232 times
Re: Why multiple submit_sm-resp in one packet
Hello ritik,
You can disable this feature with following code:
You can disable this feature with following code:
Code: Select all
bool conected = await _client.ConnectAsync(new SmppConnectionOptions
{
RemoteEndPoint = remoteEndPoint,
SinglePDUinTCPPacket = true
});
Re: Why multiple submit_sm-resp in one packet
Hello alt,
Actually I have open a non-ssl/ssl server on particular IP and Port, Clients will connect to us.
Actually I have open a non-ssl/ssl server on particular IP and Port, Clients will connect to us.
Re: Why multiple submit_sm-resp in one packet
for the SmppServer you can change this option with code
Code: Select all
_server.ConnectionOptions.SinglePDUinTCPPacket = true;