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 ...
Search found 44 matches
- Tue Jan 26, 2016 2:18 pm
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Client connection failed exception
- Replies: 0
- Views: 36682
- 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: 18001
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.
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.
- Wed Jan 13, 2016 7:52 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Out of memory error
- Replies: 6
- Views: 43876
Re: Out of memory error
Please send me the latest version. I've sent to you my license by email
- Fri Jan 08, 2016 4:51 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Out of memory error
- Replies: 6
- Views: 43876
Re: Out of memory error
Dear Alt,
Which version I should use?
Which version I should use?
- Mon Dec 28, 2015 4:42 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Out of memory error
- Replies: 6
- Views: 43876
Re: Out of memory error
Dear alt,
I'm using version 1.1.3.2
I'm using version 1.1.3.2
- Fri Dec 25, 2015 12:05 pm
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Out of memory error
- Replies: 6
- Views: 43876
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 ...
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 ...
- Fri Mar 15, 2013 5:47 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Network initiated USSD
- Replies: 5
- Views: 43567
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 ...
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 ...
- Thu Mar 14, 2013 1:51 pm
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Network initiated USSD
- Replies: 5
- Views: 43567
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 ...
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 ...
- Thu Aug 30, 2012 4:43 am
- Forum: Inetlab.SMPP v1.0
- Topic: SubmitSM problem
- Replies: 2
- Views: 105892
Re: SubmitSM problem
Dear Alt,
Please reply.
Please reply.
- 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: 128813
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));
Please try to use:
List<SubmitSmResp> submitSM = cSmpp[0].Submit(SMS.ForSubmit()
.From(srcAdr, srcTon, srcNpi)
.To(dstAdr, dstTon, dstNpi)
.Coding(coding)
.Text(tbSend));
- Tue Aug 28, 2012 6:39 am
- Forum: Inetlab.SMPP v1.0
- Topic: SubmitSM problem
- Replies: 2
- Views: 105892
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 ...
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 ...
- Fri Aug 24, 2012 12:14 pm
- Forum: Inetlab.SMPP v1.0
- Topic: Tab character in the message
- Replies: 7
- Views: 221505
Re: Tab character in the message
Dear Alt,
Thank you very much.
Thank you very much.
- Fri Aug 24, 2012 7:54 am
- Forum: Inetlab.SMPP v1.0
- Topic: Tab character in the message
- Replies: 7
- Views: 221505
Re: Tab character in the message
Dear Alt,
I'm trying with DataCoding.Latin1, but results are the same.
I'm trying with DataCoding.Latin1, but results are the same.
- Fri Aug 24, 2012 7:51 am
- Forum: Inetlab.SMPP v1.0
- Topic: Tab character in the message
- Replies: 7
- Views: 221505
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"/>
Thank you for your reply.
I'm using Default data coding:
<add key="SMPP_DATA_CODING" value="Default"/>
- Fri Aug 24, 2012 6:21 am
- Forum: Inetlab.SMPP v1.0
- Topic: Tab character in the message
- Replies: 7
- Views: 221505
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.
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.