Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT

Post Reply
ritik
Posts: 5
Joined: Thu Nov 17, 2022 6:22 am

Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT

Post by ritik » Thu Nov 17, 2022 6:43 am

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.
Attachments
Untitled.png
Untitled.png (10.83 KiB) Viewed 19861 times
alt
Site Admin
Posts: 985
Joined: Tue Apr 25, 2006 9:45 am

Re: Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT

Post by alt » Thu Nov 17, 2022 7:52 pm

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?
alt
Site Admin
Posts: 985
Joined: Tue Apr 25, 2006 9:45 am

Re: Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT

Post by alt » Thu Nov 17, 2022 9:49 pm

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?
alt
Site Admin
Posts: 985
Joined: Tue Apr 25, 2006 9:45 am

Re: Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT

Post by alt » Tue Dec 13, 2022 10:11 am

Please try to force the thread pool to create more worker threads

Code: Select all

ThreadPool.SetMinThreads(200, 200);
Post Reply