Can you find the response in the library log with the same sequence?
I mean the log event starting with "PDU Received:"
Do you use Wait() or .Result for Async methods?
Search found 991 matches
- Tue Mar 14, 2023 5:04 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: SubmitAsync never ends
- Replies: 8
- Views: 253141
- Thu Mar 09, 2023 7:31 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: SubmitAsync never ends
- Replies: 8
- Views: 253141
Re: SubmitAsync never ends
Is the ResponseTimeout longer than 6 minutes in your application? If the response is not received within this time, the library should generate a response with the status SMPPCLIENT_RCVTIMEOUT.After waiting for 6 minutes, it still didn't end
- Thu Mar 02, 2023 6:39 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: SubmitAsync never ends
- Replies: 8
- Views: 253141
Re: SubmitAsync never ends
Hi aordonez,
Is library logging is enabled in your application? Could you send me at least ERROR and WARN log records?
Is library logging is enabled in your application? Could you send me at least ERROR and WARN log records?
- Mon Feb 13, 2023 1:23 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Adding Headers to smpp client before bind
- Replies: 6
- Views: 185844
Re: Adding Headers to smpp client before bind
CUAP ( China Mobile USSD Application Protocol ) is HTTP-based protocol.
Inetlab.SMPP doesn't support this.
Inetlab.SMPP doesn't support this.
- 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: 185844
Re: Adding Headers to smpp client before bind
Is CUAP based on SMPP protocol?
- 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: 185844
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 ?
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 ?
- Mon Jan 23, 2023 10:06 am
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Implement USSD with UAP
- Replies: 1
- Views: 76816
Re: Implement USSD with UAP
Hi,
USSD over SMPP is always vendor specific implementation. Try to start with the sample USSD project.
USSD over SMPP is always vendor specific implementation. Try to start with the sample USSD project.
- Wed Jan 18, 2023 4:50 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Connection recovery can send multiple bind requests
- Replies: 6
- Views: 194395
Re: Connection recovery can send multiple bind requests
It is already released. See the change log.
- 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: 117092
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);
- 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: 117092
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?
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?
- 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: 117092
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?
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?
- Wed Oct 19, 2022 7:22 pm
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: SourceAddress encoding issue
- Replies: 4
- Views: 141277
Re: SourceAddress encoding issue
for example:
Code: Select all
_client.EncodingMapper.AddressEncoding = Encoding.ASCII;
- 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: 75974
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 ...
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 ...
- 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: 166526
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 ...
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 ...
- 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: 166526
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?
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?