Re: MyFaces @PostConstruct and DI issue

2008-02-26 Thread Stas Ostapenko
Thanks for help ! JIRA is my friend for last two days :) It's not only JSF related. On Mon, Feb 25, 2008 at 4:45 PM, Curtiss Howard <[EMAIL PROTECTED]> wrote: > Well, I guess that's why it pays to spend a few minutes looking on JIRA ;). > > > > > Gerald Müllan wrote: > > Hi, > > > > this issu

MyFaces @PostConstruct and DI issue

2008-02-25 Thread Stas Ostapenko
Hi ! I'm playing with @PostConstruct annotation and JSF. In fact I'm following this article http://weblogs.java.net/blog/jhook/archive/2007/05/jsf_12_ri_backi.html . With Sun RI implementation all is working just fine, but not with MyFaces. I'm a little bit confused. I've noticed that PostConstruc

Re: passing url parameters in jsf action method

2007-11-13 Thread Stas Ostapenko
Hi ! Take a look here : http://blogs.nuxeo.com/sections/blogs/anahide_tchertchian/2007_09_04_how-to-invoke-method-expressions-with-parameters-in-jsf On 11/13/07, Rafa Pérez <[EMAIL PROTECTED]> wrote: > Hi, > > I suppose you mean doing something like: > > > > If so, in Seam there is a custom ELR

Redirect to URL with param from

2007-10-30 Thread Stas Ostapenko
Hi ! I want to implement such kind of functionality : /add.jsp added /view.jsf?myParam=#{myManagedBean.id} Actually, I want to redirect from navigation-case to URL with param which is a property of a managed bean. How it could be implemented ? Any suggestions and/or examples