hi jose, since we need an initial redirect to add the window-id to the url, you don't see it on the very first page which is displayed in a window (because you only see the result of the 2nd request). please file a jira issue. for now you can provide a custom implementation of JsfModuleConfig and override #isInitialRedirectEnabled to change the default behaviour.
regards, gerhard http://www.irian.at Your JSF/JavaEE powerhouse - JavaEE Consulting, Development and Courses in English and German Professional Support for Apache MyFaces 2012/3/9 José Luis Cetina <[email protected]> > How can i show an error message when the page load for the first time, this > only work if i go to another page and back to the original (this) then the > message in index.xhml show. > > Its possible? > > @Named(value="myBean") > @ViewAccessScoped > @Model > @View(Index.class) > public class MyBean implements Serializable{ > @InitView > public void init(){ > //do something if something its wrong then: > FacesContext.getCurrentInstance().addMessage(null, new > FacesMessage(FacesMessage.SEVERITY_INFO, "msg", "msg detail")); > } > > > Thanks > > > ------------------------------------------------------------------- > *SCJA. José Luis Cetina* > ------------------------------------------------------------------- >

