Menu
  • HOME
  • TAGS

Seam pageflow example NumberGuess Not landing on to the second page

seam,jboss-seam,page-flow,jpdl

Resolved the issue.Weld is scanning the archive, which seems to cause the problem.The Weld Docs says: You can either set this up for your deployment only by adding the following content to the META-INF/jboss-all.xml file of your application. jboss-all.xml file goes to your META-INF for ear archive and likely to...

Seam to Weld CDI

jboss-weld,jboss-seam

Check out https://access.redhat.com/documentation/en-US/JBoss_Enterprise_Web_Platform/5/html/Seam_Reference_Guide/ch07s11.html "Where interceptor order is important, add @Interceptor annotations to your interceptor classes to specify a particular order of interceptors." @Interceptor(around={BijectionInterceptor.class, ValidationInterceptor.class, ConversationInterceptor.class}) public class LoggedInInterceptor { ... } So with one interceptor it is not very useful ... ...

Using richfaces's tabPanel - tab's ontableave

richfaces,jboss-seam

The @ontableave is for client-side code, i.e. JavaScript, not for bean methods. If you need to execute something on the server in response to a client-side event, use <a4j:support>: <rich:tab label="Report" … > <a4j:support event="ontableave" action="#{sessionProcess.writeDraftReport()}" /> </rich:tab> ...