这不是我第一次尝试 RPC。所有其他人都运作良好,但我不知道,为什么这不。
public void confirmRequest(String requestId, boolean confirmWithDefault, List<String> values, final String laneId){
AsyncCallback<Void> callback = new AsyncCallback<Void>(){
@Override
public void onFailure(Throwable caught)
{
// TODO Auto-generated method stub
}
@Override
public void onSuccess(Void result)
{
Window.alert("jo");
ServiceCalls.this.mainmenu.getSlidePanel().getLaneMenu().getProperLanes().get(laneId)
.getDefaultButton().setText("");
statusFor();
}
};
getLaneProxy().confirmRequest(requestId, confirmWithDefault, values, laneId, callback);
}
当我运行程序时,它甚至不会抛出异常。它只是没有做它应该做的事情。然后我调试了一下,发现此时抛出了 ClassNotFoundException。
AsyncCallback< Void> callback = new AsyncCallback<Void>()