警告: Method execution failed: 
java.lang.NoSuchMethodError: org.directwebremoting.proxy.dwr.Util.setValue(Ljava/lang/String;Ljava/lang/Object;)V
at com.lhq.ChatManager.send(ChatManager.java:102);//这是报错的那段程序
public void send(String sender,String receiverid,String msg,HttpServletRequest request){
ScriptSession session = this.getScriptSession(receiverid, request);
Util util = new Util(session);
util.setStyle("showMessage", "display", "");
util.setValue("sender", sender);
util.setValue("msg", msg);
}
一个dwr server push,相信有人看过这段程序..可是我这个例子一直都聊不成...