Search found 987 matches

by alt
Fri Feb 10, 2023 4:21 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Adding Headers to smpp client before bind
Replies: 6
Views: 47867

Re: Adding Headers to smpp client before bind

Is CUAP based on SMPP protocol?
by alt
Wed Feb 08, 2023 7:00 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Adding Headers to smpp client before bind
Replies: 6
Views: 47867

Re: Adding Headers to smpp client before bind

Hi jeremih

You cannot add optional TLV parameters to the Bind request, the SMPP protocol doesn't support this.

Why do you want to add the headers ?
by alt
Mon Jan 23, 2023 10:06 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Implement USSD with UAP
Replies: 1
Views: 21408

Re: Implement USSD with UAP

Hi,

USSD over SMPP is always vendor specific implementation. Try to start with the sample USSD project.
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: 28647

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

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

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

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

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

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

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

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

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

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

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/