SMPP BIND ERROR: 0x0000000D in EasySMPP

2

I am implementing the SMPP client using EasySMPP for .NET

The application is compiling fine but there was no successful outcome and I am getting this weird error

SMPP BIND ERROR: 0x0000000D

What can be done for this, please help.

c#
.net
api
smpp
asked on Stack Overflow Sep 23, 2011 by Harsh Baid

1 Answer

3

The error code of 0x0000000D is unfortunately a rather generic "Bind Failed".

To find out what the error codes mean check section 5.1.3, command_status, of the SMPP specification you linked to.

Common causes for getting a "Bind Failed" response are:

  • Your supplier only allows certain IP addresses to connect
  • Trying to connect to wrong hostname/port combination
  • Wrong username/password

To troubleshoot, you could try running Wireshark on your client and take a look at the SMPP PDUs being passed backwards and forwards, if you post the capture on here I'm happy to take a look. Or you could give your supplier a call, they may be able to see something helpful in their server logs.

answered on Stack Overflow Sep 28, 2011 by Martin Steel

User contributions licensed under CC BY-SA 3.0