Search found 44 matches

by prog019
Tue Jan 26, 2016 2:18 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Client connection failed exception
Replies: 0
Views: 17910

Client connection failed exception

Dears, Sometimes I'm getting following exception in my logs: ERROR: 50: (SmppServer) Client connection failed, Exception: System.ObjectDisposedException: Safe handle has been closed at System.Runtime.InteropServices.SafeHandle.DangerousAddRef(Boolean& success) at Microsoft.Win32.Win32Native.SetEvent...
by prog019
Mon Jan 25, 2016 2:04 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Zero Window in case of huge traffic
Replies: 1
Views: 6526

Zero Window in case of huge traffic

Dears,

Now when I'm receiving huge count of requests( for example 100 TpS), I'm returning Zero Window to the client, which means (DON'T send again)

Sample response:

[TCP ZeroWindow] SMPP Submit_sm - resp: "Ok"

Please help to solve the problem.
by prog019
Wed Jan 13, 2016 7:52 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Out of memory error
Replies: 6
Views: 14762

Re: Out of memory error

Please send me the latest version. I've sent to you my license by email
by prog019
Fri Jan 08, 2016 4:51 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Out of memory error
Replies: 6
Views: 14762

Re: Out of memory error

Dear Alt,

Which version I should use?
by prog019
Mon Dec 28, 2015 4:42 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Out of memory error
Replies: 6
Views: 14762

Re: Out of memory error

Dear alt,

I'm using version 1.1.3.2
by prog019
Fri Dec 25, 2015 12:05 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Out of memory error
Replies: 6
Views: 14762

Out of memory error

Dears, I'm using this feature-rich lib. But sometimes I'm getting following error in my logs: ERROR:4543: (SmppServerClient) Unhandled exception, Exception: System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown. at Inetlab.SMPP.Common.SmppBuffer..ctor(Stream stream)...
by prog019
Fri Mar 15, 2013 5:47 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Network initiated USSD
Replies: 5
Views: 15180

Re: Network initiated USSD

Dear Alt, In current time I can receive and reply request. But I can't send Network initiated request to the mobile. If I get in first part of user request 90, this means, than this is sample USSD reqiest, if I get 72: this is a answer for USSD menu. I have only this rules. What you think about this...
by prog019
Thu Mar 14, 2013 1:51 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Network initiated USSD
Replies: 5
Views: 15180

Network initiated USSD

Dears, I want to send network initiated USSD to the subscriber. But I'm getting in mobile normal SMS. My code: SubmitSm req = new SubmitSm(tbServiceType.Text, byte.Parse(tbSrcAdrTON.Text), byte.Parse(tbSrcAdrNPI.Text), tbSrcAdr.Text, byte.Parse(tbDestAdrTON.Text), byte.Parse(tbDestAdrNPI.Text), tbDe...
by prog019
Thu Aug 30, 2012 4:43 am
Forum: Inetlab.SMPP v1.0
Topic: SubmitSM problem
Replies: 2
Views: 25666

Re: SubmitSM problem

Dear Alt,

Please reply.
by prog019
Tue Aug 28, 2012 6:49 am
Forum: Inetlab.SMPP v1.0
Topic: 'Inetlab.SMPP.PDU.SubmitSm' does not contain a definition
Replies: 3
Views: 31735

Re: 'Inetlab.SMPP.PDU.SubmitSm' does not contain a definitio

Dear Mubarak,

Please try to use:

List<SubmitSmResp> submitSM = cSmpp[0].Submit(SMS.ForSubmit()
.From(srcAdr, srcTon, srcNpi)
.To(dstAdr, dstTon, dstNpi)
.Coding(coding)
.Text(tbSend));
by prog019
Tue Aug 28, 2012 6:39 am
Forum: Inetlab.SMPP v1.0
Topic: SubmitSM problem
Replies: 2
Views: 25666

SubmitSM problem

Dear Alt, I'm trying to use SubmitSm: SubmitSm req = new SubmitSm(null, srcAdrTON, tbSrcAdrNPI, srcAddr, tbDestAdrTON, tbDestAdrNPI, dstAddr); req.DataCoding = coding; req.ShortMessage = messageText; ...... I get exception "Object reference is null ..." and I found the problem: Dear Alt, In SubmitSM...
by prog019
Fri Aug 24, 2012 12:14 pm
Forum: Inetlab.SMPP v1.0
Topic: Tab character in the message
Replies: 7
Views: 50087

Re: Tab character in the message

Dear Alt,

Thank you very much.
by prog019
Fri Aug 24, 2012 7:54 am
Forum: Inetlab.SMPP v1.0
Topic: Tab character in the message
Replies: 7
Views: 50087

Re: Tab character in the message

Dear Alt,

I'm trying with DataCoding.Latin1, but results are the same.
by prog019
Fri Aug 24, 2012 7:51 am
Forum: Inetlab.SMPP v1.0
Topic: Tab character in the message
Replies: 7
Views: 50087

Re: Tab character in the message

Dear Alt,

Thank you for your reply.

I'm using Default data coding:

<add key="SMPP_DATA_CODING" value="Default"/>
by prog019
Fri Aug 24, 2012 6:21 am
Forum: Inetlab.SMPP v1.0
Topic: Tab character in the message
Replies: 7
Views: 50087

Re: Tab character in the message

Dear Alt,

I need to send messages with length more than 120 chars, and I'm can't use UCS2.

I was try to send in ASCII and UTF8, but the result is same.

client.MapEncoding(DataCodings.Default, Encoding.ASCII);

or

client.MapEncoding(DataCodings.Default, Encoding.UTF8);

Please reply.