Hi, the specification of my SMS service provider says that the " TransId " (length=30) should be sent to the headers of " X-NotifyHeader ", " X-RequestHeader ".
I suppose " MessageId " is taken from " TransId " because this is the only field ID with length=30
Specification description similar to ...
Search found 9 matches
- Wed Jun 24, 2020 9:45 am
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: messageid concept
- Replies: 8
- Views: 46289
- Fri May 29, 2020 3:00 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Smpp Dissconnect and re connect
- Replies: 18
- Views: 98637
Re: Smpp Dissconnect and re connect
Please note that Thread.Sleep method blocks all worker threads in the ThreadPool. Moreover the InternalSendMessageAsync method overloads the ThreadPool queue with unnecessary Tasks. As the result your application and library cannot do real work.
It would be better if your loop waits from ...
- Fri May 29, 2020 2:57 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Smpp Dissconnect and re connect
- Replies: 18
- Views: 98637
Re: Smpp Dissconnect and re connect
Thank you. Now it works.alt wrote: Thu May 14, 2020 2:11 pm Could you test the version 2.8.1-beta-2021 as well? There are some improvements for connection recovery.
- Sat May 16, 2020 9:18 am
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Smpp Dissconnect and re connect
- Replies: 18
- Views: 98637
Re: Smpp Dissconnect and re connect
Hi thanks!alt wrote: Thu May 14, 2020 2:11 pm Could you test the version 2.8.1-beta-2021 as well? There are some improvements for connection recovery.
I will try next week.
- Wed May 13, 2020 1:58 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Smpp Dissconnect and re connect
- Replies: 18
- Views: 98637
Re: Smpp Dissconnect and re connect
I have published pre-release version 2.8.1-beta-2015.
You can download it from your Inetlab Account or as NuGet package.
Please test it.
The first time did not work.
Steps:
1) SMPP server did not reboot
2) Recompiled client with new beta
3) Connection recovery does not work
4) Restarting the ...
- Mon May 11, 2020 8:54 am
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Smpp Dissconnect and re connect
- Replies: 18
- Views: 98637
Re: Smpp Dissconnect and re connect
Hi, thanks! In the nuggets I saw a new version, I'm going to try tomorrow.alt wrote: Fri May 08, 2020 12:28 pm I have published pre-release version 2.8.1-beta-2015.
You can download it from your Inetlab Account or as NuGet package.
Please test it.
- Wed May 06, 2020 2:39 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Smpp Dissconnect and re connect
- Replies: 18
- Views: 98637
Re: Smpp Dissconnect and re connect
Hi zaikay,
What do you want to achieve when you do call like:
Enumerable.Range(1, 10000).AsParallel().ForAll(async i => await SmsSenderSingelton.SendMessageAsync($"message #{i}"));
Is it only batch sending of the 10000 messages? Or is it stress test for the ThreadPool?
I need to use one ...
- Tue May 05, 2020 9:54 am
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Smpp Dissconnect and re connect
- Replies: 18
- Views: 98637
Re: Smpp Dissconnect and re connect
What version of the .NET Framework your application targets?
client use .Net Core 3.1
Do you see following log message after this error?
WARN: Connection failed. Repeat in 120 seconds.
it is not always visible
By the way, it is not correct way to check disconnection during submission. You ...
client use .Net Core 3.1
Do you see following log message after this error?
WARN: Connection failed. Repeat in 120 seconds.
it is not always visible
By the way, it is not correct way to check disconnection during submission. You ...
- Mon May 04, 2020 2:32 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Smpp Dissconnect and re connect
- Replies: 18
- Views: 98637
Re: Smpp Dissconnect and re connect
I need entries from internal library logger, at lease for the error level.
https://docs.inetlab.com/smpp/v2/articles/tracing.html
I'm testing a similar behavior using the demo version of your server
Actual client - from pump 2.8.0, server from the Inetlab.SMPP site SmppServer Demo 2.0.0.0 ...