Search found 987 matches

by alt
Tue May 25, 2021 4:18 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SourceAddress encoding issue
Replies: 4
Views: 35287

Re: SourceAddress encoding issue

Hello

you need to set correct encoding for the property _client.EncodingMapper.AddressEncoding
by alt
Mon May 17, 2021 7:15 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: TPS
Replies: 3
Views: 31080

Re: TPS

The issue is fixed in the version 2.9.9. The send buffer was only 4096 bytes. Now it uses standard value for .NET Socket class.
by alt
Tue May 04, 2021 9:33 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: TPS
Replies: 3
Views: 31080

Re: TPS

Hi ammar,

You can read about performance in documentation. Try to run local test on the server.

You can also run SmppClientDemo and SmppServerDemo applications on different machines and test the performance with batch sending in SmppClientDemo.
by alt
Mon May 03, 2021 10:48 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SMPP Server client.WorkerThreads parameter is missing!
Replies: 4
Views: 5768

Re: SMPP Server client.WorkerThreads parameter is missing!

Could you send the wireshark file, the app log file, and the code of the method _smscServerSMPP_evClientBind on support@ ?

Do you see any errors in the library log?
by alt
Mon May 03, 2021 9:28 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Connection over tls1.2
Replies: 2
Views: 5140

Re: Connection over tls1.2

Hi,

It looks like you connect to non-SSL port of provider. Please find out on which port the SSL-Connection is supported.

The error you can catch with logging interface of the library
https://docs.inetlab.com/smpp/v2/articles/tracing.html
by alt
Mon Apr 26, 2021 5:49 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Multiple Connectivity To Servers
Replies: 5
Views: 41486

Re: Multiple Connectivity To Servers

Hi owlboo98,

For now SmppClient represents a connection with SMPP server.

Please explain is it primary and secondary IP or it should be connected as BIND_RECEIVER and BIND_TRANSMITTER?
by alt
Mon Apr 26, 2021 5:31 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SMPP Server client.WorkerThreads parameter is missing!
Replies: 4
Views: 5768

Re: SMPP Server client.WorkerThreads parameter is missing!

Hi client.WorkerThreads - Is this replaced and how can I configure this? https://docs.inetlab.com/smpp/v2.9/articles/troubleshooting/tuning.html Also for SmppServerClient.DeliverAsync() I was required to configure the DeliverSm.Command as CommandSet.DeliverSm if it was for Delivery reports. How is t...
by alt
Tue Apr 20, 2021 11:01 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Migration to new license
Replies: 1
Views: 22051

Re: Migration to new license

The license file depends on the library version.

The new license file with product name should work for all v2.x and v1.3 library versions.
The legacy file is required for version 1.2.x or older.
by alt
Mon Mar 08, 2021 10:43 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SMPP Server return custom CommandStatus?
Replies: 2
Views: 4627

Re: SMPP Server return custom CommandStatus?

Code: Select all

data.Response.Header.Status =  (CommandStatus)0x00000400;
by alt
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: 4346

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

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
            });
by alt
Sat Feb 06, 2021 1:37 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Turkish message problem
Replies: 35
Views: 117420

Re: Turkish message problem

Thank you for pointing this bug to me.
It is fixed in the version 2.9.4.
by alt
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: 6337

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

Re: Turkish message problem

Thank you for information.
Let me know if you find any other issue.