Search found 984 matches

by alt
Tue Dec 13, 2022 10:11 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT
Replies: 3
Views: 25803

Re: Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT

Please try to force the thread pool to create more worker threads

Code: Select all

ThreadPool.SetMinThreads(200, 200);
by alt
Thu Nov 17, 2022 9:49 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT
Replies: 3
Views: 25803

Re: Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT

ok. submit speed 0 is the same as NoLimit in the SmppClientDemo.

Unfortunately I cannot reproduce this issue with latest version. Could you help me?
What server are you connecting? Can you reproduce this issue with SmppServerDemo?
by alt
Thu Nov 17, 2022 7:52 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT
Replies: 3
Views: 25803

Re: Everything is stuck after ESME_RTHROTTLED and SMPPCLIENT_RCVTIMEOUT

Hello ritik,

When you set 0 for SendSpeedLimit property, do you want to disable this limit?
Have you tried LimitRate.NoLimit value?

I'll try to reproduce this case and let you know about results.

What library version do you use?
by alt
Wed Oct 19, 2022 7:22 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SourceAddress encoding issue
Replies: 4
Views: 31361

Re: SourceAddress encoding issue

for example:

Code: Select all

_client.EncodingMapper.AddressEncoding = Encoding.ASCII;
by alt
Fri Oct 14, 2022 4:28 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: How to handle exception of deliver_sm processing with Inetlab.SMPP?
Replies: 1
Views: 17426

Re: How to handle exception of deliver_sm processing with Inetlab.SMPP?

If SmppClient instance is not subscribed to evDeliverSm event the ESME_RINVCMDID will be returned. If the handler of the event evDeliverSm is failed the ESME_RSYSERR will be returned and the error is written into the library log You can always use try catch in the event handler method to handle the ...
by alt
Wed Sep 07, 2022 8:21 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Remote side has dropped connection
Replies: 5
Views: 33952

Re: Remote side has dropped connection

The smpp session will be dropped when unsuccess response status in EnquireLink is received. In your case the server could be busy with your messages and the EnquireLinkResp is sent later than 19 seconds. The library already processed the timeout and returned the SMPPCLIENT_RCVTIMEOUT. The detailed l...
by alt
Wed Aug 31, 2022 5:50 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Remote side has dropped connection
Replies: 5
Views: 33952

Re: Remote side has dropped connection

What value have you set for the property ResponseTimeout in SmppClient instance?

The EnquireLink PDU is sent only in idle time. It means it will be sent in 20 seconds after last received PDU from the remote side.

Could you provide more detailed logs?
by alt
Mon Aug 29, 2022 8:26 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Remote side has dropped connection
Replies: 5
Views: 33952

Re: Remote side has dropped connection

Hi aordonez,

What library version are you using?
by alt
Wed Aug 17, 2022 9:14 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Can I reject connection in the SmppServer
Replies: 1
Views: 17665

Re: Can I reject connection in the SmppServer

Yes, you can deny the connections. You need to check client.RemoteEndPoint in the evClientConnected event.
by alt
Wed Aug 03, 2022 7:18 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Using Wireshark with TLS1.2 connection
Replies: 3
Views: 25865

Re: Using Wireshark with TLS1.2 connection

This code can help you to get the MessageId from the TLV parameters.

Code: Select all

 
 var parameter = deliverSm.Parameters.Of<ReceiptedMessageIdParameter>().FirstOrDefault();
 string messageId =  parameter.MessageId;
 
by alt
Tue Aug 02, 2022 4:36 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Using Wireshark with TLS1.2 connection
Replies: 3
Views: 25865

Re: Using Wireshark with TLS1.2 connection

There no way to get the MasterSecret from the .NET SslStream.

You can enable verbose logging for the library and find "Received data:" records with received PDUs in hex format.

The data can be decoded on the website https://www.sysop.fr/smpp-decoder/
by alt
Mon Jun 13, 2022 4:01 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SMPP Server receivied Strange characters
Replies: 1
Views: 17847

Re: SMPP Server receivied Strange characters

Dear Jesri,

It can be the wrong DATA_CODING to .NET encoding mapping.
https://docs.inetlab.com/smpp/v2.9/arti ... oding.html

I need to check the SUBMIT_SM PDU you received from the client. Please send the Wireshark file to the support@ .
by alt
Mon Jun 06, 2022 5:05 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Scandinavian characters in incoming messages
Replies: 3
Views: 26106

Re: Scandinavian characters in incoming messages

Hi,

What value has data_coding field in the DELIVER_SM PDU?
I would use the same data_coding in the SUBMIT_SM PDU and set appropriate .NET Encoding in the EncodingMapper for the client.

https://docs.inetlab.com/smpp/v2.9/arti ... oding.html
by alt
Thu May 19, 2022 9:28 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Sending BIND on receipt of an OUTBIND
Replies: 3
Views: 26443

Re: Sending BIND on receipt of an OUTBIND

The outbind was incomplete in the Inetlab.SMPP library. The version 2.9.18 has additional classes for this feature: - SmppOutbindClient class that can establish SMPP session with ESME using Outbind command. - SmppOutbindServerClient class, that passed down to the evClientOutBind event in the SmppSer...