Search found 15 matches

by AG70
Mon Nov 29, 2021 4:12 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: How to send a message from Sever to Client event _client_evDeliverSm with MessageTypes = Default (0)
Replies: 2
Views: 23498

How to send a message from Sever to Client event _client_evDeliverSm with MessageTypes = Default (0)

Hi, How to send a message from Sever to Client event _client_evDeliverSm with MessageTypes = Default (0)? When using the example code below is is for Receipt which is MessageTypes = SMSCDeliveryReceipt (4) but I can't find how to send with Default (0) var dlrBuilder = SMS.ForDeliver() .From(source) ...
by AG70
Tue Aug 17, 2021 12:52 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Generate header for concatenated messages?
Replies: 1
Views: 15317

Re: Generate header for concatenated messages?

Hi,

I have manged to solve the problem.

Thanks,
AG
by AG70
Tue Aug 17, 2021 9:17 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Generate header for concatenated messages?
Replies: 1
Views: 15317

Generate header for concatenated messages?

Hi, My SMSC is devided into two parts. SMSC_Server to receive SMS messages from SMSC Client and SMSC Transmitter to send the SMS messages to the operator. For example SMSC_Server receives and parse long message with UDH's 050003020401, 050003020402, 050003020403, 050003020404 Now my SMSC_Transmiiter...
by AG70
Fri Aug 13, 2021 1:40 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: evConnected event?
Replies: 2
Views: 18481

Re: evConnected event?

Hi,

Thanks for your help.

Asaf
by AG70
Tue Aug 10, 2021 1:53 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: evConnected event?
Replies: 2
Views: 18481

evConnected event?

Hi,

So now when evConnected event has been removed from version 2.9.0 how to know if the client is Connected (for the first time) or Recontacted at evRecoverySucceeded event?

Thanks,
AG
by AG70
Mon Mar 08, 2021 11:37 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SMPP Server return custom CommandStatus?
Replies: 2
Views: 4393

Re: SMPP Server return custom CommandStatus?

Thanks you very much for your support.
by AG70
Sun Mar 07, 2021 5:19 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: SMPP Server return custom CommandStatus?
Replies: 2
Views: 4393

SMPP Server return custom CommandStatus?

Hi,

How can I return a custom CommandStatus for data.Response.Header.Status starting from address 0x00000400 (or decimal from 1024) please?

Thanks,
AG
by AG70
Thu Feb 18, 2021 6:49 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Unable to return CommandStatus.ESME_RINVSYSID with SMPP Server
Replies: 2
Views: 4158

Unable to return CommandStatus.ESME_RINVSYSID with SMPP Server

Hello, I am using version 2.9.4 on private async void _server_evClientBind(object sender, SmppServerClient client, Inetlab.SMPP.PDU.Bind data) I am trying to return CommandStatus.ESME_RINVSYSID but still SMPP Server continue with Bind instead of stopping the bind and return ESME_RINVSYSID to client....
by AG70
Wed Apr 29, 2020 6:31 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Get the full PDU before sending a message?
Replies: 4
Views: 6627

Re: Get the full PDU before sending a message?

Hi,

Many Thanks for your help.

AG
by AG70
Wed Apr 29, 2020 2:51 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Get the full PDU before sending a message?
Replies: 4
Views: 6627

Re: Get the full PDU before sending a message?

Hi,
Thanks for your help.
I am looking for the full PDU like for example UCS2 PDU: 0000003F00000004000000000000000C000101393732353036333838383633000101393732353432303038303830000000000000000008000605D005D005D0
by AG70
Wed Apr 29, 2020 1:04 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Get the full PDU before sending a message?
Replies: 4
Views: 6627

Get the full PDU before sending a message?

Hi,

How to get the full Submit PDU before

Code: Select all

_client.SubmitAsync(builder)
or after is at

Code: Select all

IList<SubmitSmResp> resp
Thanks,
AG
by AG70
Wed May 22, 2013 7:19 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Adding a UDH?
Replies: 2
Views: 24954

Re: Adding a UDH?

Hello,

Problem solved, I forgot to set EsmClass to 0x40 :)

Kind Regards,
Asaf
by AG70
Wed May 22, 2013 4:25 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: Adding a UDH?
Replies: 2
Views: 24954

Adding a UDH?

Hello, From client code example at SubmitBatchMessages method my modified code look like this: for (int i = 0; i < count; i++) { //05 00 03 AB 02 02 byte[] aaa = new byte[6]; aaa[0] = 0x05; aaa[1] = 0x00; aaa[2] = 0x03; aaa[3] = 0xAB; aaa[4] = 0x02; aaa[5] = 0x02; UserDataHeader udh = new UserDataHe...