EasySMPP 中出现 SMPP 绑定错误:0x0000000D
我正在使用 SMPP 客户端实现 SMPP 客户端。 blogspot.com/search/label/SMPP" rel="nofollow noreferrer">EasySMPP for .NET
应用程序编译正常,但没有成功的结果,我出现这个奇怪的错误
SMPP BIND ERROR: 0x0000000D
该怎么办,请帮忙。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,错误代码 0x0000000D 是一个相当通用的“绑定失败”。
要了解错误代码的含义,请检查您链接到的 SMPP 规范的第 5.1.3 节 command_status。
收到“绑定失败”响应的常见原因有:
要排除故障,您可以尝试在客户端上运行 Wireshark 并查看SMPP PDU 来回传递,如果您将捕获的内容发布到此处,我很乐意查看。或者您可以给您的供应商打电话,他们也许能够在服务器日志中看到一些有用的信息。
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:
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.