Search found 987 matches

by alt
Sat Apr 05, 2008 5:48 am
Forum: ALT.SMS.SmppClient
Topic: StartReceive error on demo?
Replies: 4
Views: 13335

because in the specification 3.4 SubmitSmResp has no TLVs.
by alt
Sat Apr 05, 2008 5:44 am
Forum: ALT.SMS.SmppClient
Topic: Sending failed
Replies: 1
Views: 7861

ServiceType should be not longer than 5 symbols.
by alt
Sat Apr 05, 2008 5:16 am
Forum: ALT.SMS.SmppClient
Topic: SubmitSpeed Not Working
Replies: 7
Views: 19203

I think problem is in the Submit method. This call is synchronous, and blocks the current thread of execution until a response is received. I have to think about BeginSubmit, EndSubmit methods and SubmitCompleted event for asynchronous process.
by alt
Sat Apr 05, 2008 4:55 am
Forum: ALT.SMS.SmppClient
Topic: SMPPCLIENT_UNKNOWNERROR
Replies: 1
Views: 7954

Your password should be not longer than 8 symbols.
by alt
Sat Apr 05, 2008 4:47 am
Forum: ALT.SMS.SmppClient
Topic: No Information with evdeliverSM
Replies: 6
Views: 17973

hi rag123456,

when you receive DeliverSm you must check property SequenceNumber, if it is greater than zero, then it is multipart message. From propery TotalSegments you can get total parts number.
by alt
Sat Apr 05, 2008 4:35 am
Forum: ALT.SMS.SmppClient
Topic: broken connection
Replies: 4
Views: 12050

When you get no response of EnquireLink, you need to reestablish connection and bind with SMSC. In my application I stop all threads, reconnect SmppClient and run all threads again. Sometimes you need to wait several seconds before reestablishing connection because SMSC return ESME_RBINDFAIL.
by alt
Wed Apr 02, 2008 9:23 am
Forum: ALT.SMS.SmppClient
Topic: StartReceive error on demo?
Replies: 4
Views: 13335

It looks like you connect to SMSC which use SMPP version greater than 3.4.
Your SMSC sends submit_sm_resp with TLV options. I'll try to extend my parser to avoid such errors.
by alt
Fri Mar 28, 2008 3:41 pm
Forum: ALT.SMS.SmppClient
Topic: Timeout on bind
Replies: 4
Views: 14862

Could you show your log from SmppClientDemo?
by alt
Thu Mar 06, 2008 6:17 pm
Forum: ALT.SMS.SmppClient
Topic: Response Problem
Replies: 4
Views: 13852

SubmitText method returns array of responses. The number of elements depend of text length. SubmitSmResp[] resp =client.SubmitText( SubmitMode.ShortMessage, 0x05, 0x01, "SMPP", 0x01, 0x01, Mobile, DataCodings.UCS2, Text); if (resp[0].Status == CommandStatus.ESME_ROK { MessageBox.Show(resp.MessageId,...
by alt
Sat Mar 01, 2008 8:43 am
Forum: ALT.SMS.SmppClient
Topic: Any body knows a solution for response problems!!!
Replies: 1
Views: 7774

Hi shuriz,

Sorry for delay.
ESME_RINVDSTADR is Invalid Dest Addr.
ESME_RMSSQFUL is Message Queue Full.

Try to send your messages using SmppClientDemo. There is complete log.
If problem still exists send me all from Log textbox.
by alt
Sat Mar 01, 2008 8:31 am
Forum: ALT.SMS.SmppClient
Topic: Response Problem
Replies: 4
Views: 13852

try to delete these line from your code
SubmitSm data = new SubmitSm();
SubmitSmResp resp = client.Submit(data);
They mean that you send empty SubmitSm packet.
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: 7869

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

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

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

I have removed this functionality. You can download version 1.2.7.