0

我正在使用GWT-Strophe连接到我的 XMPP 服务器。一切进展顺利,我能够连接到我的 XMPP 服务器并向其他用户发送消息。我在接收消息时遇到问题。我正在尝试复制 Strophe echobot 示例,但是当收到消息时,我的处理程序中的代码没有被执行。

这是我用来连接和注册处理程序的代码:

connection = new Connection("http://localhost/proxy/");
handler = new Handler<Element>() {

    @Override
    public boolean handle(Element element) {
        GWT.log("Handling...");
        GWT.log(element.toString());

        String to = element.getAttribute("to");
        String from = element.getAttribute("from");
        String type = element.getAttribute("type");

        NodeList<com.google.gwt.dom.client.Element> elems = element.getElementsByTagName("body");

        if ((type == null ? "chat" == null : type.equals("chat")) && elems.getLength() > 0) {
            Element body = (Element) elems.getItem(0);

            GWT.log("ECHOBOT: I got a message from " + from + ": " + body.getText());
            String[][] attributes = {{"to", from}, {"from", to}, {"type", "chat"}};    
            Builder reply = Builder.$msg(attributes).cnode(body.copy());    
            connection.send(reply.tree());

            GWT.log("ECHOBOT: I sent " + from + ": " + body.getText());
        }    
        return true;
    }
};

StatusCallback callback = new Connection.StatusCallback() {

    @Override
    public void statusChanged(Status status, String reason) {

        if (status == Status.CONNECTING) {
            GWT.log("Strophe is connecting.");
        } else if (status == Status.CONNFAIL) {
            GWT.log("Strophe failed to connect.");
        } else if (status == Status.DISCONNECTING) {
            GWT.log("Strophe is disconnecting.");
        } else if (status == Status.DISCONNECTED) {
            GWT.log("Strophe is disconnected.");
        } else if (status == Status.CONNECTED) {
            GWT.log("Strophe is connected.");
            connection.addHandler(null, null, "message", null, null, handler);
            Builder pres = Builder.$pres(null);
            connection.send(pres);

            GWT.log("ECHOBOT: Send a message to " + connection.getJid() + " to talk to me.");
        }

    }
};

connection.connect("me@myserver.com", "password", callback);
4

2 回答 2

1

改变你的线路

connection.addHandler(null, null, "message", null, null, handler);

connection.addHandler(null, "message", null, null, null, handler);

它应该可以正常工作。

于 2012-02-28T04:24:08.497 回答
0

您可以在这里发布您如何连接 gwt-strophe(如果您成功连接)?或者,如果您找到更好的解决方案,请在此处发布。我已经从 gwt-strophe(包括 gwt.xml 和所有源)制作了 GWT 兼容模块,并在我的 GWT 项目中使用。在编译期间没有错误,但是当我调用我的小部件时,它显示“无法读取未定义的属性'连接'”。经过一些代码检查后,我没有找到 Strophe 对象的初始化位置

private native JavaScriptObject connection(String boshService) /*-{
    var connection = new $wnd.Strophe.Connection(boshService);
    return connection;
}-*/;

在运行时执行期间抛出错误,因为 window.Strophe 对象未定义 ps 我在这里没有找到如何添加评论,所以我已经在这个线程中提出“答案”来提问......我需要的只是从 GWT 连接到我的 openfire服务器

于 2012-03-21T05:10:57.327 回答