Search found 987 matches

by alt
Fri Nov 21, 2008 3:39 pm
Forum: ALT.SMS.SmppClient
Topic: OnEnquireLink and SMPPCLIENT_RCVTIMEOUT
Replies: 6
Views: 16765

Here I also stop the client and it disconnects. I think that we have network problem when we don't get EnquireLink response. In this situation I'm just trying to reconnect the client.

Is it sufficient for you to get evDisconnect event fired?
by alt
Fri Nov 21, 2008 2:39 pm
Forum: ALT.SMS.SmppClient
Topic: Fatal Exception using SmppClient in ASP.NET web app
Replies: 2
Views: 8764

try catch added in the version 2.5.4.

Thank you for you suggestion.
by alt
Fri Nov 21, 2008 2:37 pm
Forum: ALT.SMS.SmppClient
Topic: How to post a binary message
Replies: 10
Views: 24179

Hello,

Please try with version 2.5.4.

byte[] bytes;
byte[] header_bytes;

sm.UserDataPdu = bytes;
sm.UserDataPdu.Headers = header_bytes;
by alt
Tue Nov 18, 2008 6:52 pm
Forum: ALT.SMS.SmppClient
Topic: OnEnquireLink and SMPPCLIENT_RCVTIMEOUT
Replies: 6
Views: 16765

EnquireLink waits response exactly a number of msec defined in Timeout property of the SmppClient class. evEnquireLink fires when SMSC sends EnquireLink request. If you use internal enquire link then in case when EnquireLink timeout smpp client disconnects. You need to attach a evDisconnect event an...
by alt
Tue Nov 18, 2008 6:08 pm
Forum: ALT.SMS.SmppClient
Topic: Client Status stays Closed for some time after Connect()
Replies: 2
Views: 8826

Hi, koltaviy.

Please try to download last version. I made some fixes in Connect method.
Now it should return correct status.

Alexey
by alt
Thu Oct 30, 2008 7:09 pm
Forum: ALT.SMS.SmppClient
Topic: ValidityPeriod property format
Replies: 5
Views: 17006

please download last version.
by alt
Wed Oct 22, 2008 9:58 am
Forum: ALT.SMS.SmppClient
Topic: Enquire Link Interval
Replies: 4
Views: 14178

I've rewritten EnquireLink sending procedure.
Please try to download last version.
by alt
Fri Oct 17, 2008 6:13 pm
Forum: ALT.SMS.SmppClient
Topic: BindTransceiverResp with status SMPPCLIENT_RCVTIMEOUT
Replies: 4
Views: 14585

Also you can trace System.Net. In the file SmppClientDemo.exe.config add following xml inside <configuration></configuration> <system.diagnostics> <sources> <source name="System.Net"> <listeners> <add name="System.Net"/> </listeners> </source> <source name="System.Net.Sockets"> <listeners> <add name...
by alt
Fri Oct 17, 2008 12:39 pm
Forum: ALT.SMS.SmppClient
Topic: BindTransceiverResp with status SMPPCLIENT_RCVTIMEOUT
Replies: 4
Views: 14585

Hi Nick,

It is difficult to suggest something here. It looks like server does not send a response. If it is possible, I would test your SMSC.

Regards,
Alexey
by alt
Fri Oct 17, 2008 12:16 pm
Forum: ALT.SMS.SmppClient
Topic: Enquire Link Interval
Replies: 4
Views: 14178

You can try to set property
client.EnquireInterval = 55;
by alt
Fri Oct 10, 2008 6:11 am
Forum: ALT.SMS.SmppClient
Topic: WAP Push
Replies: 1
Views: 8704

WAP Push

Version 2.5 presents ability to send WAP Push message. http://www.inetlab.ru/Download/SmppClient.zip WAP Push messages are widely used for pushing polyphonic ringtones and wallpaper images to mobile phones. Example of usage: SubmitSm[] packets = client.PrepareWapPush( 0x90, byte.Parse(tbSrcAdrTON.Te...
by alt
Fri Oct 10, 2008 5:49 am
Forum: ALT.SMS.SmppClient
Topic: I want to get sms data from smsc...
Replies: 4
Views: 12831

Sample application has this example client.evDataSm +=new ALT.SMS.SmppClient.DataSmEventHandler(client_evDataSm); private void client_evDataSm(object sender, DataSm data) { string messageText = SmppClient.GetMessageText(data.UserDataPdu.ShortMessage,data.DataCoding); AddToLog("DataSm received : Refe...
by alt
Fri Oct 10, 2008 5:45 am
Forum: ALT.SMS.SmppClient
Topic: I got Error when send sms over the Default 140 character...
Replies: 8
Views: 18702

Could you try last version with code client.SubmitText(SubmitMode.ShortMessage, byte.Parse("0"), byte.Parse("1"), "120", byte.Parse("0"), byte.Parse("1"), to, DataCodings.Default, body); or client.SubmitText(SubmitMode.Payload, byte.Parse("0"), byte.Parse("1"), "120", byte.Parse("0"), byte.Parse("1"...
by alt
Thu Oct 09, 2008 4:11 pm
Forum: ALT.SMS.SmppClient
Topic: >130 chars error
Replies: 1
Views: 7928

sm.ShortMessage can not contain more than 254 bytes

Please try method SubmitText. This method supports concatenated messages.
by alt
Thu Oct 09, 2008 3:53 pm
Forum: ALT.SMS.SmppClient
Topic: I want to get sms data from smsc...
Replies: 4
Views: 12831

You can try to use events evDataSm or evDataSmComplete.