Search found 991 matches

by alt
Sun Feb 17, 2008 4:07 pm
Forum: ALT.SMS.SmppClient
Topic: capture the success response after submitting the message???
Replies: 1
Views: 19895

SubmitSmResp resp = client.Submit(data);

if (resp.Header.Status == CommandStatus.ESME_ROK)
{
MessageBox.Show(resp.MessageId);
}
else
{
MessageBox.Show("Error");
}
by alt
Fri Feb 15, 2008 4:02 pm
Forum: ALT.SMS.SmppClient
Topic: How can I send message longer then 70 characters in unicode
Replies: 2
Views: 27003

You can use method SmppClient.SubmitText. It originates SUBMIT_SM packets and send them to SMSC. There are two modes to send concatenated messages, using short_message field and using optional TLV parameters. Try both SubmitMode and determine which mode is suitable to your SMSC.
by alt
Mon Jan 07, 2008 4:40 pm
Forum: ALT.SMS.SmppClient
Topic: source code
Replies: 10
Views: 84668

Yes, you can get source code updates on request.
Use Contact Us form.
by alt
Fri Dec 14, 2007 12:43 pm
Forum: ALT.SMS.SmppClient
Topic: Invalid Source or Destination Address has 60 second timeout
Replies: 3
Views: 24928

I have removed this functionality. You can download version 1.2.7.
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: 24928

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 ...
by alt
Thu Dec 13, 2007 8:21 pm
Forum: ALT.SMS.SmppClient
Topic: logging
Replies: 1
Views: 19478

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: 52905

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: 52905

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: 52905

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: 52905

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 ...
by alt
Tue Jul 31, 2007 6:35 pm
Forum: ALT.SMS.SmppClient
Topic: Strange bind error
Replies: 1
Views: 21144

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

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: 47678

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: 16275

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: 30349

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 ...