Hello cajimenez,
You should ask SMPP provider, how the message routing is implemented.
Search found 903 matches
- Thu Feb 18, 2021 3:20 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Force SmppClient receive Mo's and DLR when there are more than one SMPP clients instances running
- Replies: 2
- Views: 74
- Thu Feb 18, 2021 3:16 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Unable to return CommandStatus.ESME_RINVSYSID with SMPP Server
- Replies: 2
- Views: 17
Re: Unable to return CommandStatus.ESME_RINVSYSID with SMPP Server
Hello Asaf, When you use async method for void event handler the processing is finished on first await. I suppose you get the user with awaitable method. Library doesn't await for the completion of the async method. It will be implemented with Task events. For now you need to set data.Response to nu...
- Mon Feb 15, 2021 6:30 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: More than one submit in the same network frame
- Replies: 7
- Views: 502
Re: More than one submit in the same network frame
Please try the version 2.9.5-beta-2298 with following code
Code: Select all
bool conected = await _client.ConnectAsync(new SmppConnectionOptions
{
RemoteEndPoint = remoteEndPoint,
SinglePDUinTCPPacket = true
});
- Sat Feb 06, 2021 1:37 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Turkish message problem
- Replies: 35
- Views: 1682
Re: Turkish message problem
Thank you for pointing this bug to me.
It is fixed in the version 2.9.4.
It is fixed in the version 2.9.4.
- Wed Feb 03, 2021 9:17 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Process MO(Short messages and long messages) and DLRs in two different open sessions
- Replies: 5
- Views: 196
Re: Process MO(Short messages and long messages) and DLRs in two different open sessions
You need to ask SMPP Provider, how they handle this case. I just told you what is possible in terms of the SMPP protocol.
- Wed Feb 03, 2021 7:13 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Turkish message problem
- Replies: 35
- Views: 1682
Re: Turkish message problem
Thank you for information.
Let me know if you find any other issue.
Let me know if you find any other issue.
- Mon Feb 01, 2021 10:38 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Turkish message problem
- Replies: 35
- Views: 1682
Re: Turkish message problem
I have release version 2.9.2. Please test it and let me know if the issue is fixed. In the fixed version the 3rd part is 148 octets, because of the escaped character that takes 2 octets. Library always tries to keep the whole character in the message part. Therefore two octets character is shifted t...
- Mon Feb 01, 2021 7:13 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Turkish message problem
- Replies: 35
- Views: 1682
Re: Turkish message problem
Thank you, now I see that 3rd part has 150 octets. I'll check this case.
I suppose you are also expecting maximum 149 octets in all parts.
I suppose you are also expecting maximum 149 octets in all parts.
- Mon Feb 01, 2021 7:07 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Process MO(Short messages and long messages) and DLRs in two different open sessions
- Replies: 5
- Views: 196
Re: Process MO(Short messages and long messages) and DLRs in two different open sessions
You can call different handlers from evDeliverSm event handler. private void OnDeliverSm(object sender, DeliverSm data) { SmppClient client = sender as SmppClient; if (data.MessageType == MessageTypes.SMSCDeliveryReceipt) { OnDeliveryReceipt(client , data); } else { OnMessage(client , data); } }
- Fri Jan 29, 2021 10:27 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Turkish message problem
- Replies: 35
- Views: 1682
Re: Turkish message problem
As I can see we have different results for the same text. Which library version are you testing now? my test code: string messageText = @"XXXXÖDÜLLÜ DENEME SINAVI BİLGİLENDİRMESİ (hatırlatma) Değerli Katılımcımız Sınavımız YARIN ÖSYM Saati ile 11 NOLU SALONDA GENEL YETENEK-GENEL KÜLTÜR 10:15' te EĞİ...
- Fri Jan 29, 2021 8:49 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Turkish message problem
- Replies: 35
- Views: 1682
Re: Turkish message problem
1 Part, 149 octets XXXXÖDÜLLÜ DENEME SINAVI BİLGİLENDİRMESİ (hatırlatma) Değerli Katılımcımız Sınavımız YARIN ÖSYM Saati ile 11 NOLU SALONDA GENEL YETENEK- 2 Part, 149 octets GENEL KÜLTÜR 10:15' te EĞİTİM BİLİMLERİ 14:45' te gerçekleştirilecektir. Katılımcıların 15 dakika önce kurumda bulunmaları ri...
- Fri Jan 29, 2021 5:30 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Process MO(Short messages and long messages) and DLRs in two different open sessions
- Replies: 5
- Views: 196
Re: Process MO(Short messages and long messages) and DLRs in two different open sessions
It depends on how the SMPP provider implements message routing. Sometimes you need to bind with specific SystemType. f.i. Bind Receiver with SystemType="DLR" receives only delivery receipts.
- Fri Jan 29, 2021 4:52 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Turkish message problem
- Replies: 35
- Views: 1682
Re: Turkish message problem
I get following parts: ÖDÜLLÜ DENEME SINAVI BİLGİLENDİRMESİ (hatırlatma) Değerli Katılımcımız Sınavımız YARIN ÖSYM Saati ile 6 NOLU SALONDA GENEL YETENEK-GENEL KÜLTÜR 10:15' te EĞİTİM BİLİMLERİ 14:45' te gerçekleştirilecektir. Katılımcıların 15 dakika önce kurumda bulunmaları rica olunur. Katı lımın...
- Fri Jan 29, 2021 4:44 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Turkish message problem
- Replies: 35
- Views: 1682
Re: Turkish message problem
In the library the text above is splitted on 4 parts: 149, 149,148, 60 octets
Could you help me to understand how you get 150?
Could you help me to understand how you get 150?
- Fri Jan 29, 2021 4:30 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Turkish message problem
- Replies: 35
- Views: 1682
Re: Turkish message problem
I want to understand how you get 150 ?
When you send concatenated message with single shift table, the UDH takes 9 octets, which corresponds to 11 7-bit characters. which reduces the maximum number of characters per single message to 149.
When you send concatenated message with single shift table, the UDH takes 9 octets, which corresponds to 11 7-bit characters. which reduces the maximum number of characters per single message to 149.