Search found 987 matches

by alt
Thu Dec 13, 2007 8:46 pm
Forum: ALT.SMS.SmppClient
Topic: Invalid Source or Destination Address has 60 second timeout
Replies: 3
Views: 11700

Which timeout value do you mean? SmppClient has two values where process sleeping and waiting for a while. SmppClient.Timeout gets or sets the maximum time in milliseconds waiting for response from SMSC. SmppClient.SubmitSpeed gets or sets the number of SUBMIT_SM packets per minute that can be send ...
by alt
Thu Dec 13, 2007 8:21 pm
Forum: ALT.SMS.SmppClient
Topic: logging
Replies: 1
Views: 8088

There are two events evReceiveData and evSendData where you can get transfered byte arrays.
by alt
Tue Nov 06, 2007 6:03 pm
Forum: ALT.SMS.SmppClient
Topic: SMPPCLIENT_RCVTIMEOUT
Replies: 9
Views: 24135

Please try version 1.2.6
by alt
Mon Nov 05, 2007 5:34 pm
Forum: ALT.SMS.SmppClient
Topic: SMPPCLIENT_RCVTIMEOUT
Replies: 9
Views: 24135

I'll do my best to implement this in the next release.
I'll add two new events evDeliverSmComplete and evDataSmComplete.
by alt
Fri Nov 02, 2007 6:40 pm
Forum: ALT.SMS.SmppClient
Topic: SMPPCLIENT_RCVTIMEOUT
Replies: 9
Views: 24135

SmppClient sends DeliverSmResp packet after evDeliverSm event.
You did not receive SubmitSmResp because SMSC still waits DeliverSmResp.
Solution could be to add evDeliverSmComplete which will be raised after sending response packet.
What do you think?
by alt
Tue Oct 30, 2007 2:03 pm
Forum: ALT.SMS.SmppClient
Topic: SMPPCLIENT_RCVTIMEOUT
Replies: 9
Views: 24135

SMPPCLIENT_RCVTIMEOUT error arises when SMSC did not response after 120 seconds. SmppClient has propery Timeout with default value 120 seconds. Do you need to send concatenated message? Which SubmitMode do you use? Payload or ShortMessage? Try both. SMSC servers work different. Can you send me the l...
by alt
Tue Jul 31, 2007 6:35 pm
Forum: ALT.SMS.SmppClient
Topic: Strange bind error
Replies: 1
Views: 9132

by alt
Mon Jul 09, 2007 8:26 am
Forum: ALT.SMS.SmppClient
Topic: Serialize
Replies: 5
Views: 16456

byte[] SubmitSM.Serialize(SubmitSM submit)
SubmitSM SubmitSM.Deserialize(byte[] data)
by alt
Sun Jul 08, 2007 9:31 am
Forum: ALT.SMS.SmppClient
Topic: Serialize
Replies: 5
Views: 16456

in version 1.2.4 I have implemented SubmitSm object serialization methods.
Please check it.
by alt
Mon May 28, 2007 8:29 am
Forum: ALT.SMS.SmppClient
Topic: Receive SM from smsc
Replies: 1
Views: 8862

You can use evDelivery or evData events to receive SM from SMSC.
Please check sample application souce code.
by alt
Fri May 25, 2007 9:23 am
Forum: ALT.SMS.SmppClient
Topic: AddressRange parameter
Replies: 4
Views: 14779

Sorry, it was my fault. I have uploaded correct assembly. Please download it again. In AddressRange property you can use regular expressions. I'm posting some examples from specification. ^1234 The ‘^’ char is used to represent “beginning with”, therefore ^1234 is interpreted as MSISDNs beginning wi...
by alt
Thu May 24, 2007 10:31 am
Forum: ALT.SMS.SmppClient
Topic: AddressRange parameter
Replies: 4
Views: 14779

SmppClient.AddressRange has been added in the version 1.2.3.
Please download it from http://www.inetlab.ru/Products/ALT.SMS.SmppClient.aspx
by alt
Thu May 24, 2007 10:29 am
Forum: ALT.SMS.SmppClient
Topic: Query sms status
Replies: 1
Views: 8883

In the new version 1.2.3 I have added SmppClient.Query method.
I appreciate your effort in testing this new method. Please let me know if it works for you.
by alt
Wed May 09, 2007 4:45 pm
Forum: ALT.SMS.SmppClient
Topic: Serialize
Replies: 5
Views: 16456

Each SMPP packet has method GetBytes which returns byte array of this packet. Opposite serialization currently not implemented.
by alt
Tue May 08, 2007 3:43 pm
Forum: ALT.SMS.SmppClient
Topic: submit vs AdvancedSubmit / Throughput
Replies: 3
Views: 12581

Component will sleep until next message can be sent. Even if submit status will be ESME_RTHROTTLED, component will repeat submit after sleep.