Search found 8 matches

by ammar
Wed May 05, 2021 4:01 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: TPS
Replies: 3
Views: 30612

Re: TPS

I run on different machines and test the performance with batch sending. But max 300 m/s var listToSend = collection.AsQueryable().OrderByDescending(c => c.Priority) .Where(c => c.GatewayID == GatewayId) .Take(tps).ToList(); foreach (var item in listToSend) { var pduBuilder = SMS.ForSubmit() .From(i...
by ammar
Tue May 04, 2021 7:50 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: TPS
Replies: 3
Views: 30612

TPS

How many sms per second I can send?
My hardware: 64 GB RAM, 32 Cores of CPU, SSD HDD

I test it in production, but I can sent max 300 message per second.
by ammar
Wed Oct 21, 2020 7:05 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Read from SQL and Send SMS
Replies: 6
Views: 7197

Re: Read from SQL and Send SMS

Text of message
Like "Hello" or can be anything
by ammar
Tue Oct 20, 2020 11:55 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Read from SQL and Send SMS
Replies: 6
Views: 7197

Re: Read from SQL and Send SMS

Hi,
I means when I want get Datacodding from Text by using this method

Code: Select all

.Coding((DataCodings)Enum.Parse(typeof(DataCodings), text))
I got error. But when I use (for example)

Code: Select all

DataCodings.UCS2
that work correctly
by ammar
Sat Oct 17, 2020 1:42 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Read from SQL and Send SMS
Replies: 6
Views: 7197

Read from SQL and Send SMS

Hello When I read message from SQL and want to send them via SMPP, I got an error. But when replace parameter with static text, work normally. public static ConcurrentQueue<string> iQ; public static async Task<int> RunTest(SmppClient client) { int count = 0; DataTable dataTable = new DataTable(); tr...
by ammar
Sun Jan 19, 2020 7:24 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Windows service for SMPP Server
Replies: 4
Views: 7875

Re: Windows service for SMPP Server

Can you please share me the github link?
by ammar
Thu Jan 02, 2020 4:12 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Windows service for SMPP Server
Replies: 4
Views: 7875

Windows service for SMPP Server

Hi,
I want create windows service for Smpp server. How I can do it? Do you have sample code for develop it?