Search found 8 matches

by shuriz
Fri Mar 07, 2008 12:19 pm
Forum: ALT.SMS.SmppClient
Topic: SubmitSpeed Not Working
Replies: 7
Views: 58806

SubmitSpeed Not Working

Hi Alt,
I tried submitspeed according to my smsc but still i can't submit more then 3 messages per second, In my other application i can submit upto 50 messages per second with default SMSC speed.With your dll i tried every speed but still no difference,if i set very very high number like ...
by shuriz
Fri Mar 07, 2008 12:11 pm
Forum: ALT.SMS.SmppClient
Topic: Response Problem
Replies: 4
Views: 36115

Thanks Alt
by shuriz
Sun Mar 02, 2008 2:23 pm
Forum: ALT.SMS.SmppClient
Topic: Response Problem
Replies: 4
Views: 36115

Hi This is my code

client.SubmitText(

SubmitMode.ShortMessage,
0x05,
0x01,
"SMPP",
0x01,
0x01,
Mobile,
DataCodings.UCS2,
Text);

SubmitSmResp resp = new SubmitSmResp();


if (resp.Status == CommandStatus.ESME_ROK
{
MessageBox.Show(resp.MessageId, "messageid");
}

else ...
by shuriz
Fri Feb 29, 2008 5:05 pm
Forum: ALT.SMS.SmppClient
Topic: Any body knows a solution for response problems!!!
Replies: 1
Views: 19226

Any body knows a solution for response problems!!!

Hi Everybody and Alt,

When i submit message to smsc i get ESME_RINVDSTADR or ESME_RMSSQFUL in response instead of messageid,although message received in mobile successfully, please give a solution for these problems. :? :(
by shuriz
Wed Feb 20, 2008 4:46 pm
Forum: ALT.SMS.SmppClient
Topic: Response Problem
Replies: 4
Views: 36115

Response Problem

Hi alt,

try
{
SubmitSm data = new SubmitSm();
SubmitSmResp resp = client.Submit(data);
client.SubmitText(

SubmitMode.ShortMessage,
byte.Parse(tbSrcAdrTON.Text),
byte.Parse(tbSrcAdrNPI.Text),
tbSrcAdr.Text,
byte.Parse(tbDestAdrTON.Text),
byte.Parse(tbDestAdrNPI.Text),
tbDestAdr.Text ...
by shuriz
Sun Feb 17, 2008 3:16 pm
Forum: ALT.SMS.SmppClient
Topic: How can I send message longer then 70 characters in unicode
Replies: 2
Views: 25910

Thanks alt for your respone and for the very good library.
by shuriz
Sun Feb 17, 2008 3:14 pm
Forum: ALT.SMS.SmppClient
Topic: capture the success response after submitting the message???
Replies: 1
Views: 19110

capture the success response after submitting the message???

Hi alt,
How can i capture the success response from smsc after i send the message successfully.

In my other applications i doing this

Submit_Sm = SMSC.SubmitSm(new SubmitSmReq(Submit_Sm));

if (Submit_Sm.Header.CommandStatus == 0)
{
MessageBox.Show(Submit_Sm.Body.MessageId);
}
else ...
by shuriz
Thu Feb 14, 2008 7:21 am
Forum: ALT.SMS.SmppClient
Topic: How can I send message longer then 70 characters in unicode
Replies: 2
Views: 25910

How can I send message longer then 70 characters in unicode

Hi Alt, Your work is very good,Please let me know how i can send unicode message longer then 70 characters,please give some example. Thanks in advance