Search found 17 matches
- Wed May 05, 2021 6:25 am
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Multiple Connectivity To Servers
- Replies: 5
- Views: 71819
Re: Multiple Connectivity To Servers
Hi, your vendor would have provided multiple IP address as one would be primary & the other secondary to be used in case you are not able to connect to the first one. Otherwise I assume it will not be logical to connect with one Client to multiple IP's.
They told me that we could connect to ...
- Mon May 03, 2021 11:40 am
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: SMPP Server client.WorkerThreads parameter is missing!
- Replies: 4
- Views: 27214
Re: SMPP Server client.WorkerThreads parameter is missing!
Email sent with details. I have not enabled the default logging. I have custom logs implemented using NLog
- Mon May 03, 2021 10:40 am
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: SMPP Server client.WorkerThreads parameter is missing!
- Replies: 4
- Views: 27214
Re: SMPP Server client.WorkerThreads parameter is missing!
These links has helped me complete the migration to 2.9 version of the DLL. I have performed multiple tests in the local development machines and all are working as expected. And when rolled out to the production server, which has more than 60+ consecutive binds that are hitting the servers. I could ...
- Mon Apr 26, 2021 11:55 am
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: SMPP Server client.WorkerThreads parameter is missing!
- Replies: 4
- Views: 27214
SMPP Server client.WorkerThreads parameter is missing!
Hello,
I have purchased the new Inetlab version and in the process of migration from 1.* to 2.9 now. There are couple of options/parameters that are gone missing.
client.WorkerThreads - Is this replaced and how can I configure this?
Also for SmppServerClient.DeliverAsync() I was required to ...
I have purchased the new Inetlab version and in the process of migration from 1.* to 2.9 now. There are couple of options/parameters that are gone missing.
client.WorkerThreads - Is this replaced and how can I configure this?
Also for SmppServerClient.DeliverAsync() I was required to ...
- Mon Apr 26, 2021 11:44 am
- Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
- Topic: Multiple Connectivity To Servers
- Replies: 5
- Views: 71819
Re: Multiple Connectivity To Servers
Hi, your vendor would have provided multiple IP address as one would be primary & the other secondary to be used in case you are not able to connect to the first one. Otherwise I assume it will not be logical to connect with one Client to multiple IP's.
- Tue May 29, 2018 6:31 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: DeliverSm failing during deserializing
- Replies: 2
- Views: 106720
Re: DeliverSm failing during deserializing
I am also facing the similar issue when trying to deserialize. Am I doing something wrong in the below code?
string sPDU = "0000004200000005000000000000000a4E4F52455000010139373135303030303030303000050054455354000400000000000003001369643A313233343536373839";
byte[] message_payload_bytes = System ...
string sPDU = "0000004200000005000000000000000a4E4F52455000010139373135303030303030303000050054455354000400000000000003001369643A313233343536373839";
byte[] message_payload_bytes = System ...
- Mon Oct 23, 2017 1:45 pm
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Multilength submission returns less number of SubmitSmResp
- Replies: 0
- Views: 78698
Multilength submission returns less number of SubmitSmResp
Hi,
Sometimes when we submit long messages (> 1 length) using the below method, we often get less number SubmitSmResp than required. How can this be solved?
ISubmitSmBuilder smsBuilder = SMS.ForSubmit()
.From(QueueData.RouteSenderName, this._smppRoute.SourceTon, this._smppRoute.SourceNpi)
.To ...
Sometimes when we submit long messages (> 1 length) using the below method, we often get less number SubmitSmResp than required. How can this be solved?
ISubmitSmBuilder smsBuilder = SMS.ForSubmit()
.From(QueueData.RouteSenderName, this._smppRoute.SourceTon, this._smppRoute.SourceNpi)
.To ...
- Mon Feb 20, 2017 1:06 pm
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: TLV Parameters getting changed while submitting
- Replies: 5
- Views: 36074
Re: TLV Parameters getting changed while submitting
string "002760A9" in ASCII encoding is 0x3030323736304139
library didn't change the value. it has converted the string in byte array.
Our SMSC has sent us the pcap file which they had generated from their end, to show that the additional parameter value has to be in the same format.
Basically ...
library didn't change the value. it has converted the string in byte array.
Our SMSC has sent us the pcap file which they had generated from their end, to show that the additional parameter value has to be in the same format.
Basically ...
- Sun Feb 12, 2017 11:58 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: TLV Parameters getting changed while submitting
- Replies: 5
- Views: 36074
Re: TLV Parameters getting changed while submitting
I want to submit the TLV parameter values as String.
- Mon Feb 06, 2017 5:34 pm
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: TLV Parameters getting changed while submitting
- Replies: 5
- Views: 36074
TLV Parameters getting changed while submitting
Hi,
I am using the below code to add TLV parameters during the submission.
IList<SubmitSmResp> resp = _client.Submit(SMS.ForSubmit()
.From(srcAdr, srcTon, srcNpi)
.To(dstAdr, dstTon, dstNpi)
.Coding(coding)
.Text(tbSend.Text)
.ExpireIn(TimeSpan.FromDays(2))
.DeliveryReceipt ...
I am using the below code to add TLV parameters during the submission.
IList<SubmitSmResp> resp = _client.Submit(SMS.ForSubmit()
.From(srcAdr, srcTon, srcNpi)
.To(dstAdr, dstTon, dstNpi)
.Coding(coding)
.Text(tbSend.Text)
.ExpireIn(TimeSpan.FromDays(2))
.DeliveryReceipt ...
- Tue Oct 22, 2013 7:23 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Delivery Report works with some providers & not with others
- Replies: 3
- Views: 26206
Re: Delivery Report works with some providers & not with oth
The issue is solved now. It was a account configuration error from the Service provider side... 
The first posted code will work perfectly fine....

The first posted code will work perfectly fine....
- Mon Oct 21, 2013 7:42 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Delivery Report works with some providers & not with others
- Replies: 3
- Views: 26206
Re: Delivery Report works with some providers & not with oth
Infact i am still waiting for a reply. Not sure why this question went un-noticed
But i am assuming that i've doing something wrong while setting the delivery receipt request....

But i am assuming that i've doing something wrong while setting the delivery receipt request....
- Sun Sep 22, 2013 11:16 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Delivery Report works with some providers & not with others
- Replies: 3
- Views: 26206
Delivery Report works with some providers & not with others
Hi,
I am testing the v1.1 dll. With one of the service providers the delivery report works but with another provider it doesnt work. When enquired with the provider they said that we are not setting the 'registered_delivery' flag of the 'submit_sm' SMPP PDU to 1. I am using the below code for ...
I am testing the v1.1 dll. With one of the service providers the delivery report works but with another provider it doesnt work. When enquired with the provider they said that we are not setting the 'registered_delivery' flag of the 'submit_sm' SMPP PDU to 1. I am using the below code for ...
- Thu Mar 08, 2012 7:57 am
- Forum: Inetlab.SMPP v1.0
- Topic: Long Message Receiving Issue - SMPP Server
- Replies: 1
- Views: 16877
Long Message Receiving Issue - SMPP Server
I am using both SMPP Client & SMPP server & i have the below scenario,
Using Inetlab SMPP client I am submitting a long message using SubmitMode.ShortMessage. From the SMPP server side i am receiving each portion of the message as seperate _smppServer_evClientSubmitSm events. Below is the ...
Using Inetlab SMPP client I am submitting a long message using SubmitMode.ShortMessage. From the SMPP server side i am receiving each portion of the message as seperate _smppServer_evClientSubmitSm events. Below is the ...
- Tue Jan 31, 2012 6:55 am
- Forum: Inetlab.SMPP v1.0
- Topic: long message
- Replies: 9
- Views: 72402
helper methods for sending concatenated DeliverSm messages
HI alt,
I am testing a situation where in which my smpp server acts as SMSC and i want to send Long Messages to the clients which are like 400 characters or more. At the moment the following code throws an error when the message length is more.
data.UserDataPdu.ShortMessage = _client ...
I am testing a situation where in which my smpp server acts as SMSC and i want to send Long Messages to the clients which are like 400 characters or more. At the moment the following code throws an error when the message length is more.
data.UserDataPdu.ShortMessage = _client ...