Search found 991 matches

by alt
Wed May 07, 2008 8:24 pm
Forum: Inetlab.MMS.MM7
Topic: When MM7.NET SDK will be available?
Replies: 4
Views: 154669

MMSTest application now available at
http://www.inetlab.ru/Download/MM7.NET.0.1.Eval.zip

With this application you can try to send MMS over MM7 protocol.

Regards,
Alexey
by alt
Mon Apr 14, 2008 7:45 am
Forum: ALT.SMS.SmppClient
Topic: Shareit.com link down
Replies: 2
Views: 27948

I've just checked the link http://www.shareit.com/product.html?car ... =300131821
and it works.
Could you check above link once again? Otherwise I can try to place this product at Plimus.
by alt
Sun Apr 06, 2008 7:57 am
Forum: ALT.SMS.SmppClient
Topic: broken connection
Replies: 4
Views: 29217

try this code
EnquireLinkResp res = client.EnquireLink();
if (res.Status != CommandStatus.ESME_ROK)
{
// reconnect with SMSC
}
by alt
Sun Apr 06, 2008 7:52 am
Forum: ALT.SMS.SmppClient
Topic: No Information with evdeliverSM
Replies: 6
Views: 54826

could you send me whole log like in SmppClientDemo. I need to check bytes received with DeliverySM
by alt
Sat Apr 05, 2008 5:48 am
Forum: ALT.SMS.SmppClient
Topic: StartReceive error on demo?
Replies: 4
Views: 27574

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

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

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

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

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

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

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

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

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

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

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.