Search found 987 matches

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

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

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 indi...
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: 130086

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 language s...
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: 9056

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.writ...
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: 9056

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

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

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

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

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

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.ForSubmit().From(......
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: 3583

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.
by alt
Tue Dec 15, 2020 6:48 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Custom UserDataHeader
Replies: 3
Views: 4505

Re: Custom UserDataHeader

Hi lorenzo,

Could you provide the examples of the different UDHs?
by alt
Wed Dec 02, 2020 11:17 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SubmitMultiMessage exception occured
Replies: 4
Views: 5262

Re: SubmitMultiMessage exception occured

When remote side sends GENERIC_NACK response it means the command/request you send is invalid or unknown. This is exceptional case.
As I said above you need to ask your SMPP provider about SubmitMulti support.
by alt
Tue Dec 01, 2020 9:01 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SubmitMultiMessage exception occured
Replies: 4
Views: 5262

Re: SubmitMultiMessage exception occured

The cast issue is fixed. Please test with version 2.9.0-beta-2222.
by alt
Tue Dec 01, 2020 8:02 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SubmitMultiMessage exception occured
Replies: 4
Views: 5262

Re: SubmitMultiMessage exception occured

Most likely this means that your provider doesn't support SubmitMulti PDU. Please ask the provider.

Anyway I need to check the cast issue in the library.