Search found 984 matches

by alt
Tue Aug 04, 2009 5:09 pm
Forum: ALT.SMS.SmppClient
Topic: Receiving Message from SMSC
Replies: 25
Views: 50620

Both DELIVER_SM packets have enabled UDHI (User-Data-Header-Indicator)
but actually short_message field does not contain user data header.

How did you receive such messages?
by alt
Tue Aug 04, 2009 7:32 am
Forum: ALT.SMS.SmppClient
Topic: Receiving Message from SMSC
Replies: 25
Views: 50620

There are only "Sending Data:" lines, but I need "Received Data:" to analyze invalid packet.
by alt
Mon Aug 03, 2009 8:29 pm
Forum: ALT.SMS.SmppClient
Topic: Receiving Message from SMSC
Replies: 25
Views: 50620

Hi Raksa, Sorry, I'm so overloaded this time. But I try to solve your problem. I need "Received Data" from your log. Possible you disabled evReceiveData event in your code private void client_evReceiveData(object sender, byte[] data) { AddToLog("Received Data: "+ByteArrayToHexString(data)); } Can yo...
by alt
Sat Jul 18, 2009 3:39 pm
Forum: ALT.SMS.SmppClient
Topic: GSM 7bit alphabet and message characters count
Replies: 2
Views: 12037

I think you are right.
I've improved PrepareSubmit method in version 2.6.2
Please test it.
by alt
Sat Jul 18, 2009 3:35 pm
Forum: ALT.SMS.SmppClient
Topic: More serializable types required
Replies: 3
Views: 10870

fixed in version 2.6.2
by alt
Sat Jul 18, 2009 11:26 am
Forum: ALT.SMS.SmppClient
Topic: Problem when binding
Replies: 1
Views: 8556

I think SMSC allow you to connect only with one session.
Sometimes when you have some network problems SmppClient can be disconnected, but SMSC still believe that you are connected.
You have to wait 2-3 minutes when SMSC drops your session by timeout.
by alt
Sat Jul 18, 2009 10:29 am
Forum: ALT.SMS.SmppClient
Topic: using this library for ussd
Replies: 1
Views: 6922

Hi,

Can you show us any log information?
by alt
Sat Jul 18, 2009 10:25 am
Forum: ALT.SMS.SmppClient
Topic: concatenated short message
Replies: 3
Views: 10353

You need to use SubmitMode.Payload Example: client.SubmitText( SubmitMode.Payload, byte.Parse(tbSrcAdrTON.Text), byte.Parse(tbSrcAdrNPI.Text), tbSrcAdr.Text, byte.Parse(tbDestAdrTON.Text), byte.Parse(tbDestAdrNPI.Text), tbDestAdr.Text, coding, tbSend.Text);
by alt
Sun May 03, 2009 9:24 am
Forum: ALT.SMS.SmppClient
Topic: How to configure Address range parameter
Replies: 2
Views: 8359

Did you try without AddressRange?

Please make sure that you attached to the event
client.evDeliverSm +=new ALT.SMS.SmppClient.DeliverSmEventHandler(client_evDeliverSm);
by alt
Sat Mar 28, 2009 11:59 am
Forum: ALT.SMS.SmppClient
Topic: Unable 2 connect 2 server host "122.169.193.83"
Replies: 2
Views: 8899

please try with method

Code: Select all

public bool Connect(IPEndPoint endPoint); 
sometimes Dns.GetHostEntry returns No such host is known.
by alt
Sat Mar 28, 2009 11:51 am
Forum: ALT.SMS.SmppClient
Topic: CANCEL_SM
Replies: 2
Views: 8819

Code: Select all

SubmitSm sm =  ... ;

SubmitSmResp resp = client.Submit(sm);

CancelSmResp c_resp = client.Cancel(sm.ServiceType, resp.MessageId, sm.SrcTon, sm.SrcNpi, sm.SrcAddr, sm.DestTon, sm.DestNpi, sm.DestAddr);
by alt
Tue Mar 24, 2009 5:50 pm
Forum: ALT.SMS.SmppClient
Topic: x64 platform
Replies: 6
Views: 14734

I'm promised to get obfuscator update in 1-2 weeks.
by alt
Mon Mar 23, 2009 12:56 pm
Forum: ALT.SMS.SmppClient
Topic: x64 platform
Replies: 6
Views: 14734

This is obfuscator problem. I'm trying to solve it.
The only solution for now is to use source code license.
by alt
Thu Mar 05, 2009 11:00 am
Forum: ALT.SMS.SmppClient
Topic: Flash sms
Replies: 2
Views: 8485

code is the same as for normal Submit. You need to specify one of the data codings DefaultFlashSMS or UnicodeFlashSMS. SubmitSm[] req = client.PrepareSubmit( mode, byte.Parse(tbSrcAdrTON.Text), byte.Parse(tbSrcAdrNPI.Text), tbSrcAdr.Text, byte.Parse(tbDestAdrTON.Text), byte.Parse(tbDestAdrNPI.Text),...
by alt
Thu Mar 05, 2009 10:44 am
Forum: ALT.SMS.SmppClient
Topic: System.ObjectDisposedException
Replies: 1
Views: 7938

Please try last version 2.6.1.