Search found 3 matches

by hus007
Wed Apr 20, 2011 6:21 pm
Forum: Inetlab.SMPP v1.0
Topic: event "evDeliver​Sm" not working
Replies: 6
Views: 183120

Re: event "evDeliver​Sm" not working

i forget to copy the event

Private Sub client_evDeliverSm(ByVal sender As Object, ByVal data As Inetlab.SMPP.PDU.DeliverSm)
If data.SegmentNumber > 0 Then

AddMessageSegmentToCollector(data)

Dim messageText As String = data.Client.GetMessageText(data.UserDataPdu.ShortMessage, data.DataCoding ...
by hus007
Wed Apr 20, 2011 6:18 pm
Forum: Inetlab.SMPP v1.0
Topic: event "evDeliver​Sm" not working
Replies: 6
Views: 183120

Re: event "evDeliver​Sm" not working

i check the bound and its for Transceiver mode and SMPP server are supports delivery receipt. but still now not working , the event AddHandler client.evDeliverSm, AddressOf client_evDeliverSm are not fired and
even the event AddHandler client.evDataSm, AddressOf client_evDataSm are not fired too ...
by hus007
Sun Apr 10, 2011 2:19 am
Forum: Inetlab.SMPP v1.0
Topic: event "evDeliver​Sm" not working
Replies: 6
Views: 183120

event "evDeliver​Sm" not working

Hello,

I need a help, I'm trying to redrive the data for sent sms using Inetlab.SMPP to be sure the message has been delivered.

i read in the website that the event evDeliverSm should be fired, but unfortunately its not fired when i send SMS.

can you help me please.

i add the below in my code ...