Re: Integration of jsp and jsf

2006-02-02 Thread Volker Weber
Hi Vladimir, maybe i don't understand what you want! Would you say that the following did not work on your system? -Begin JSP code-- <%@ taglib uri="http://java.sun.com/jsf/html"; prefix="h"%> <%@ taglib uri="http://java.sun.com/jsf/core"; prefix="f"%>

Re: Integration of jsp and jsf

2006-02-02 Thread Vladimir Coutinho
How do I put the object disponible to JSF? I tried to put the object in the session, but I could not access in JSF like other JSF beans.On 2/2/06, Pierpaolo Follia <[EMAIL PROTECTED]> wrote: You can get the object from the facescontext using FacesContext.getCurrentInstance().getExternal

Re: Integration of jsp and jsf

2006-02-02 Thread Pierpaolo Follia
You can get the object from the facescontext using FacesContext.getCurrentInstance().getExternalContext().getSessionMap().get("YOUR_OBJECT") bye Vladimir Coutinho wrote: There is a way to put this object disponible in facescontext? On 2/1/06, Pierpaolo Follia <[EMAIL PROTECTED]> wrote:

Re: Integration of jsp and jsf

2006-02-01 Thread Vladimir Coutinho
There is a way to put this object disponible in facescontext? On 2/1/06, Pierpaolo Follia <[EMAIL PROTECTED]> wrote: use an _expression_ like #{sessionScope.YOUR_OBJECT_HERE.YOUR_PROPERTY_HERE}byeVladimir Coutinho wrote: > How to use in a jsf page a session object created in a jsp page?>>> --> Vlad

Re: Integration of jsp and jsf

2006-02-01 Thread Pierpaolo Follia
use an expression like #{sessionScope.YOUR_OBJECT_HERE.YOUR_PROPERTY_HERE} bye Vladimir Coutinho wrote: How to use in a jsf page a session object created in a jsp page? -- Vladimir M Coutinho -- Pierpaolo Follia Wave S.r.l. - Vai Benaco 24/B, Bedizzole (BS) Telefono: +39 030 687561 Fax: +3

Integration of jsp and jsf

2006-02-01 Thread Vladimir Coutinho
How to use in a jsf page a session object created in a jsp page?-- Vladimir M Coutinho