[JBoss Portal] New message: "Re: Resources for using portal api"
by Wesley Hales
User development,
A new message was posted in the thread "Resources for using portal api":
http://community.jboss.org/message/527113#527113
Author : Wesley Hales
Profile : http://community.jboss.org/people/wesleyhales
Message:
--------------------------------------------------------------
In version 1.0.0.CR2 The PortalIdentity component is external to the core api/impl, so make sure you are building your project with the -Psso switch in "mvn install". Also I would recommend using the 2.0.0.CR1 version of the bridge instead of 1.0.x - because PortalIdentity is internal to the later 2.0 versions and you don't need to add it as a dependency of the project..
I would also check your components.xml, there are occasions when the archetype does not parse the maven expression language properly on the windows platform. Make sure everything looks good in that file.
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/527113#527113
16 years, 4 months
[JBoss Tools] New message: "Re: JEE 6"
by Max Andersen
User development,
A new message was posted in the thread "JEE 6":
http://community.jboss.org/message/527105#527105
Author : Max Andersen
Profile : http://community.jboss.org/people/max.andersen@jboss.com
Message:
--------------------------------------------------------------
The way to get this is that someone create maven archetypes that create projects that can run on both JBoss and Glassfish....then our seam integration will still work
We already support most of JSF2 and CDI in the tooling (codecompletion, openon etc.) so just try and use your maven projects with that and report bugs if the tools are behaving badly.
For full JEE6 support we would most likely need to move to Eclipse 3.6.0 since that is where the core WTP gets better understanding of JEE6.
But please yes, open jira requests and we'll do what we can - patches would of course also be very welcome
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/527105#527105
16 years, 4 months
[JBoss Portal] New message: "Re: Resources for using portal api"
by Monkey Den
User development,
A new message was posted in the thread "Resources for using portal api":
http://community.jboss.org/message/527101#527101
Author : Monkey Den
Profile : http://community.jboss.org/people/monkeyden
Message:
--------------------------------------------------------------
The example in the video is pretty simple but it doesn't deploy correctly. Here is the error I get on startup:
Exception sending context initialized event to listener instance of class org.jboss.seam.servlet.SeamListener
java.lang.RuntimeException: error while reading /WEB-INF/components.xml
at org.jboss.seam.init.Initialization.initComponentsFromXmlDocument(Initialization.java:231)
at org.jboss.seam.init.Initialization.create(Initialization.java:134)
at org.jboss.seam.servlet.SeamListener.contextInitialized(SeamListener.java:35)
at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3856)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4361)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:790)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:770)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:553)
at sun.reflect.GeneratedMethodAccessor138.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
....
Caused by: java.lang.RuntimeException: Error loading element PortalIdentity with component name null and component class null
Can anyone shed some light on it?
Thanks
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/527101#527101
16 years, 4 months
[jBPM] New message: "Hello everyone, in my company we are currently evaluating transition from the .NET workflows to the jBPM and I have a question, that is vital for our transition. We want to use the signavio editor that is bundled with the jBPM package to allow users to c"
by Martin Drasar
User development,
A new message was posted in the thread "Hello everyone, in my company we are currently evaluating transition from the .NET workflows to the jBPM and I have a question, that is vital for our transition. We want to use the signavio editor that is bundled with the jBPM package to allow users to c":
http://community.jboss.org/message/527095#527095
Author : Martin Drasar
Profile : http://community.jboss.org/people/drasha
Message:
--------------------------------------------------------------
Hello everyone,
in my company we are currently evaluating transition from the .NET workflows to the jBPM and I have a question, that is vital for our transition.
We want to use the signavio editor that is bundled with the jBPM package to allow users to create their own workflows and choose events that would trigger them. It is necessary that the user is able to create the workflow from top to bottom without the need for an intervention from any programmer or such. With our previous .NET solution (that was abandoned because of a lack of an easy support for a failover and other jBoss feats), we have had prepared several activities or tasks that executed crucial atomic operations. For example there was an activity that made an outgoing call to a specified number.
Looking at the signavio editor I see that there is a set of activities that are either too abstract (Task) or too much for programmers (Java task). What I would like to do is to add an activity to the editor, that would do some specific action and would require minimum input data (like the phone number and nothing else).
I already know how to add such custom activity to the editor (by editing the stencilset), however this newly added activity is not saved into the *.jpdl.xml file.
So my question is - how to add new custom activity into editor and make it translate into something that the jBPM engine can process and run? For example the activity to make an outgoing call could be translated inside the jpdl file into custom task and coupled event-listener.
I hope I have made myself clear.
Thanks for your time and any answer.
Martin
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/527095#527095
16 years, 4 months
[jBPM] Document updated/added: "Custom activities/tasks in signavio editor that can be run in jBPM"
by Martin Drasar
User development,
The document "Custom activities/tasks in signavio editor that can be run in jBPM", was updated Feb 18, 2010
by Martin Drasar.
To view the document, visit:
http://community.jboss.org/docs/DOC-14834#cf
Document:
--------------------------------------------------------------
Hello everyone,
in my company we are currently evaluating transition from the .NET workflows to the jBPM and I have a question, that is vital for our transition.
We want to use the signavio editor that is bundled with the jBPM package to allow users to create their own workflows and choose events that would trigger them. It is necessary that the user is able to create the workflow from top to bottom without the need for an intervention from any programmer or such. With our previous .NET solution (that was abandoned because of a lack of an easy support for a failover and other jBoss feats), we have had prepared several activities or tasks that executed crucial atomic operations. For example there was an activity that made an outgoing call to a specified number.
Looking at the signavio editor I see that there is a set of activities that are either too abstract (Task) or too much for programmers (Java task). What I would like to do is to add an activity to the editor, that would do some specific action and would require minimum input data (like the phone number and nothing else).
I already know how to add such custom activity to the editor (by editing the stencilset), however this newly added activity is not saved into the *.jpdl.xml file.
So my question is - how to add new custom activity into editor and make it translate into something that the jBPM engine can process and run? For example the activity to make an outgoing call could be translated inside the jpdl file into custom task and coupled event-listener.
I hope I have made myself clear.
Thanks for your time and any answer.
Martin
--------------------------------------------------------------
16 years, 4 months