I've got two pages in two different projects (it means in different ear files that are deployed singularly) and i need to pass data from a page to another.
in the action of a command link i do
public String onSalva() {
ADFContext.getCurrent().getApplicationScope().put("comingFrom", md);
return "goToPrint";
}
and in the constructor method of the backing bean of the other page i do:
page = (String)ADFContext.getCurrent().getApplicationScope().get("comingFrom");
But page is always null. I tried using process, session and request scop with no luck. Is there a way i could redirect to the other page by specifying manually the parametrs? Something like
return "goToPrint?pageFrom="+md;
}