Search found 60 matches

by NickAskew
Thu Feb 26, 2009 9:38 pm
Forum: ALT.SMS.SmppClient
Topic: More serializable types required
Replies: 3
Views: 10899

More serializable types required

Hi Alt, Would it be possible to get the latest copy of the source please (I purchased it previously) or a modified version where the following types are 'serializable': <Serializable()> SubmitSmResp <Serializable()> DeliverSm I know I could create surrogates but I'd rather have neat code! Many thank...
by NickAskew
Thu Jan 08, 2009 5:00 pm
Forum: ALT.SMS.SmppClient
Topic: How would I set registered_delivery to 1?
Replies: 1
Views: 9088

Hi Hedroj, The SMPP v3.4 Issue 1.2 Protocol Specification reads: 5.2.17 registered_delivery The registered_delivery parameter is used to request an SMSC delivery receipt and/or SME originated acknowledgements. The following values are defined: Bits 7 6 5 4 3 2 1 0 Meaning SMSC Delivery Receipt (bits...
by NickAskew
Sat Oct 25, 2008 12:48 pm
Forum: ALT.SMS.SmppClient
Topic: BindTransceiverResp with status SMPPCLIENT_RCVTIMEOUT
Replies: 4
Views: 14529

This was the same provider I had issues with previously, it turned out to be a poorly configured router at their end.. your component was spot on, thanks :)
by NickAskew
Tue Oct 14, 2008 2:45 pm
Forum: ALT.SMS.SmppClient
Topic: BindTransceiverResp with status SMPPCLIENT_RCVTIMEOUT
Replies: 4
Views: 14529

BindTransceiverResp with status SMPPCLIENT_RCVTIMEOUT

Hi Alt, I have implemented your component successfully for several SMSC's however I have encountered a tricky one which will not allow me to bind, I have included the SmppClientDemo log below and wondered if you had any suggestions on my next step to troubleshoot the reason behind the failure, thank...
by NickAskew
Tue Oct 14, 2008 1:59 pm
Forum: ALT.SMS.SmppClient
Topic: SubmitAsync and MessageId
Replies: 6
Views: 18777

Hi David, The two providers I am using at the moment (mBlox and Hays) have been returning an evSubmitComplete prior to the evDeliverSm HOWEVER the Formal SMPP v3.4 specification does state that an application sending asynchronously should be able to handle out of order replies. I have anticipated ou...
by NickAskew
Wed Oct 08, 2008 12:38 pm
Forum: ALT.SMS.SmppClient
Topic: Receiving a No Such Host error message upon connect
Replies: 6
Views: 16051

Thank you! - That allowed me to identify the problem as a DNS issue at the SMSC :)
by NickAskew
Wed Oct 08, 2008 9:19 am
Forum: ALT.SMS.SmppClient
Topic: Receiving a No Such Host error message upon connect
Replies: 6
Views: 16051

I am afraid v2.4.1 still issues the 'No Such Host' (SocketException) error.
by NickAskew
Wed Oct 08, 2008 7:27 am
Forum: ALT.SMS.SmppClient
Topic: Delivery with MessageID
Replies: 3
Views: 12334

Hi Michael,

I would suggest you ask the provider of the SMSC that you are connected to as they will be able to view the request you are making for the message and also the reason it is failing.

Regards
Nick
by NickAskew
Tue Oct 07, 2008 4:41 pm
Forum: ALT.SMS.SmppClient
Topic: Receiving a No Such Host error message upon connect
Replies: 6
Views: 16051

My environment is XP+Latest SP, still using IPv4.
by NickAskew
Tue Oct 07, 2008 2:51 pm
Forum: ALT.SMS.SmppClient
Topic: Receiving a No Such Host error message upon connect
Replies: 6
Views: 16051

Receiving a No Such Host error message upon connect

Hi I am implementing your SmppClient at the moment and have encountered a provider (Sybase365) with whom I cannot connect, the error message I retrieve is a 'No Such Host' whilst executing the SmppClient.Connect method. I have performed a network trace and can see 2 DNS lookups being performed again...
by NickAskew
Tue Oct 07, 2008 2:39 pm
Forum: ALT.SMS.SmppClient
Topic: Can i send more than the default message
Replies: 1
Views: 7646

by NickAskew
Tue Oct 07, 2008 2:36 pm
Forum: ALT.SMS.SmppClient
Topic: I got Error when send sms over the Default 140 character...
Replies: 8
Views: 18603

Hi I use this to send: Dim sp As New SubmitSm(m_ServiceType, m_SourceAddrTon, m_SourceAddrNpi, SourceMobileNum, m_DestAddrTon, m_DestAddrNpi, DestMobileNum) sp.DataCoding = m_DataCoding ' = 0 (the default encoding) sp.ShortMessageBytes = SmppClient.GetMessageBytes(TextMessageBody, DirectCast(sp.Data...
by NickAskew
Tue Oct 07, 2008 2:32 pm
Forum: ALT.SMS.SmppClient
Topic: Delivery with MessageID
Replies: 3
Views: 12334

Hi Michael, This post identifies how to retrieve the delivery status of a message that you have sent: http://www.inetlab.ru/support/viewtopic.php?t=510 If you want adhoc updates on specific messages then you need to research the SmppClient.Query method which allows you to ask the SMSC for informatio...
by NickAskew
Tue Oct 07, 2008 2:28 pm
Forum: ALT.SMS.SmppClient
Topic: what difference between Payload and ShortMessage...
Replies: 1
Views: 7961

Hi

This is the official Wiki for SMPP http://en.wikipedia.org/wiki/Short_mess ... r_protocol, it gives links at the bottom of the page to the location of the official SMPP specification(s).

Regards
Nick
by NickAskew
Tue Oct 07, 2008 2:18 pm
Forum: ALT.SMS.SmppClient
Topic: SubmitAsync and MessageId
Replies: 6
Views: 18777

Hi (1) I set the SubmitSm.Sequence equal to the unique ID of the row in my table where I manage the message I am sending asynchronously. (2a) I retrieve the 'posted' to carrier message in the [evSubmitComplete] event [data As ALT.SMS.SubmitSmResp], where I can match this response to the original mes...