Search found 12 matches

by htinnyo
Fri Aug 14, 2020 4:19 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: performance tunning
Replies: 0
Views: 14126

performance tunning

Dear What would you suggest as optimal values for the followings client.WorkerThreads = 10; Change receive or send buffer size for the TCP socket: client.ReceiveBufferSize = 32 * 1024 * 1024; client.SendBufferSize = 32 * 1024 * 1024; A larger buffer size might delay the recognition of connection dif...
by htinnyo
Thu Apr 30, 2020 12:16 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: response for evClientSubmitSm handler
Replies: 8
Views: 10910

Re: response for evClientSubmitSm handler

Do you see in wireshark that response was sent to the client? Yes, I see the dlr receive message was sent to client in wireshark, but I see in my error logs that the Response.Header.Status is RCVTIMEOUT. after a couple of thousands of RCVTIMEOUT. the library was not sending response anymore (not su...
by htinnyo
Thu Apr 30, 2020 3:58 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: response for evClientSubmitSm handler
Replies: 8
Views: 10910

Re: response for evClientSubmitSm handler

Hello, could you please help me. I am a subscriber. Thanks
by htinnyo
Wed Apr 29, 2020 4:06 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: response for evClientSubmitSm handler
Replies: 8
Views: 10910

Re: response for evClientSubmitSm handler

Thank you for response. In fact I do not want to disable Response. 1. I can see the response from tcpdump/wireshark but my client can submit but can not receive successful response from server. 2. my clients also can not receive inbound dlr receipt messages, server get RCVTIMEOUT error though I can ...
by htinnyo
Tue Apr 28, 2020 5:57 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: response for evClientSubmitSm handler
Replies: 8
Views: 10910

response for evClientSubmitSm handler

when does the library respond to client in evClientSubmitSmHandler.
what if the server failed to respond (confirmation) after client submit.

EDIT : because one of my client is not receiving confirmation after submit, but other clients are correctly receiving. please help
by htinnyo
Wed Apr 22, 2020 11:16 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: send dlr receipt to client
Replies: 1
Views: 4317

send dlr receipt to client

Hello, I am sending Delivery receipt using the following DeliverSmResp[] response = await serverClient.DeliverAsync( SMS.ForDeliver() .From(systemid) .To(destination) .Receipt(new Receipt { DoneDate = DateTime.Now, State = dlr, MessageId = req.clientMessageId, ErrorCode = "0", SubmitDate = DateTime....
by htinnyo
Tue Feb 18, 2020 10:01 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: character altered
Replies: 1
Views: 4305

character altered

I tried to send using other smpp client url to my inetlab smpp server. I found that text ABCD_CDEF has been altered to ABCD§CDEF.

Code: Select all

 string text = data.GetMessageText(serverClient.EncodingMapper);

anything to configure?
by htinnyo
Wed Feb 05, 2020 8:28 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: multiple connected SmppServerClient
Replies: 6
Views: 9770

Re: multiple connected SmppServerClient

Hi I have another issue another again.

Code: Select all

smppServerClient.RemoteEndPoint 
returns firewall IP address, anyway to get the oringinal ip of smpp client? Thanks in advance.
by htinnyo
Tue Feb 04, 2020 7:10 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: multiple connected SmppServerClient
Replies: 6
Views: 9770

Re: multiple connected SmppServerClient

ok I ended up using remote endpoint. I have another issue as the following Like in your sample code SmppServerSample.cs 1. client connect and bind 2. in bind even handler , server tried to send delivery messages that has not been delivered 3. but the client status is still Open not bound yet. 4. how...
by htinnyo
Tue Feb 04, 2020 12:17 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: multiple connected SmppServerClient
Replies: 6
Views: 9770

Re: multiple connected SmppServerClient

Thank you for your reply,I thought about it but the clients may have same IP address .remote ports are changing every time client disconnect and disconnect. I save the messages in db before DLR and I am looking for a way to send DLR even the client is disconnected and connected again. if the clients...
by htinnyo
Mon Feb 03, 2020 4:23 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: multiple connected SmppServerClient
Replies: 6
Views: 9770

Re: multiple connected SmppServerClient

I am a current subscriber, please help, thanks
by htinnyo
Mon Feb 03, 2020 3:50 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: multiple connected SmppServerClient
Replies: 6
Views: 9770

multiple connected SmppServerClient

I have the following issue. My smpp server/gateway allows a single account with multiple connection. So far connecting is not an issue but how can I keep track of delivery report 1. client A (with same systemid/pass) submits a message with messageId 123 2. client B (with same systemId/pass) submits ...