Search found 9 matches

by ashish
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: 11745

Re: Multy Part message with with UserDataHeader and ESMClass

Thank you so much

it's working properly .....
by ashish
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: 11745

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
by ashish
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: 11745

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
by ashish
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: 11745

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): Length ...
by ashish
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: 12639

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); ISubmi...
by ashish
Mon Dec 14, 2015 1:32 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Accessing Optional Parameter in evDeliverSm
Replies: 3
Views: 9583

Re: Accessing Optional Parameter in evDeliverSm

can we use Optional Parameter in submit Complete event
by ashish
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: 8585

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
by ashish
Mon Dec 14, 2015 9:04 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: client.SubmitAsync vs client.Submit
Replies: 9
Views: 16490

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
by ashish
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: 8585

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)Destina...