多个 SMPP 会话
假设有两个接收方会话通过不同的 TCP 端口从同一应用程序到 SMPP。 消息发送到应用程序,回复(即 Deliver_sm_resp)通过其他会话到达 SMPP 这可能吗?或者应该通过同一个 SMPP 会话进行回复?
Lets say there are two receiver session from same application to a SMPP over different TCP ports.
Message is sent to application and reply is (i.e deliver_sm_resp) is coming to SMPP via the other session
Is this possible or reply should be come over the same SMPP session?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,应该使用与接收 Deliver_sm 相同的会话发回 Deliver_sm_resp。
响应通过序列号与请求链接,该序列号随着会话上的每个请求而递增,因此它仅在同一会话中才有意义。
No, the deliver_sm_resp should be sent back using the same session as the deliver_sm was received on.
The response is linked with the request by a sequence number that is incremented with each request on the session so the it only makes sense within the same session.