Osimjon Gulakov
Osimjon Gulakov
var submitSm = new SmppSubmitSm { CommandStatus = CommandStatus.ESME_ROK, SourceAddressTon = Pdu.TonType.Alphanumeric, SourceAddressNpi = Pdu.NpiType.Unknown, SourceAddress = from, DataCoding = DataCoding.UCS2, PriorityFlag = Pdu.PriorityType.Lowest, ShortMessage = message, DestinationAddressTon = Pdu.TonType.International,...
Hi. i was passing 12345 as an example. I passes null and the issue is gone now. Now i am facing a different issue. Client has a Start() method and...
Appreciate your help Pablo. I used start(), and i get this error : NFO - Client isStarted is : False 2024-10-17 10:54:48,908 INFO - Client state is : Inactive 2024-10-17...
I am sorry if i am being anooying, but would you please take a look at how i create the client? Because i am getting the same error. _client =...
I get this, but when i try to use Inetlabs smpp and pass the same IP and Ports it connects with no problem. What could the problem be?
as host i am passing the ip of the smsc server
i am able to connect to the server using telnet
Sure! private Task ConnectAsyncOld() { try { if (_isConnected) return Task.FromResult(true); _log.Info($"Attempting to connect to SMSC: {_client.Host}:{_client.Port}"); _log.Info($"Client isStarted is : {_client.Started}"); _client.Start(); _log.Info($"Client state is : {_client.State}"); _isConnected =...
Hi Pablo. Any suggestions on how to connect properly?