Search found 991 matches

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: 531081

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: 18434

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 ...
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: 531081

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: 531081

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)
by alt
Tue Jan 19, 2021 7:05 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 531081

Re: Turkish message problem

thank you. I'll check this issue.
by alt
Mon Jan 18, 2021 8:28 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 531081

Re: Turkish message problem


Using a shift table, a message can still use 7-bit encoding for the characters, but a different set can be chosen to correctly show accented and language specific characters. This allows up to 155 characters, encoded in 136 octets (140 octets, minus the 4-octets of User Data Header required to ...
by alt
Mon Jan 18, 2021 7:43 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 531081

Re: Turkish message problem

Could you provide more details about the issue?

What text did you sent?

What message text the recipient sees on the phone?

What type of .NET encoding did you map to DataCoding.Latin1?
https://docs.inetlab.com/smpp/v2.8/articles/faq/map_encoding.html

Does your SMS provider support National ...
by alt
Thu Jan 14, 2021 9:33 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: More than one submit in the same network frame
Replies: 7
Views: 47375

Re: More than one submit in the same network frame

I have a question. What SMS provider is expecting from your client?
Do you need to wait for SubmitSmResp before sending next SubmitSm?

For batch sending it can happen that SMS provider application receives more than one PDU with the single socket.read(buffer) call, even when sender calls socket ...
by alt
Wed Jan 13, 2021 12:09 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: More than one submit in the same network frame
Replies: 7
Views: 47375

Re: More than one submit in the same network frame

Yes, this option will be defined in the SmppClient.
by alt
Wed Jan 13, 2021 11:26 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: More than one submit in the same network frame
Replies: 7
Views: 47375

Re: More than one submit in the same network frame

Hi aordonez,

Do you mean that the SMS provider requires to send each SMPP PDU in a single TCP packet?

This can significantly reduce the performance.

I could add the option in current beta version v.2.9.
by alt
Thu Jan 07, 2021 8:20 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 531081

Re: Turkish message problem

Hi lolorosso,

what kind of problem are you facing?
how do you send the message? Could you post the code here?
by alt
Mon Dec 28, 2020 9:32 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: evFullMessageReceived Error in v2.9.0-beta-2211
Replies: 11
Views: 65371

Re: evFullMessageReceived Error in v2.9.0-beta-2211

Hi vineet,

I would like to ask you to test the version 2.9.0-beta-2249.
I did stress test for this version and made some improvements.
Please check ChangeLog for details.
by alt
Mon Dec 21, 2020 3:48 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Send MMS notification / WAP Push
Replies: 2
Views: 17938

Re: Send MMS notification / WAP Push

MMS m-notification-ind is now implemented in the version 2.9
by alt
Thu Dec 17, 2020 7:29 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Custom UserDataHeader
Replies: 3
Views: 19199

Re: Custom UserDataHeader

You can do it this way:


UserDataHeaderCollection headers = new UserDataHeaderCollection();
headers.Add(new ConcatenatedShortMessages8bit(0x55,2,1));
headers.Add(new UserDataHeader(0x60, new byte[0]));

submitSm.UserData.Headers = headers;



If you use SMS builder:



var pduList = SMS ...
by alt
Tue Dec 15, 2020 6:55 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Define SubmitAsync Timeout
Replies: 1
Views: 14362

Re: Define SubmitAsync Timeout

There is no much difference in SubmitAsync method between 2.6 and 2.8. So it should work the same way.

What type is "batch" variable?

As far as I understood, you want the library to support CancelationToken parameter in SubmitAsync methods.