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 ...
Search found 8 matches
- Fri Mar 07, 2008 12:19 pm
- Forum: ALT.SMS.SmppClient
- Topic: SubmitSpeed Not Working
- Replies: 7
- Views: 58806
- Fri Mar 07, 2008 12:11 pm
- Forum: ALT.SMS.SmppClient
- Topic: Response Problem
- Replies: 4
- Views: 36115
- Sun Mar 02, 2008 2:23 pm
- Forum: ALT.SMS.SmppClient
- Topic: Response Problem
- Replies: 4
- Views: 36115
- 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.

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.


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