Search found 987 matches

by alt
Tue Aug 04, 2009 5:46 pm
Forum: ALT.SMS.SmppClient
Topic: Incorrect handling of Generic_nack
Replies: 3
Views: 10280

Thank you for your report. I'll fix it soon.
by alt
Tue Aug 04, 2009 5:44 pm
Forum: ALT.SMS.SmppClient
Topic: Receiving Message from SMSC
Replies: 25
Views: 50772

My library tries to find user data header in the short_message and it reports "Invalid DELIVER_SM packet" when UDH cannot be found. It is not problem in your code. This problem comes from SMSC side. Please ask them why they send ems_class = 0x40 (which means UDHI is enabled), but short_message field...
by alt
Tue Aug 04, 2009 5:36 pm
Forum: ALT.SMS.SmppClient
Topic: Receiving long messages
Replies: 3
Views: 9803

Dear araxno, SmppClient Demo has example method where concatenated messages are processed private void client_evDeliverSm(object sender, DeliverSm data) { if (data.SegmentNumber > 0) { AddMessageSegmentToCollector(data); string messageText = SmppClient.GetMessageText(data.UserDataPdu.ShortMessage, d...
by alt
Tue Aug 04, 2009 5:09 pm
Forum: ALT.SMS.SmppClient
Topic: Receiving Message from SMSC
Replies: 25
Views: 50772

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: 50772

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: 50772

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: 12065

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: 10895

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: 8572

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: 6941

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: 10382

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: 8385

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: 8923

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: 8846

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: 14772

I'm promised to get obfuscator update in 1-2 weeks.