Page 1 of 1

Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT

Posted: Thu Nov 17, 2022 6:43 am
by ritik
Hello,

I need a help,

Whenever i'm trying to submit messages in batch (50K) with submit speed 0. i received "ESME_RTHROTTLED" and "SMPPCLIENT_RCVTIMEOUT" and that's fine.

but issue is, after that, library automatically disconnect the client and unable to reconnect for the same because of everything is stuck. if i'm trying to reconnect it, still return "SMPPCLIENT_RCVTIMEOUT".

I have to restart the server then able to connect.

Please help me about this thing, whats going wrong.

Thanks in advance.

Re: Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT

Posted: Thu Nov 17, 2022 7:52 pm
by alt
Hello ritik,

When you set 0 for SendSpeedLimit property, do you want to disable this limit?
Have you tried LimitRate.NoLimit value?

I'll try to reproduce this case and let you know about results.

What library version do you use?

Re: Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT

Posted: Thu Nov 17, 2022 9:49 pm
by alt
ok. submit speed 0 is the same as NoLimit in the SmppClientDemo.

Unfortunately I cannot reproduce this issue with latest version. Could you help me?
What server are you connecting? Can you reproduce this issue with SmppServerDemo?

Re: Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT

Posted: Tue Dec 13, 2022 10:11 am
by alt
Please try to force the thread pool to create more worker threads

Code: Select all

ThreadPool.SetMinThreads(200, 200);