Thank you so much
it's working properly .....
Search found 9 matches
- Thu Jun 09, 2016 6:46 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Multy Part message with with UserDataHeader and ESMClass
- Replies: 5
- Views: 24815
- Wed Jun 08, 2016 5:35 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Multy Part message with with UserDataHeader and ESMClass
- Replies: 5
- Views: 24815
Re: Multy Part message with with UserDataHeader and ESMClass
we are use long messages send as per your given code from last one year and it's properly working
but we are going to make our company to aggregator so we require SMPP Server and SMPP client
but we are going to make our company to aggregator so we require SMPP Server and SMPP client
- Wed Jun 08, 2016 5:32 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Multy Part message with with UserDataHeader and ESMClass
- Replies: 5
- Views: 24815
Re: Multy Part message with with UserDataHeader and ESMClass
when our client connected with our smpp server at that time
We receive multi part message from smpp server
and than we message send to operator multi part in different Concatenated short messages
that's why we need Concatenated short messages to send
We receive multi part message from smpp server
and than we message send to operator multi part in different Concatenated short messages
that's why we need Concatenated short messages to send
- Tue Jun 07, 2016 8:50 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Multy Part message with with UserDataHeader and ESMClass
- Replies: 5
- Views: 24815
Multy Part message with with UserDataHeader and ESMClass
We are try to send message with multi part and each message is in different row with total number of message , Part Number and reference Number
And we are use UserDataHeader and Esmclass as below code
clsSMS objSMS = (clsSMS)obj;
byte[] aaa = new byte[6];
aaa[0] = 0x05; // Field 1 (1 octet ...
And we are use UserDataHeader and Esmclass as below code
clsSMS objSMS = (clsSMS)obj;
byte[] aaa = new byte[6];
aaa[0] = 0x05; // Field 1 (1 octet ...
- Sat Jan 09, 2016 9:27 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: DeliverSm.Concatenation is null in long mesage
- Replies: 6
- Views: 28049
DeliverSm.Concatenation is null in long mesage
when we send long message as below method
if ((DataCodings)Enum.Parse(typeof(DataCodings), objSMS.messageType.ToString()) == DataCodings.Default)
_client.MapEncoding(DataCodings.Default, Encoding.Default);
//code for send multiple message asynchronously
byte[] b = Encoding.ASCII.GetBytes(ID ...
if ((DataCodings)Enum.Parse(typeof(DataCodings), objSMS.messageType.ToString()) == DataCodings.Default)
_client.MapEncoding(DataCodings.Default, Encoding.Default);
//code for send multiple message asynchronously
byte[] b = Encoding.ASCII.GetBytes(ID ...
- Mon Dec 14, 2015 1:32 pm
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Accessing Optional Parameter in evDeliverSm
- Replies: 3
- Views: 19322
Re: Accessing Optional Parameter in evDeliverSm
can we use Optional Parameter in submit Complete event
- Mon Dec 14, 2015 11:54 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Multy Part message asynchronously with sequence Number
- Replies: 3
- Views: 18546
Re: Multy Part message asynchronously with sequence Number
as you suggest we create two table
sms_messages and sms_message_parts
but how we can find sms_message.id from submitcomplate event and map with sms_message_parts
sms_messages and sms_message_parts
but how we can find sms_message.id from submitcomplate event and map with sms_message_parts
- Mon Dec 14, 2015 9:04 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: client.SubmitAsync vs client.Submit
- Replies: 9
- Views: 39245
Re: client.SubmitAsync vs client.Submit
how can i manage database in Async method
when i use sequence number then problem Getting in multy part message
how can i manage please suggest me
when i use sequence number then problem Getting in multy part message
how can i manage please suggest me
- Wed Dec 09, 2015 9:36 am
- Forum: Inetlab.SMPP v1.1 & v1.2
- Topic: Multy Part message asynchronously with sequence Number
- Replies: 3
- Views: 18546
Multy Part message asynchronously with sequence Number
i send message with below code
//code for send multiple message asynchronously
ISubmitSmBuilder builder = SMS.ForSubmit()
.Text(objSMS.Message)
.From(SourcePrefix + (int)objSMS.messageType, (byte)SourceTon, (byte)SourceNPI)
.To(DestinationPrefix + objSMS.MobileNo, (byte)DestinationTon, (byte ...
//code for send multiple message asynchronously
ISubmitSmBuilder builder = SMS.ForSubmit()
.Text(objSMS.Message)
.From(SourcePrefix + (int)objSMS.messageType, (byte)SourceTon, (byte)SourceNPI)
.To(DestinationPrefix + objSMS.MobileNo, (byte)DestinationTon, (byte ...