[JBoss-user] [JBoss Seam] - Re: New stuff in CVS

2006-01-05 Thread [EMAIL PROTECTED]
Rob, y ou can still make the dvdstore working outside JBoss while using EJB. (We just have scripts to make booking and noejb work in Tomcat) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3915761#3915761 Reply to the post :

[JBoss-user] [JBoss Seam] - Re: New stuff in CVS

2006-01-04 Thread [EMAIL PROTECTED]
One more new thing: A number of people have complained about the use of postbacks in the demos. This is the natural mode of operation for JSF, however, JSF does support redirect-after-post by sticking in the navigation rules. Unfortunately, this would break Seam 1.0 beta 1 because the

[JBoss-user] [JBoss Seam] - Re: New stuff in CVS

2006-01-04 Thread RobJellinghaus
How much work would it be to make all the samples run outside JBoss? i.e. create noejb versions of the dvdstore, issuetracker, etc.? Also, what's the process for submitting patches? JIRA? Cheers! Rob View the original post :

[JBoss-user] [JBoss Seam] - Re: New stuff in CVS

2006-01-04 Thread [EMAIL PROTECTED]
Should not be much work I guess. It's mainly futzing with build scripts, which is absolutely not My Thing. I suck at Ant almost as much as a suck at bash. Yep, patches can go in JIRA. Feature/design discussions can take place here for now, so that everyone can contribute if they like. Cheers

[JBoss-user] [JBoss Seam] - Re: New stuff in CVS

2006-01-03 Thread [EMAIL PROTECTED]
By the way, here is an example of a page flow: process-definition name=shopping | |start-state name=start | transition to=browse/ |/start-state | |page name=browse view-id=/browse.xhtml | transition name=browse to=browse/ | transition

[JBoss-user] [JBoss Seam] - Re: New stuff in CVS

2006-01-03 Thread [EMAIL PROTECTED]
And here is an example of a business process definition: process-definition name=OrderManagement | start-state | transition to=decide/ | /start-state | | decision name=decide expression=#{orderApproval.howLargeIsOrder} | transition name=large order