Page 1 of 1

Re-Requesting Delivery Status

Posted: Fri Jan 05, 2018 9:28 am
by zaffarowais
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.

Re: Re-Requesting Delivery Status

Posted: Wed Jan 10, 2018 7:35 am
by alt
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.