[JBoss Seam] - Re: Seam + Maven + Richfaces + softeu
by Lightguard
We're working on doing the same thing here at work. We have Ajax4JSF and RichFaces in the war file (you could use the ear) and they seem to be working just fine. Double check to see if you have it loaded twice (like you thought might be happening) in the war / ear or on JBoss AS itself.
I also would like to see official support for maven. Both of the referenced seam archetypes seem defunct now (the lunarlogic one has source available if someone wants to take it over, I don't have time to maintain it). The softeu stuff looks really good, but I also think this is defunct. Maybe a merge of the two would be good. I know there have been talks (there's an eight page thread on the forum about this) of someone maintaining a repo for seam, but it looks like it didn't get as far as we were all hoping (there is a list of dependencies for seam 1.0.1, but nothing since).
I think Gavin's take (correct me if I'm wrong here) is for someone in the community to head it up, then they can reference that. An "official" JBoss support for maven would be very nice, but not as likely.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051041#4051041
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051041
18Â years, 10Â months
[JBoss jBPM] - process behavior
by ricardomarques
Hi
I have this process definition:
| <?xml version="1.0" encoding="UTF-8"?>
|
| <process-definition
| xmlns="urn:jbpm.org:jpdl-3.1" name="holiday-request">
| <swimlane name="initiator">
| <assignment expression="user(grover)"></assignment>
| </swimlane>
| <start-state name="enter request">
| <task name="request entry" swimlane="initiator">
| <controller>
| <variable name="start date" access="read,write,required"></variable>
| <variable name="duration" access="read,write,required"></variable>
| </controller>
| </task>
| <transition name="" to="evaluate request"></transition>
| </start-state>
| <end-state name="end"></end-state>
| <task-node name="evaluate request">
| <task name="entry evaluation" swimlane="initiator">
| <controller>
| <variable name="start date" access="read"></variable>
| <variable name="duration" access="read"></variable>
| <variable name="info" access="read"></variable>
| <variable name="decision"></variable>
| </controller>
| </task>
| <transition name="More info needed" to="give addition info"></transition>
| <transition name="approve/disapprove" to="end"></transition>
| </task-node>
| <task-node name="give addition info">
| <task name="additional info entry" swimlane="initiator">
| <controller>
| <variable name="start date" access="read"></variable>
| <variable name="duration" access="read"></variable>
| <variable name="info"></variable>
| </controller>
| </task>
| <transition name="" to="evaluate request"></transition>
| </task-node>
| </process-definition>
|
| And... when I start a work on a instance and retrive the variables and transitions, I get 4 vars: start date, duration,info and decision. And on the transitions I get 2 transitions "More info needed" and "approve/disapprove".
|
| I guess that it should give me this results, because i'm not on the node "evaluate request" (i guess).
|
| Is the behavior ok? I'm doing somethig wrong?
|
| Thanks in advance.
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051035#4051035
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051035
18Â years, 10Â months
[JBoss Portal] - Help: Instance of a existent portlet in my new container pag
by FcoLva
Hello my friends I'm new in JBoss Portal.
I need help :). Here is my issue:
I'm attempting to create an instance of the navigation portlet (a portlet that already exists in Jboss portal) in my new Container page of my portlet HelloWorldPorlet. Let me explain it better:
I need to do a container page only for my portlet HelloWorldPortlet, that's an easy thing, i just build my helloworld-object.xml this way:
<?xml version="1.0" encoding="UTF-8"?>
| <deployments>
| <deployment>
| <if-exists>overwrite</if-exists>
| <parent-ref>default</parent-ref>
| <page>
| <page-name>HelloWorldPContainerPage</page-name>
| <window>
| <window-name>HelloWorldPortletWindow</window-name>
| <instance-ref>HelloWorldPortletInstance</instance-ref>
| <region>center</region>
| <height>1</height>
| </window>
| </page>
| </deployment>
| </deployments>
But, my problem is that I need a navigation portlet for my new container page, so i will be able to navigate to the other pages of the portal. Rigth now i can't because i dont know how to deploy a nav portlet in my *-object.xml.
Someone help me :D please.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051027#4051027
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051027
18Â years, 10Â months