Search found 987 matches

by alt
Mon Feb 01, 2021 10:38 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 118881

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...
by alt
Mon Feb 01, 2021 7:13 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 118881

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.
by alt
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: 6391

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); } }
by alt
Fri Jan 29, 2021 10:27 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 118881

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Ğİ...
by alt
Fri Jan 29, 2021 8:49 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 118881

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...
by alt
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: 6391

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.
by alt
Fri Jan 29, 2021 4:52 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 118881

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...
by alt
Fri Jan 29, 2021 4:44 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 118881

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?
by alt
Fri Jan 29, 2021 4:30 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 118881

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.
by alt
Mon Jan 25, 2021 4:08 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 118881

Re: Turkish message problem

As far as I understood you had confirmed that the issue with shift tabled is fixed in v 2.9.
Are you facing any other issue?
by alt
Fri Jan 22, 2021 7:22 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 118881

Re: Turkish message problem

Version 1.1 is not supported anymore.
I suggest you to upgrade to version 2.9. There are a lot of improvements.
by alt
Thu Jan 21, 2021 7:15 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 118881

Re: Turkish message problem

I think I found where is the issue.

Please try the version https://www.inetlab.com/Download/2.9.0- ... b.SMPP.zip

How your project calculates the length?
by alt
Wed Jan 20, 2021 6:27 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: TPS in Win10 and WIn Server 2016
Replies: 2
Views: 4193

Re: TPS in Win10 and WIn Server 2016

Hi xhide, Which version did you test? Could you please try with latest https://www.inetlab.com/Download/2.9.0-beta-2271/Inetlab.SMPP.zip Please always test Release version without attached debugger. The TCP Windows Size should be scaled automatically. You can check the size of the window with Wiresh...
by alt
Wed Jan 20, 2021 6:08 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 118881

Re: Turkish message problem

Which versions did you test?

Could you please test with latest https://www.inetlab.com/Download/2.9.0- ... b.SMPP.zip
by alt
Tue Jan 19, 2021 10:02 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 118881

Re: Turkish message problem

Turkish language has both Single and Locking shift tables.

I think in your case you need to use locking shift table.

Code: Select all

.NationalLanguageLockingShift(NationalLanguage.Turkish)