Search found 3 matches

by jim87
Fri May 27, 2022 10:02 am
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Sending BIND on receipt of an OUTBIND
Replies: 3
Views: 112737

Re: Sending BIND on receipt of an OUTBIND

Thanks !
I have this working for my scenario, using SmppOutbindServerClient
by jim87
Mon Apr 11, 2022 2:56 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Sending BIND on receipt of an OUTBIND
Replies: 3
Views: 112737

Re: Sending BIND on receipt of an OUTBIND

Hi

Just to add some more information, to see if anyone know how to do it.
I have code similar to this, and want to receive delivered messages


public class SMPPServerEndpoint
{
public SMPPServerEndpoint( string ipAddress, unsigned short port)
{
serverInstance = new SmppServer(new IPEndPoint ...
by jim87
Wed Mar 23, 2022 2:02 pm
Forum: Inetlab.SMPP v2.x (.NET Standard, .NET Core)
Topic: Sending BIND on receipt of an OUTBIND
Replies: 3
Views: 112737

Sending BIND on receipt of an OUTBIND

I have implemented the evClientOutBind event for an SMPP server.

This event is triggered when the client connects and sends and OUTBIND message, but I am now trying to find out how the SmppServerClient can respond to that with a BIND message. I can't see how to send that BIND message down the same ...