Search found 987 matches

by alt
Sat Oct 16, 2010 2:00 pm
Forum: ALT.SMS.SmppClient
Topic: Bind Problem
Replies: 2
Views: 35756

Some SMSC allows only one session with systemid. In case when you have bad connection with SMSC, client can disconnect, but server will think that systemid still connected. I suggest you to find out with SMSC side if you have one session limit, try to find the reason why client disconnects. And what...
by alt
Sat Oct 16, 2010 1:50 pm
Forum: ALT.SMS.SmppClient
Topic: I cant get SMS Delivery Report to work
Replies: 6
Views: 61470

1. In order to request delivery receipt from SMSC you need to set only sm.RegisteredDelivery = 1; in your log for SubmitSm packet i found RegisterDelivery=0x11; Please also make sure that you bind to SMSC in Transceiver mode. 2. It looks like SMSC that you connect to doesn't support QuerySm command.
by alt
Sat Oct 16, 2010 1:15 pm
Forum: ALT.SMS.SmppClient
Topic: How to make SMPPSim send multipart messages
Replies: 2
Views: 36053

Please post here packet bytes from event evReceiveData.
by alt
Sat Oct 16, 2010 1:12 pm
Forum: ALT.SMS.SmppClient
Topic: PURCHASE
Replies: 10
Views: 84969

You should have received a message from shareit.com with subject
"Download Link for ALT.SMS.SmppClient C#/VB.NET Source Code"

Nevertheless I sent you email message with source code in attached file.
by alt
Fri Oct 08, 2010 11:10 am
Forum: ALT.SMS.SmppClient
Topic: Increase TPS
Replies: 3
Views: 42726

PrepareSubmit only split long text to concatenated messages when it is needed. It doesn't send messages.
by alt
Thu Oct 07, 2010 2:45 pm
Forum: ALT.SMS.SmppClient
Topic: Increase TPS
Replies: 3
Views: 42726

List<SubmitSm> req = client.PrepareSubmit( mode, byte.Parse(tbSrcAdrTON.Text), byte.Parse(tbSrcAdrNPI.Text), tbSrcAdr.Text, byte.Parse(tbDestAdrTON.Text), byte.Parse(tbDestAdrNPI.Text), tbDestAdr.Text, coding, tbSend.Text); client.SubmitAsync(req);
by alt
Tue Sep 28, 2010 9:17 am
Forum: ALT.SMS.SmppClient
Topic: PURCHASE
Replies: 10
Views: 84969

library source code
by alt
Tue Sep 28, 2010 9:04 am
Forum: ALT.SMS.SmppClient
Topic: PURCHASE
Replies: 10
Views: 84969

No, Sorry
I don't provide support by phone
by alt
Tue Sep 28, 2010 7:51 am
Forum: ALT.SMS.SmppClient
Topic: PURCHASE
Replies: 10
Views: 84969

Features: - Concatenated messages - Allow to send thousends of messages with asynchronous methods - Supports TLVs options - WAP Push and Flash SMS messages - Delivery Receipt - SSL connection Support is provided by email and in this forum. Yes, you can use library in commercial product. Here you can...
by alt
Tue Sep 28, 2010 7:05 am
Forum: ALT.SMS.SmppClient
Topic: SubmitMulti
Replies: 1
Views: 29749

SubmitMulti is the same as SubmitSm but here you send same message to several destinations up to 255. List<DestinationAddress> msisdnList = new List<DestinationAddress>(dt.Rows.Count); foreach (System.Data.DataRow dRow in dt.Rows) { DestinationAddress da = new DestinationAddress(); da.Address = dRow...
by alt
Thu Sep 23, 2010 3:12 pm
Forum: ALT.SMS.SmppClient
Topic: PURCHASE
Replies: 10
Views: 84969

Hello,

What details are you interesting?
by alt
Thu Sep 02, 2010 7:12 am
Forum: ALT.SMS.SmppClient
Topic: DeliverSMComplete does not work
Replies: 7
Views: 67218

1. Did you post all log? It looks like SMPP server didn't send deliver_sm receipt. 2. try to send submit_sm without code sm.MessageType = MessageTypes.SMSCDeliveryReceipt; sm.Notification = IntermediateNotification.Requested; sm.SMSCReceipt = SMSCDeliveryReceipt.SuccessFailure; only sm.RegisteredDel...
by alt
Mon Aug 30, 2010 7:01 am
Forum: ALT.SMS.SmppClient
Topic: DeliverSMComplete does not work
Replies: 7
Views: 67218

Hello,

Could you show what you have after QuerySmResp in the log,
I'm interesting in Received Data and Sending Data.
also please attach to the event evDeliverSm.

Alexey
by alt
Mon Aug 30, 2010 6:47 am
Forum: ALT.SMS.SmppClient
Topic: how to modify SmppClientDemo in Visual Studio 2008
Replies: 1
Views: 28477

Hi Bhutan,

When you open project in VS 2008 it should be converted without problems.

What problem you faced?

Alexey
by alt
Thu Aug 05, 2010 7:34 pm
Forum: ALT.SMS.SmppClient
Topic: UCS2 data_coding (problem with delivery_receipt)
Replies: 2
Views: 36519

Try to change encoding mapping
SmppClient.MapEncoding(DataCodings.UCS2, System.Text.UTF8);