Search found 987 matches

by alt
Tue Jul 06, 2010 2:02 pm
Forum: ALT.SMS.SmppClient
Topic: return ESME_RINVMSGLEN while sending a message
Replies: 12
Views: 24779

Your submit_sm messages are ok.
Do you get ESME_RINVMSGLEN when you send short text?

Please try to find out if SMSC supports concatenated messages?
And try SubmitMode.Payload mode.
by alt
Sun Jul 04, 2010 8:36 pm
Forum: ALT.SMS.SmppClient
Topic: Please help! getting error "Bad status returned during
Replies: 1
Views: 7327

Do you always have this response?
It looks like server drops connection when you send SMPP packet.
Please check your connection parameters.
by alt
Sun Jul 04, 2010 8:32 pm
Forum: ALT.SMS.SmppClient
Topic: Cannot bind as Transceiver
Replies: 1
Views: 8154

Please ask if SMSC defined restrictions for your ID.
Sometimes they are not allow to bind in Transceiver mode.
Or they allow to bind only one connection.
by alt
Sun Jul 04, 2010 8:30 pm
Forum: ALT.SMS.SmppClient
Topic: return ESME_RINVMSGLEN while sending a message
Replies: 12
Views: 24779

In order to tell you the reason why you got ESME_RINVMSGLEN I need to see what smpp client has sent. Please use code from SmppClientDemo client.evSendData +=new ALT.SMS.SmppClient.SendDataEventHandler(client_evSendData); ... private void client_evSendData(object sender, byte[] data) { AddToLog("Send...
by alt
Sun Jul 04, 2010 8:21 pm
Forum: ALT.SMS.SmppClient
Topic: client_evReceiveData incorrect package break
Replies: 1
Views: 7046

Event evReceiveData raised when any data available from network stream. Sometimes SMSC sends (or client receives) one SMPP packet in two or more chunks. Usualy event evReceiveData used for debug purposes. In production system I disable such events in order to increase performance. Please use evSubmi...
by alt
Sun Jul 04, 2010 8:09 pm
Forum: ALT.SMS.SmppClient
Topic: Thread safe
Replies: 3
Views: 41221

Hi Oliver,

Last versions of the library made as thread-safe.

Alexey
by alt
Sun Jul 04, 2010 8:00 pm
Forum: ALT.SMS.SmppClient
Topic: Expections in V3.10.1.0
Replies: 1
Views: 7136

Could you show the code you use?
by alt
Sun Jul 04, 2010 7:55 pm
Forum: ALT.SMS.SmppClient
Topic: SMPPCLIENT_NOCONN in SubmitSmResp
Replies: 1
Views: 7912

SmppClient returns this status when it has no connection with SMSC or connection has been lost. You need to reestablish connection with SMSC using methods Connect and Bind.
by alt
Fri May 14, 2010 5:42 pm
Forum: ALT.SMS.SmppClient
Topic: issue while reciving Submit SM
Replies: 6
Views: 15217

Do you mean delivery_sm and submit_sm_resp from SMPP server?
by alt
Wed May 12, 2010 7:30 am
Forum: ALT.SMS.SmppClient
Topic: special characters, again
Replies: 10
Views: 21387

Could you tell results for cases 1) SmppClient.MapEncoding(DataCodings.Default , new GSMEncoding()); 2) SmppClient.MapEncoding(DataCodings.Default , Encoding.Default); 3) SmppClient.MapEncoding(DataCodings.ASCII , new GSMEncoding()); 4) SmppClient.MapEncoding(DataCodings.ASCII , Encoding.Default) 5)...
by alt
Mon May 10, 2010 6:18 pm
Forum: ALT.SMS.SmppClient
Topic: special characters, again
Replies: 10
Views: 21387

Do you know vendor type of SMSC ? All symbols "{}\|[]~" are belong to extension table of GSM encoding. http://www.dreamfabric.com/sms/default_alphabet.html Possible SMSC doesn't properly convert your messages to packed GSM 03.38 encoding. Please also try to send with GSM encoding in data coding = 4 ...
by alt
Mon May 10, 2010 4:56 pm
Forum: ALT.SMS.SmppClient
Topic: issue while reciving Submit SM
Replies: 6
Views: 15217

Please try with version 2.10.0
by alt
Mon May 10, 2010 4:55 pm
Forum: ALT.SMS.SmppClient
Topic: Socket.Send freeze under load ?
Replies: 5
Views: 13977

Hello 3psil0N,

New version already released. Sorry, I had no time to publish it.
In this version deadlock should be fixed. Old version had bug in receive callback.
by alt
Wed May 05, 2010 8:30 am
Forum: ALT.SMS.SmppClient
Topic: Message ID in evDeliverSm???
Replies: 5
Views: 53326

Please try this code: TLV messageState = dp.Optional[OptionalTags.MessageState]; MessageState state = MessageState.None; if (messageState != null) { state = (MessageState)messageState.Value[0]; } TLV receiptedMessageId = dp.Optional[OptionalTags.ReceiptedMessageId]; string messageId = null; if (rece...