When I try to create a new Project in the JPDL Process Designer [Eclipse], it is asking for a Jboss Runtime. I am wondering will it work with any other runtime? [Websphere is the one with we are currently using].
I have not tried BPEL process designer, wondering if the BPEL Process designer would work with Websphere too...
And when it is looking for a runtime, is it looking for a server.xml or an application.xml? or anything else?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082719#4082719
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082719
In pages.xml put something like :
| <conversation name="testConversation" param-name="myID" param-value="#{widget.id}"/>
|
Then for your page use something like :
| <page ..... conversation="testConversation"/>
|
This sets the conversation Id to the value of widget.id, but there are a couple of problems when using the conversation switcher.
http://jira.jboss.org/jira/browse/JBSEAM-1423
However, for the most part, the good stuff works (like switching to a conversation for a specific widget Id if it already exists).
The one sticky part I've come across is what to do with new widgets which technically don't have an id until saved.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082716#4082716
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082716
have you tried project => clean in eclipse?
also, when i was trying to convert a seam-gen proj to an eclipse ear i had both projects open and autobuilding, so the ant deploy from seamgen and hot deploy from eclipse were installing compopnents of the same name and giving this error (doh) maybe something to check
if all else fails, maybe try cleaning the relevant work/ and tmp/ entries as well as deploy/ stuff.
/matt
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082715#4082715
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082715
It has been discussed and stated that indeed the required=true is not put on the form. This is not a bug since jbpm DOES validate if the required variable is not null but since JSF puts an empty string in there, jBPM thinks it is ok. The 'fix' therefor is to put the required=true on the form yourself at the moment. If you want you van extend the form generator to put it in there automatically.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082714#4082714
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082714
If you are using a facelets template which displays common menu links on every page you may require a different conversation propagation attribute value within the links depending on the view.
In your view page when you want to change the default propagation of the menu items set the propagation type in a ui:param tag:
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
| xmlns:ui="http://java.sun.com/jsf/facelets"
| template="layout/template.xhtml"
| >
|
| <ui:param name="menuPropagation" value="end"/>
| <ui:define name="body">
| <h1>Some View</h1>
| </ui:define>
| </ui:composition>
In the menu template create two links for each item one for when the propagation is not set and the other for when it is:
<div
| xmlns="http://www.w3.org/1999/xhtml"
| xmlns:ui="http://java.sun.com/jsf/facelets"
| id="menu"
| >
| <s:link
| rendered="#{menuPropagation == null}"
| view="/home.xhtml"
| value="Home"
| />
| <s:link
| rendered="#{menuPropagation != null}"
| view="/home.xhtml"
| value="Home"
| propagation="#{menuPropagation}"
| />
|
| <s:link
| rendered="#{menuPropagation == null}"
| view="/nextMenuItem.xhtml"
| value="nextMenuItem"
| />
| <s:link
| rendered="#{menuPropagation != null}"
| view="/nextMenuItem.xhtml"
| value="NextMenuItem"
| propagation="#{menuPropagation}"
| />
|
| <!-- etc ... -->
| </div>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082710#4082710
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082710