Search found 987 matches

by alt
Thu Mar 18, 2010 8:58 am
Forum: ALT.SMS.SmppClient
Topic: Why do I get MessageState Unknown response
Replies: 3
Views: 10972

could you show log file of query response?
by alt
Thu Mar 18, 2010 8:55 am
Forum: ALT.SMS.SmppClient
Topic: SMPPclient connects and disconnects with ESME_RBindFail
Replies: 13
Views: 32343

by alt
Sun Mar 14, 2010 4:13 pm
Forum: ALT.SMS.SmppClient
Topic: I lost some data while sending
Replies: 3
Views: 11674

sorry for delay,
this error displays the reason of connection problem.

Do you have something before
2010/2/6 9:07:02 AM: SmppClient disconnected

?

What version do you use now?
by alt
Wed Mar 03, 2010 1:43 pm
Forum: ALT.SMS.SmppClient
Topic: Timers issue
Replies: 2
Views: 7997

1. is only for SMSC side 2. implemented. When client did not send any requests or did not received any response within specified period it sends enquire_link packet to the server. 3. not implemented. Client always tries to support active session. 4. true only for synchronous methods when client wait...
by alt
Wed Mar 03, 2010 1:28 pm
Forum: ALT.SMS.SmppClient
Topic: I lost some data while sending
Replies: 3
Views: 11674

please attach to event evError, it has to show you the reason of disconnection
by alt
Mon Mar 01, 2010 12:04 pm
Forum: ALT.SMS.SmppClient
Topic: SUBMIT LARGE MESSAGES
Replies: 3
Views: 10763

Applications that require more than 160 characters of information transfer can use the message_payload parameter which can hold up to a maximum of 64K. However, the maximum size supported is SMSC dependent and the application should take this into account. Another available method for sending more ...
by alt
Mon Mar 01, 2010 11:42 am
Forum: ALT.SMS.SmppClient
Topic: BindTransceiverResp with status 257
Replies: 2
Views: 8083

command status error codes 0x00000100-0x000003FF are reserved for SMPP extension.

I think you need to ask SMPP server side.
by alt
Thu Feb 11, 2010 7:36 am
Forum: ALT.SMS.SmppClient
Topic: Disconecting problem
Replies: 4
Views: 11076

Last error message is normal behaviour when SMPP server drops connection.

Now i'm investigating cases of disconnects without evError.
by alt
Wed Feb 03, 2010 2:33 pm
Forum: ALT.SMS.SmppClient
Topic: Disconecting problem
Replies: 4
Views: 11076

what in the evError event you got?
by alt
Mon Feb 01, 2010 7:25 pm
Forum: ALT.SMS.SmppClient
Topic: Several exceptions
Replies: 5
Views: 14777

fixed in version 2.8.2

Note that you can also get message Id using code

Code: Select all

TLV receiptedMessageId = data.Optional[OptionalTags.ReceiptedMessageId];
if (receiptedMessageId != null)
{
      string messageId = SmppClient.GetMessageText(receiptedMessageId.Value, DataCodings.ASCII);
}
by alt
Mon Feb 01, 2010 5:01 pm
Forum: ALT.SMS.SmppClient
Topic: Several exceptions
Replies: 5
Views: 14777

Hi rom,

Can you post here received bytes from the event evReceiveData ?
by alt
Mon Feb 01, 2010 10:37 am
Forum: ALT.SMS.SmppClient
Topic: Error Code 4097
Replies: 1
Views: 7117

4097 (0x1001) code returns when SmppClient is not able to parse reposnse from SMSC. In this case please post here bad response and I'll try to find the reason. Event evReceiveData will help you to get SMPP response before parsing.
by alt
Mon Feb 01, 2010 9:45 am
Forum: ALT.SMS.SmppClient
Topic: Several exceptions
Replies: 5
Views: 14777

Please could you try last version 2.8.1.

ESME_RBINDFAIL error occurs when an access has a limit of concurrent connections. Because of network problems SMPP server still think that client is connected and does not allow to bind with second connection.
by alt
Thu Jan 14, 2010 10:32 am
Forum: ALT.SMS.SmppClient
Topic: Problem with long message DELIVERY
Replies: 2
Views: 9529

It is the same situation as it was in
http://www.inetlab.ru/support/viewtopic.php?t=618

Your SMSC sends packet with two fields sm_length
first value 0x8d and second 0x8c

What SMSC side said about this situation?
by alt
Wed Jan 06, 2010 9:07 am
Forum: ALT.SMS.SmppClient
Topic: I Can send Long text with SendText() Method but slow.
Replies: 1
Views: 7400

Hi Raksa,

Correct. Method SendTextAsync() much faster then SendText().

SendText waits for response from SMSC.

SendTextAsync does not wait for response from SMSC, but response still can be retrieved in the event evSubmitComplete.