Search found 85 matches

by developerlearn999
Thu Jul 04, 2019 8:25 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: server_evClientSubmitSm and concat message
Replies: 3
Views: 6981

server_evClientSubmitSm and concat message

on server_evClientSubmitSm i get message that is 3 parts for example.
and for each ine i set
data.Response.MessageId = getMessaCounter();
the client i tested (with SmppClientDemo) get back only the first part - why is that? how can i fix this?
by developerlearn999
Thu Jul 04, 2019 7:34 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SMS.ForDeliver in a bulk
Replies: 6
Views: 10033

Re: SMS.ForDeliver in a bulk

how do i do it?
i tried and got stuck
by developerlearn999
Wed Jul 03, 2019 3:12 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SMS.ForDeliver in a bulk
Replies: 6
Views: 10033

SMS.ForDeliver in a bulk

i need to send to some customers all parts of the Delivered sms, and for some not. for the ones which i need to send all parts, is there another way except looping through this and sending all 1 bulk? foreach (string internalId in internalIds) { var dlrBuilder = SMS.ForDeliver()............ ...........
by developerlearn999
Mon Jun 24, 2019 8:25 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: How to set SequenceNumber?
Replies: 9
Views: 13568

Re: How to set SequenceNumber?

in this approche you submit not 1 block of 100 but rather each message in a task, and this is much slower (i tested it, this is why i moved to the submitting of a list
https://docs.inetlab.com/smpp/v2/articl ... s-possible
by developerlearn999
Sun Jun 23, 2019 5:18 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: How to set SequenceNumber?
Replies: 9
Views: 13568

Re: How to set SequenceNumber?

1. i do submitsm of 100 messages in 1 list for faster sending
2. since i do#1, some of the DelieverSm recievd faster then i finish to parse the messageid
by developerlearn999
Sun Jun 23, 2019 4:32 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: How to set SequenceNumber?
Replies: 9
Views: 13568

Re: How to set SequenceNumber?

in the examples i saw i thought i can match by using the Sequence from the SubmitSm and DeliverSm by setting them on my own (i want to have some id that i can match when i get the DeliverSm, since DeliverSm is incoming very fast before i finish to parse the bulk of 100 or more sms that i send at once)
by developerlearn999
Sun Jun 23, 2019 1:11 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: How to set SequenceNumber?
Replies: 9
Views: 13568

Re: How to set SequenceNumber?

i tested it and the sequence looks when sending.
where i get the DeliverSm i see like the sequence i sent was ignored(?)
or should i look some where else in the response?
ee in image:
https://pasteboard.co/IkKogh1.png
by developerlearn999
Fri Jun 21, 2019 8:49 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: 160 chars bug
Replies: 3
Views: 7319

160 chars bug

when i send from client to server next chars there is some bug :
159-> server get 159
160 -> server get 159
161->server get 161
there is some bug with sending 160 chars...
by developerlearn999
Fri Jun 21, 2019 8:48 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: How to set SequenceNumber?
Replies: 9
Views: 13568

Re: How to set SequenceNumber?

Hi thanks for the answer.
in the integration page i don't see ifo about this.
by developerlearn999
Thu Jun 20, 2019 9:38 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: How to set SequenceNumber?
Replies: 9
Views: 13568

How to set SequenceNumber?

i try to use from the code example this line .Set(delegate(SubmitSm sm) { sm.Sequence = _client.SequenceGenerator.NextSequenceNumber();}) the error is Severity Code Description Project File Line Suppression State Error CS1061 'SubmitSm' does not contain a definition for 'Sequence' and no accessible ...