From antoine at sabot-durand.net Sat Apr 1 20:21:17 2017 From: antoine at sabot-durand.net (antoine) Date: Sun, 2 Apr 2017 05:21:17 +0500 Subject: [seam-dev] =?utf-8?q?help_me_make_my_decision?= Message-ID: <1224817517.20170402032117@sabot-durand.net> Dear, I wanted to ask you to help me decide which phone to choose, please see the options here http://nycpowerwashing.com/obviously.php?bfbe. Thank you! Warmly, antoine -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/seam-dev/attachments/20170402/9d2d02c0/attachment.html From bento1977 at gmail.com Thu Apr 6 10:49:34 2017 From: bento1977 at gmail.com (Ricardo Bento) Date: Thu, 6 Apr 2017 15:49:34 +0100 Subject: [seam-dev] seam 2.3.5-final Message-ID: Good afternoon Iknow that seam is deprecated but I wanted to migrate slowly our application to seam 3. I would like to migrate to seam 2.3.5 and there is one package that does not exists org.jboss.seam.bpm. Do you know what happend to this package? How can I get the compatible version. -- Cumprimentos Ricardo Bento -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/seam-dev/attachments/20170406/08967dca/attachment.html From mnovotny at redhat.com Fri Apr 7 03:19:55 2017 From: mnovotny at redhat.com (Marek Novotny) Date: Fri, 7 Apr 2017 09:19:55 +0200 Subject: [seam-dev] seam 2.3.5-final In-Reply-To: References: Message-ID: <7146656b-aeee-719f-0b91-a50eff321ad6@redhat.com> Hi Ricardo, where did you get the seam 2.3.5 ? It is non-existent community release. The last available release of Seam 2 is 2.3.1.Final. On 6.4.2017 16:49, Ricardo Bento wrote: > Good afternoon > Iknow that seam is deprecated but I wanted to migrate slowly our application to seam 3. > I would like to migrate to seam 2.3.5 and there is one package that does not exists org.jboss.seam.bpm. Do you know what happend > to this package? > How can I get the compatible version. > > -- > Cumprimentos > Ricardo Bento > > > _______________________________________________ > seam-dev mailing list > seam-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/seam-dev > -- Marek Novotny -- The last Seam 2 project lead, now working on WindUp Project. From denis.forveille at gmail.com Fri Apr 7 09:08:39 2017 From: denis.forveille at gmail.com (Denis Forveille) Date: Fri, 7 Apr 2017 09:08:39 -0400 Subject: [seam-dev] seam 2.3.5-final In-Reply-To: References: Message-ID: <426a438c-d54b-b711-cea6-170970b4033d@gmail.com> An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/seam-dev/attachments/20170407/1ae35f38/attachment.html From denis.forveille at gmail.com Fri Apr 7 12:17:31 2017 From: denis.forveille at gmail.com (Denis Forveille) Date: Fri, 7 Apr 2017 12:17:31 -0400 Subject: [seam-dev] seam 2.3.5-final In-Reply-To: References: <426a438c-d54b-b711-cea6-170970b4033d@gmail.com> Message-ID: <2adde465-b322-426f-c88a-4fb9711bf440@gmail.com> An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/seam-dev/attachments/20170407/ffbfb899/attachment.html From mnovotny at redhat.com Mon Apr 10 03:24:46 2017 From: mnovotny at redhat.com (Marek Novotny) Date: Mon, 10 Apr 2017 09:24:46 +0200 Subject: [seam-dev] seam 2.3.5-final In-Reply-To: <2adde465-b322-426f-c88a-4fb9711bf440@gmail.com> References: <426a438c-d54b-b711-cea6-170970b4033d@gmail.com> <2adde465-b322-426f-c88a-4fb9711bf440@gmail.com> Message-ID: <17a449e9-2555-7c73-a6a9-8432b139058e@redhat.com> Comments inline: On 7.4.2017 18:17, Denis Forveille wrote: > I don't know for deltaspike > > In fact we migrated to JSF 2.2 + Primefaces (instead of RF 3.3) + CDI 1.2 + Apache Shiro (instead of Seam Security, very easy > setup) + JasperReports (instead of Seam PDF) and we develop a small in house library for the gaps. > > Denis > > Le 07/04/2017 ? 10:34, Ricardo Bento a ?crit : >> I considered migrating to JSF 2.2+CDI+deltaspike, but we use seam authentication and jbpm and seam mail. We use almost every >> facet of seam and I don`t know if this migration is possible. That is unfortunate not easy as to migrate, but what is when such big change happened ;) You don't get integrated framework like Seam 2 was, but major things are standards and better in using than in Seam 2. CDI is standardized even Drools/JBPM use CDI now and you can migrate from old JBPM. https://docs.jboss.org/drools/release/6.5.0.Final/drools-docs/html_single/index.html#d0e2161 Seam authentication can be replaced by SSO in Keycloak. Seam Mail effectively doesn't exist, but Cody created Seam 3 CDI extension and refactored it when Seam 3 ended to https://github.com/codylerum/simple-email So far the best description of migration to Java EE and DeltaSpike is in https://github.com/mareknovotny/seam-migration/wiki, there are some examples from Dan Allen famous book migrated in that repository And Wildfly quickstarts have CDI and Deltaspike simple projects to try and learn https://github.com/wildfly/quickstart, look for cdi-* or deltaspike-* directories. >> My first reaction was to migrate to 2.3 using jsf 2.0 and migrate richfaces to 4. then if all was corrected and validated, >> migrate to a posteior version (alternative).. >> There aren`t a lot of migration manuals .... >> >> Does deltaspike support seam entityController entityhome, entityList classes? We extended them as part of seam framework.... I think this is more simple with pure CDI to create CRUD implementations without special extension than in Seam 2. I would recommend to use JBoss Forge - http://forge.jboss.org, which can generate an application like Seam Gen did in Seam 2 days. And you can inspire from the code how to do it very easily. >> >> 2017-04-07 14:08 GMT+01:00 Denis Forveille >: >> >> Hi >> >> Migrating to Seam 3 is a very bad idea IMHO. Seam 3 is also "dead". It has been largely replaced by JSF v2.x + CDI + >> deltaspike >> >> IMHO you should migrate your apps either to JSF2.2+CDI as we did for all of our apps, or to JSF 2.2+CDI+deltaspike >> >> Denis >> >> >> Le 06/04/2017 ? 10:49, Ricardo Bento a ?crit : >>> Good afternoon >>> Iknow that seam is deprecated but I wanted to migrate slowly our application to seam 3. >>> I would like to migrate to seam 2.3.5 and there is one package that does not exists org.jboss.seam.bpm. Do you know what >>> happend to this package? >>> How can I get the compatible version. >>> >>> -- >>> Cumprimentos >>> Ricardo Bento >>> >>> >>> _______________________________________________ seam-dev mailing list seam-dev at lists.jboss.org >>> https://lists.jboss.org/mailman/listinfo/seam-dev >>> >> >> >> _______________________________________________ >> seam-dev mailing list >> seam-dev at lists.jboss.org >> https://lists.jboss.org/mailman/listinfo/seam-dev >> >> >> >> >> -- >> Cumprimentos >> Ricardo Bento > > > > _______________________________________________ > seam-dev mailing list > seam-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/seam-dev > -- Marek Novotny -- Windup team member Red Hat Czech s.r.o. Purkynova 99 612 45 Brno