CometD将消息发布回客户机



我在发送回消息给客户端时有问题。下面是我的代码

JavaScript

dojox.cometd.publish('/service/getservice', {
                        userid : _USERID,
                    });
dojox.cometd.subscribe('/service/getservice', function(
            message) {
        alert("abc");
        alert(message.data.test);
    });
Configuration Servlet
bayeux.createIfAbsent("/service/getservice", new ConfigurableServerChannel.Initializer() {
        @Override
        public void configureChannel(ConfigurableServerChannel channel) {
            channel.setPersistent(true);
            GetListener channelListner = new GetListener();
            channel.addListener(channelListner);
        }
    });

GetListener类

public class GetListener implements MessageListener {
 public boolean onMessage(ServerSession ss, ServerChannel sc) {
      SomeClassFunction fun = new SomeClassFunction;
}
}

SomeClassFunction

class SomeClassFunction(){
}

在这里我创建了一个布尔变量布尔成功;如果它是真的,发送一个消息到客户端,这是在javascript。如何发送消息回客户端。这个电话我也试过了。

      remote.deliver(getServerSession(), "/service/getservice",
                    message, null);

但是它给了我一个远程对象和getServerSession方法的错误。

为了达到您的目标,您不需要实现侦听器或配置通道。您可能需要在稍后的阶段添加一些配置,例如为了添加授权者。

这是ConfigurationServlet的代码,取自这个链接:

public class ConfigurationServlet extends GenericServlet
{
    public void init() throws ServletException
    {
        // Grab the Bayeux object
        BayeuxServer bayeux = (BayeuxServer)getServletContext().getAttribute(BayeuxServer.ATTRIBUTE);
        new EchoService(bayeux);
        // Create other services here
        // This is also the place where you can configure the Bayeux object
        // by adding extensions or specifying a SecurityPolicy
    }
    public void service(ServletRequest request, ServletResponse response) throws ServletException, IOException
    {
        throw new ServletException();
    }
}

这是EchoService类的代码,取自以下链接:

public class EchoService extends AbstractService
{
    public EchoService(BayeuxServer bayeuxServer)
    {
        super(bayeuxServer, "echo");
        addService("/echo", "processEcho");
    }
    public void processEcho(ServerSession remote, Map<String, Object> data)
    {
        // if you want to echo the message to the client that sent the message
        remote.deliver(getServerSession(), "/echo", data, null);
        // if you want to send the message to all the subscribers of the "/myChannel" channel
        getBayeux().createIfAbsent("/myChannel");
        getBayeux().getChannel("/myChannel").publish(getServerSession(), data, null);
    }
}

最新更新