I have server-side coundown counter. When it == 0, method should execute ExternalContext#dispatch()
, but it didn't do it. Method ExternalContext#redirect()
works correctly on this place.
....
}else{
try {
FacesContext.getCurrentInstance().getExternalContext().dispatch("result.xhtml");
} catch (IOException e) {
e.printStackTrace();
}
}
....
I tried a few ways of the spelling url(result,result.xhtml,\result.xhtml
etc.) with the same result.