>From: "Balunas, Jay" <[EMAIL PROTECTED]>
>
> Hello all,
>
> I have been lurking for some time, and have been investigating JSF for a new
> project at my company. Please forgive me is this has come up already - I did
> search through several pages of archives and could not find a reference to 1.2
> support roadmaps
>
> Because this will be a new project starting in about a month, and first release
> around end of summer (August -September) I have been investigating both the
> current 1.1.1 version of myFaces, and looking into what 1.2 JSF provides. We
> are planning on using Ajax and from what research I have done JSF 1.2 has some
> hooks for making Ajax requests less of a hack into the life cycle.
>
> We are also investigating Suns implementation, but I would prefer to stick with
> myFaces as the support and community seems stronger.
>
 
You might consider Struts Shale's remoting support for myfaces
(http://struts.apache.org/struts-shale/shale-remoting/apidocs/index.html). 
It allows an AJAX call into the JSF life cycle invoking an action bound
method on a managed bean.  It assumes a URL convention where the managed
bean name and method are specified as folders within the URL.
 
Consider the following example where “remoting$business”is the managed
bean name and “cityAndStateForZip” is the method.:
sendRequest("http://localhost:8080/struts-shale-usecases/" +
            "dynamic/remoting$business/cityAndStateForZip.faces" +
            ?zip=" + escape(zip),
            processZipCodeSelection);
 
 
> Thanks in advance,
> Jay
>
Gary
 
>

Reply via email to