我尝试过dwr示例聊天应用,我认为下面的代码会将数据发送给所有连接的客户端。
Collection pages = wctx.getScriptSessionsByPage(currentPage);
for (Iterator it = pages.iterator(); it.hasNext();)
{
ScriptSession otherSession = (ScriptSession) it.next();
otherSession.addScript(script);
}
如果我是赖特,我怎么能只使用JSESSIONID将数据发送到特定的客户端? 一个简单的例子可能是hel。
谢谢和问候