[jboss-user] [JBoss Seam] - Re: JPDL: Multiple actions on transition or page?

2007-09-23 Thread patrickr
jpviragine wrote : I?ve this situation in page (not start-page) and works fine. Yep, only start-page is affected. http://jira.jboss.org/jira/browse/JBSEAM-1951. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4087630#4087630 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Seam2, Pageflow, start-state

2007-08-30 Thread patrickr
Hey there, I experienced the same thing today. I use MyEclipse for deploying applications and the default behaviour of the web application module is to include all referenced JARs. So even if you don't have jboss-seam.jar copied to your WEB-INF/lib MyEclipse will copy it on deployment if your

[jboss-user] [JBoss Seam] - Re: Exploded Deployment from MyEclipse (trid 5.5 and 6.0M1)

2007-08-23 Thread patrickr
Today I encountered the same EL linkage error. It turned out to be (partly) a myeclipse issue. When you add JSF / Facelets support the facelets libary is automatically added to your web project. Myeclipse will copy the jars of this library into your WEB-INF/lib directory on deployment. And

[jboss-user] [JBoss Seam] - JPDL: Multiple actions on transition or page?

2007-08-23 Thread patrickr
Hi, according to the pageflow-2.0 schema this is valid: start-page name=Address view-id=/pages/checkout/address.xhtml | | action expression=#{flowUtil.test} / | action expression=#{flowUtil.test2} / | | transition name=next to=End |

[jboss-user] [JBoss Seam] - Re: JPDL: Multiple actions on transition or page?

2007-08-23 Thread patrickr
So, should I add a feature request / bug issue? To clarify my motivation behind this, please refer to the following code: transition name=next to=End | action expression=#{database.persist(order)} / | action expression=#{mailer.sendConfirmation(order, user)} / |

[jboss-user] [JBoss Seam] - Re: Third-party EJBs as seam components

2007-08-06 Thread patrickr
Thanks for your answers, Pete! And sorry for responding so late. However, I can't get the jndi-name lookup working. Since I didn't find any information in the docs, could you please tell me what exactly jndi-name expects? I supposed that this would work.core:init

[jboss-user] [JBoss Seam] - Re: Third-party EJBs as seam components

2007-08-06 Thread patrickr
Doing it programmatically works: @Name(shoppingCart) | @Scope(ScopeType.SESSION) | public class ShoppingCartManager | { | private ShoppingCart shoppingCart; | | @Create | public void create() throws NamingException | { | InitialContext ic = new

[jboss-user] [JBoss Seam] - Third-party EJBs as seam components

2007-08-01 Thread patrickr
Hi there, Consider an EAR file containing a seam application and a third-party ejb-jar. Now, can I just use components.xml to give these EJBs a name and seam scope and then use them as usual seam components? And what happens if I deploy the ejb-jar by itself? Would this

[jboss-user] [JBoss Seam] - Multiple component instances or how to use a component multi

2007-07-27 Thread patrickr
Hi all, I really love bijection; it makes things so much easier. However, I have a requirement that makes it somehow hard to use contextual components. Let's suppose we have a Checkout page, were you can enter shipping and a payment addresses. These addresses obviously belong to a model of the

[jboss-user] [JBoss Seam] - Re: Problem pasting text from Word using s:formattedText

2007-05-23 Thread patrickr
I encountered a similar error. For me it was the dash character from MS word. Just for readers reference, see JBSEAM-1343 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4048064#4048064 Reply to the post :

[jboss-user] [JBoss Seam] - Navigation, Menu, Sitemap - Content Management

2007-05-21 Thread patrickr
Many web sites consist of pages that can be hierarchically structured. The main menu often reflects this structure, hiding child nodes until the user clicks a menu item (or a node in a tree view). A sitemap instead could display all child nodes (or at least nodes with a level i.e. = 3). But

[jboss-user] [JBoss Seam] - Load Templates from Database?

2007-05-12 Thread patrickr
Hi all, Is there a way to load templates from a database? I don't have the possibility to write templates to a file because this only works with exploded archives. Still, I want to have some templating mechanism at runtime available. I know that this question depends on the view technology.

[jboss-user] [JBoss Seam] - Re: Load Templates from Database?

2007-05-12 Thread patrickr
Thanks for your feedback! I didn?t realize it was that complex, but again you smart Seam guys figured a way. ;-) And regarding Pete Muir?s blog (that I've bookmarked now): I?ll vote for ?Serving up dynamic resources RESTfully? Regards Patrick View the original post :

[jboss-user] [JBoss Seam] - Re: Load Templates from Database?

2007-05-12 Thread patrickr
BTW: The wiki looks great! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045239#4045239 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045239 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - HibernateEntityConverter

2007-04-24 Thread patrickr
The EntityConverter doesn't seem to work with Hibernate managed sessions, does it? Because I didn?t find a HibernateEntityConverter either, I quickly wrote one myself. Maybe someone finds this useful. Feel free to add it to the source repository. | /** | * This implementation of the

[jboss-user] [JBoss Seam] - Re: HibernateEntityConverter

2007-04-24 Thread patrickr
Done...for reader's reference: http://jira.jboss.org/jira/browse/JBSEAM-1242 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040321#4040321 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4040321

[jboss-user] [JBoss Seam] - Re: Remember Me Exception

2007-04-19 Thread patrickr
I?ve just encountered the same PropertyNotFoundException although I don't use IceFaces. So this might not solve the original problem but maybe helps people searching for this exception. I actually forgot to put seam.properties in my classpath and thus seam wasn't aware of my annotated