Search found 15 matches
- Thu Jun 08, 2017 10:51 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Option to set WorkerThreads for SmppServerClient on Bind
- Replies: 0
- Views: 79448
Option to set WorkerThreads for SmppServerClient on Bind
The WorkerThreads property in SmppClientBase class works only if set during the evConnected event. In my case, for SmppServerClient , I wanted to set this during the Bind event since this is the time I get to know which account is binding to my server and what is the allowed TPS for that account ...
- Thu Jun 08, 2017 10:47 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Bug fix in SequenceGenerator
- Replies: 1
- Views: 80069
Bug fix in SequenceGenerator
I have fixed a bug in SequenceGenerator class. Please see below.
public uint NextSequenceNumber()
{
lock (_syncSequenceNumber)
{
//Changed 0x7FFFFFFF to int.MaxValue for easy representation only
if (_counter == int.MaxValue)
_counter = 0;
//Return from within the lock body as value may ...
public uint NextSequenceNumber()
{
lock (_syncSequenceNumber)
{
//Changed 0x7FFFFFFF to int.MaxValue for easy representation only
if (_counter == int.MaxValue)
_counter = 0;
//Return from within the lock body as value may ...
- Thu Jun 08, 2017 7:01 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Unable to edit and Build the code
- Replies: 2
- Views: 101630
Re: Unable to edit and Build the code
Yes I did the same.
- Thu Jun 01, 2017 1:47 pm
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Unable to edit and Build the code
- Replies: 2
- Views: 101630
Unable to edit and Build the code
Hi,
I've done some changes to the source code as per our requirements and want to build it but it fails as the reference to License is missing.
Can you help with this?
See attached image for reference.
Thanks
I've done some changes to the source code as per our requirements and want to build it but it fails as the reference to License is missing.
Can you help with this?
See attached image for reference.
Thanks
- Thu Jun 01, 2017 7:59 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: How to enable SendSpeedLimit in SmppServer
- Replies: 7
- Views: 212981
Re: How to enable SendSpeedLimit in SmppServer
Do check your rate limiting logic also. The problem I see in your code for both SendSpeedLimit and ReceiveSpeedLimit is that you're restricting PDUs from sending/receiving during a given time based on the gap between that PDU and the last PDU sent/received.
This shouldn't be always true. Take below ...
This shouldn't be always true. Take below ...
- Tue May 30, 2017 7:56 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: How to enable SendSpeedLimit in SmppServer
- Replies: 7
- Views: 212981
Re: How to enable SendSpeedLimit in SmppServer
Hi,
I believe there is a problem in ReceiveSpeedLimit property.
I have checked the source code and can see that the stopwatch is reset every time it is being accessed. This results in returning ESME_RTHROTTLED for every communication, even for Bind event.
Also, I do not know why would you need to ...
I believe there is a problem in ReceiveSpeedLimit property.
I have checked the source code and can see that the stopwatch is reset every time it is being accessed. This results in returning ESME_RTHROTTLED for every communication, even for Bind event.
Also, I do not know why would you need to ...
- Sun May 21, 2017 5:33 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Concatenated message over different binds
- Replies: 2
- Views: 105215
Re: Concatenated message over different binds
Hi,
Many thanks for this implementation.
I've send you a message regarding license purchase. Can you please check that and reply me.
Thanks
Many thanks for this implementation.
I've send you a message regarding license purchase. Can you please check that and reply me.
Thanks
- Thu May 18, 2017 5:44 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: How to enable SendSpeedLimit in SmppServer
- Replies: 7
- Views: 212981
Re: How to enable SendSpeedLimit in SmppServer
Hi alt,
How about implementing the same logic that is there within SmppClient?
On exceeding this limit, the server can return THROTTLING_ERROR.
How about implementing the same logic that is there within SmppClient?
On exceeding this limit, the server can return THROTTLING_ERROR.
- Mon May 15, 2017 8:50 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Concatenated message over different binds
- Replies: 2
- Views: 105215
Concatenated message over different binds
Hi,
One of my client is sending concatenated message over different binds and it seems to be acceptable across many SMSC providers.
My question is, how can I enable it using MessageComposer class? The constructor requires a SMPPClient object but in this situation, there will be multiple client ...
One of my client is sending concatenated message over different binds and it seems to be acceptable across many SMSC providers.
My question is, how can I enable it using MessageComposer class? The constructor requires a SMPPClient object but in this situation, there will be multiple client ...
- Tue Apr 11, 2017 8:16 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: How to enable SendSpeedLimit in SmppServer
- Replies: 7
- Views: 212981
How to enable SendSpeedLimit in SmppServer
Hi,
I'm writing a SmppReceiver app using the SmppServer class where multiple clients will connect to this server with 1 or more binds. I want to limit the number of messages that they can submit to my server per bind. How can I achieve this?
I know of a property 'SendSpeedLimit' in SmppClient ...
I'm writing a SmppReceiver app using the SmppServer class where multiple clients will connect to this server with 1 or more binds. I want to limit the number of messages that they can submit to my server per bind. How can I achieve this?
I know of a property 'SendSpeedLimit' in SmppClient ...
- Sun Apr 09, 2017 11:05 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Underscore in source address not working
- Replies: 1
- Views: 17214
Underscore in source address not working
I have a source address that includes _ (underscore). When I try to send SMS with this, the underscore gets converted into \021 (as sees in tcp dump)
Any thoughts on this?
Any thoughts on this?
- Wed Oct 26, 2016 10:51 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: resubmit message part on throttling
- Replies: 2
- Views: 21690
Re: resubmit message part on throttling
Hi mobilyws,
Did you find a way to resubmit failed part in case of throttling or any other error?
please share your workaround
thanks
Did you find a way to resubmit failed part in case of throttling or any other error?
please share your workaround
thanks
- Tue Aug 30, 2016 7:21 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: System.ObjectDisposedException
- Replies: 1
- Views: 16557
System.ObjectDisposedException
I'm getting the below exception randomly during application execution. I'm using the latest version "1.1.22.7" of Inetlab.SMPP library. Please help.
Application: SMSAppTest.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info ...
Application: SMSAppTest.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info ...
- Mon May 25, 2015 11:04 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Is sequence number unique across multiple binds and sessions
- Replies: 1
- Views: 15157
Is sequence number unique across multiple binds and sessions
Hi,
I want to know if the sequence number being generated while using SubmitAsync method is unique across multiple binds and sessions?
The application I'm creating will be having more than 50 SmppClient objects, all connected to different servers. Most of the time, many of these clients will be ...
I want to know if the sequence number being generated while using SubmitAsync method is unique across multiple binds and sessions?
The application I'm creating will be having more than 50 SmppClient objects, all connected to different servers. Most of the time, many of these clients will be ...
- Thu May 14, 2015 11:29 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: SMPP Trial limitations
- Replies: 1
- Views: 16299
SMPP Trial limitations
Hi,
I'm developing a new system for sending and receiving SMS using Inetlab's SMPP library.
Since I'm still in development phase, I have used the Trial version assuming it has all the functionalists but just a 30day validity period.
During my testing, I can see that when I try to push 100+ messages ...
I'm developing a new system for sending and receiving SMS using Inetlab's SMPP library.
Since I'm still in development phase, I have used the Trial version assuming it has all the functionalists but just a 30day validity period.
During my testing, I can see that when I try to push 100+ messages ...