RE: Help : Error while creating a Facelet

2012-03-14 Thread ayouB __
Hello Richard, I really tried to resolve this problem by changing my eclipse IDE version, by using Indigo but nothing happen, there's worse my Jboss Tools plugin can't be installed neither from an archive.zip nor from the eclipse marketspace, it allways falls during downloading necessary

how to build a JSF 2.0 (MyFaces/Facelets) Project

2012-03-14 Thread ayouB __
Hello every one, I have sent a mail before that one where i explained problems i faced while configuring the developpement environnement, unfortunately that let me no where i spent a lot of time trying to find a solution but i didn't anyway thank you all for your replies and your

Re: how to build a JSF 2.0 (MyFaces/Facelets) Project

2012-03-14 Thread Mark Struberg
Best is to use Maven. $ mvn archetype:generate -DarchetypeGroupId=org.apache.myfaces.buildtools -DarchetypeArtifactId=myfaces-archetype-helloworld20-owb LieGrue, strub - Original Message - From: ayouB __ ayb-2...@hotmail.fr To: users@myfaces.apache.org Cc: Sent: Wednesday,

Re: how to build a JSF 2.0 (MyFaces/Facelets) Project

2012-03-14 Thread José Luis Cetina
Helo ayouB im using Netbeans an is so easy to create a JSF Faceletes proyect, why you dont test with netbeans? 2012/3/14 Mark Struberg strub...@yahoo.de Best is to use Maven. $ mvn archetype:generate -DarchetypeGroupId=org.apache.myfaces.buildtools

Re: how to build a JSF 2.0 (MyFaces/Facelets) Project

2012-03-14 Thread Leonardo Uribe
Hi In eclipse you can use the archetype and then load the project using m2eclipse plugin: http://www.sonatype.org/m2eclipse . regards, Leonardo El día 14 de marzo de 2012 13:35, José Luis Cetina maxtorz...@gmail.com escribió: Helo ayouB im using Netbeans an is so easy to create a JSF

Re: how to build a JSF 2.0 (MyFaces/Facelets) Project

2012-03-14 Thread Werner Punz
Here is the relevant maven info https://cwiki.apache.org/confluence/display/MYFACES/MyFaces+Archetypes+for+Maven Cannot help with Eclipse. Werner Am 14.03.12 19:42, schrieb Leonardo Uribe: Hi In eclipse you can use the archetype and then load the project using m2eclipse plugin:

Re: MyFaces and CODI

2012-03-14 Thread Rafael Pestano
Hi Gerhard, i successfuly added codi and openwebbeans to an application running on weblogic 11g however its a  legacy application which uses frames, basicaly we have a menu on the left frame that targets the center frame, something like: h:commandLink value=menuLink action=#{myBean.init}

Re: Both MyFaces and the RI are on your classpath. Please make sure to use only one of the two JSF-implementations.

2012-03-14 Thread Gerhard Petracek
hi jose, usually that depends on the concrete requirements. however, as mentioned by leo there are application-servers which provide a better approach for integrating e.g. myfaces-core. furthermore, there are also a lot of users who don't need an application server at all and just use e.g.

Re: MyFaces and CODI

2012-03-14 Thread Gerhard Petracek
hi rafael, the easiest approach to test an alternative for this constellation is the activation of the ServerSideWindowHandler (it's a std. cdi @Alternative implementation - you can activate it in the beans.xml file of your application). (however, please be aware that this alternative

Re: MyFaces and CODI

2012-03-14 Thread Rafael Pestano
i see, i have used the client side one  alternatives classorg.apache.myfaces.extensions.cdi.jsf.impl.scope.conversation.ClientSideWindowHandler/class /alternatives i imagine the server side should be alternatives

Re: MyFaces and CODI

2012-03-14 Thread Gerhard Petracek
hi rafael, internally the ServerSideWindowHandler is based on the flash scope (that's one of the mentioned disadvantages) - it's bound to jsf 2+ - it is: org.apache.myfaces.extensions.cdi.jsf2.impl.scope.conversation.ServerSideWindowHandler (and you can't use the additional js.) with some

Re: how to build a JSF 2.0 (MyFaces/Facelets) Project

2012-03-14 Thread Guy Rouillier
On 3/14/2012 12:47 PM, ayouB __ wrote: Hello every one, I have sent a mail before that one where i explained problems i faced while configuring the developpement environnement, unfortunately that let me no where i spent a lot of time trying to find a solution but i didn't anyway thank you

Re: MyFaces and CODI

2012-03-14 Thread Rafael Pestano
Hi Gehard, its a stopper to us cause we are still dependent on JSF 1.2 Can i implement an alternative to org.apache.myfaces.extensions.cdi.jsf2.impl.scope.conversation.ServerSideWindowHandler based on JSF 1.2?  i see you use flash scope to span the windowId through requests in the server side

Re: MyFaces and CODI

2012-03-14 Thread Gerhard Petracek
hi rafael, as you have seen it's easy to provide a custom WindowHandler (just implement the interface and provide your implementation as alternative cdi bean) - you can integrate every custom approach which is enough to solve you requirements. if you don't need redirects, you could have a look