适用于WebSocket Message Broker的Android客户端

时间:2014-10-24 01:21:02

标签: java android spring websocket autobahn

我需要在Android应用程序中管理单个WebSocket连接。为此,我实现了一个Web应用程序,其中使用Spring设置WebSocket Message Broker作为其quick start

问题是我无法在Android应用程序中建立连接。我正在使用Autobahn Android,但我无法连接订阅和发布主题(例如SockJS和STOMP)。

服务器(Spring):

<websocket:message-broker application-destination-prefix="/app"> <websocket:stomp-endpoint path="/ws"></websocket:stomp-endpoint> <websocket:simple-broker prefix="/topic"/> </websocket:message-broker>

@Controller
public class MessageController {
    @MessageMapping("/ws")
    @SendTo("/topic/poc")
    public MyEntity proofOfConcept(String message) throws Exception {
        return new MyEntity(message);
    }
}

客户端(Autobahn Android):

final String wsuri = "ws://" + HOSTNAME + ":" + PORT + "/myapp/ws";
mConnection.connect(wsuri, new Wamp.ConnectionHandler() {
     @Override
     public void onOpen() {
        mConnection.subscribe("/myapp/ws/topic/poc", MyEntity.class, new Wamp.EventHandler() {
            @Override
            public void onEvent(String topicUri, Object event) { }
        });
     }
     @Override
     public void onClose(int code, String reason) {
        // ERROR: Could not connect to /HOSTNAME...
     }
});

我设法使用spring的简单处理程序而不是消息代理进行连接,但是这限制了我每个连接只“监听”一个端点......有人可以帮我吗?

1 个答案:

答案 0 :(得分:3)

AutobahnAndroid实现了WebSocket和WAMP,而不是STOMP。与STOMP不同,WAMP提供了Publish&amp; amp;订阅和远程过程调用。

使用WAMP时,您需要一个WAMP路由器。您可以找到WAMP here的客户端和路由器实现。