Re-Requesting Delivery Status

.NET library for SMPP protocol
Locked
zaffarowais
Posts: 4
Joined: Tue Aug 22, 2017 8:31 am

Re-Requesting Delivery Status

Post by zaffarowais » Fri Jan 05, 2018 9:28 am

Hi,

Is there any way we can request DLR status of a particular SMSID from our providers, or is it that only the providers can push the status.

P:S I am sorry if I am posting this topic again, tried to search the forum but could not find anything relevant.
alt
Site Admin
Posts: 985
Joined: Tue Apr 25, 2006 9:45 am

Re: Re-Requesting Delivery Status

Post by alt » Wed Jan 10, 2018 7:35 am

Hi,

You can try to send QuerySm PDU to provider.
https://docs.inetlab.com/smpp/api/Inetl ... DU_QuerySm_

Code: Select all

QuerySmResp resp = _client.Query(messageId, srcTon, srcNpi, srcAddr);
MessageState state =  resp.MessageState;
  

Please note, that not all SMPP providers support this PDU type. Please ask before.
Locked