[JBoss Tools] - UISelectOne and selectOneMenu
by yasser zairi
yasser zairi [http://community.jboss.org/people/yasser_z] created the discussion
"UISelectOne and selectOneMenu"
To view the discussion, visit: http://community.jboss.org/message/618222#618222
--------------------------------------------------------------
hi everyone
i'm trying to get the selected item from a selectOneMenu by using UISelectOne but it doesn't work not even does it displey an error .
PS: the selectOneMenu is populated without a problem.
---------------------------------------------------------------
<a4j:outputPanel layout="block">
<h:outputLabel value="Categorie :" />
<h:selectOneMenu id="select_cat" value="#{valeursMBean.selected}" >
<f:selectItem itemLabel="--categorie"/>
<f:selectItems value="#{valeursMBean.categories}"/>
</h:selectOneMenu>
</a4j:outputPanel>
<a4j:commandButton value="Search" reRender="table"
action="#{valeursMBean.takeSelection}" />
---------------------------------------------------------------
private UISelectOne selected=new UISelectOne();
public void takeSelection() {
System.out.println("value : "+selected.getValue());
}
---------------------------------------------------------------
but i don't get nth displayed in the Console.
any suggestions please ?
Regards
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/618222#618222]
Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
14 years, 8 months
Specify management interface credentials when deploying using JBoss 7 Maven plugin
by Sergey Zhigunov
Hi,
Does anybody knows how to specify user / password when running JBoss 7
Maven plugin?
I am running JBoss 7 final and trying to deploy quickstarts app. I
have JBoss management interface secured with admin / admin. I am
getting:
"Could not execute goal deploy on jboss-as-helloworld.war. Reason: No
more authentication mechanisms to try'
I tried to add server definition to Maven settings.xml:
<server>
<id>localhost</id>
<username>admin</username>
<password>admin</password>
</server>
And added to plugin definition in pom.xml:
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<version>7.0.0.Final</version>
<configuration>
<servername>localhost</servername>
<hostname>localhost</hostname>
</configuration>
</plugin>
It does not work.
Thanks,
Sergey
14 years, 8 months
[JBoss Tools] - m2e(clipse)-wtp 0.13.0 : New & Noteworthy
by Fred Bricon
Fred Bricon [http://community.jboss.org/people/fbricon] modified the blog post:
"m2e(clipse)-wtp 0.13.0 : New & Noteworthy"
To view the blog post, visit: http://community.jboss.org/community/tools/blog/2011/06/23/m2eclipse-wtp-...
--------------------------------------------------------------
h3. Embracing Indigo
So, Eclipse 3.7 a.k.a. Indigo has been released. This year, 62 Eclipse projects were made available on the same day. Part of the release train is M2E 1.0.0, which succesfully graduated from the Eclipse incubator. Congrats to all the teams involved!
m2e-wtp 0.13.0 is finally available as well. Last minute bugs prevented an earlier release and made our lives a bit difficult, but thanks to Igor Fedorenko, we made it. As you will discover, the WTP integration with Maven is thighter than ever! The complete release notes are available here (https://issues.sonatype.org/secure/ReleaseNote.jspa?projectId=10310&versi...), but let's take a quick look at what's new and noteworthy :
h3. Discovery / installation
Once m2e is installed, there are several ways to install m2e-wtp. First you need to wipe the m2eclipse-extras update site from your memory (and eclipse), it only contains m2e 0.12.0 compatible plugins :
*IMPORTANT UPDATE* : m2e-wtp has been temporarily removed from the m2e marketplace (http://dev.eclipse.org/mhonarc/lists/m2e-users/msg00938.html). Please consider option #3 while we're working on fixing the problem.
1) Import existing Java EE projects into the workspace; You'll be proposed to install the m2e-wtp plugin :
http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3913-1657... (http://community.jboss.org/servlet/JiveServlet/showImage/38-3913-16576/m2...)
click on Finish and the installation will proceed. Your projects will be imported but the workspace will have to be restarted.
2) Go to Window > Preferences > Maven > Discovery and click on "Open catalog". Select m2e and proceed with the installation.
3) Old school installation : Use this update site : https://repository.sonatype.org/content/sites/forge-sites/m2eclipse-wtp/0...
*IMPORTANT UPDATE 2* : m2e-wtp 0.13.1 is available from a new update site url ( http://dev.eclipse.org/mhonarc/lists/m2e-users/msg00938.html http://download.jboss.org/jbosstools/updates/m2eclipse-wtp/).
h3. Experimental war overlay support
Finally, after all these years, m2e-wtp offers support for http://maven.apache.org/plugins/maven-war-plugin/overlays.html maven war overlays. The idea is to share common resources between several web applications. One use case could be to easily share logos, style sheets etc... in a corporate environment. All you need to do is declare in your web application pom.xml a dependency to another war artifact.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>foo.bar</groupId>
<artifactId>war</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>foo.bar</groupId>
<artifactId>overlaid</artifactId>
<version>0.0.1-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
</project>
By default, all the contents of the overlaid artifact will be copied to the deployment directory of the web application, minus the MANIFEST.MF. *The resources of the web application take precedence, in case of duplicate files*.
If your project depends on a war archive (from your local repository), that dependency will be unzipped under target/m2e-wtp/overlays/<dependency>/ before being deployed to your server, according to the overlay configuration (you can select what files are included/excluded). For instance :
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<overlays>
<overlay>
<groupId>foo.bar</groupId>
<artifactId>overlaid</artifactId>
<excludes>
<exclude>WEB-INF/lib/*</exclude>
</excludes>
</overlay>
</overlays>
</configuration>
</plugin>
... won't deploy the jars from overlaid (project or archive)/WEB-INF/lib
If the dependency is another web project in your workspace, the deployed resources will be dynamically determined from the overlay configuration and any file changed in the overlaid project will be automatically redeployed to the target server.
Below is an example where the "war" project depends on an "overlaid" war project and hudson-war-2.0.1.war(before you asked, it's because this one is available in central). The images/hudson.png file is present in both overlay artifacts. The file is picked from "overlaid", since it's declared first in the pom. The deployed "war" project is a fully fledged CI server
http://community.jboss.org/servlet/JiveServlet/showImage/38-3913-16569/wa... http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3913-1656...
As of now, unsupported features of war overlays are :
- filtering
- exclusions of resources from the main project (defined as <overlay></overlay>)
There's plenty of room for performance optimizations, and it still needs to be tested "on the field" so please, please, do not consider this feature as production ready, it's still experimental.
Also note that the WTP overlay metadata format (in .settings/org.eclipse.wst.common.component) has changed and is incompatible with older development builds of m2e-wtp 0.13.0. So if you used previous nightly builds, you should reimport your projects without their eclipse metadata (.project, .classpath, .settings/)
h3. Removal of WTP classpath libraries
http://community.jboss.org/servlet/JiveServlet/showImage/38-3913-16570/cl... http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3913-1657...
Since its infancy, m2e-wtp suffered from outstanding classpath resolution issues when unit tests were being run. It turned out some dependencies were being leaked by the WebApp and EAR classpath libraries, installed by default on Java EE projects. Having these libraries also required extra code complexity to move workspace dependencies from one library to the other. In m2e-wtp 0.13.0, a rather radical solution was taken : remove these WTP libraries after they're being automatically added by WTP. Guess what? it solved all the classpath issues occurring during tests and simplified the code. So from now on, you will just see the following libraries in the project explorer
:
h3.
h3. 'Deployed Resources' node in the Project View
http://community.jboss.org/servlet/JiveServlet/showImage/38-3913-16572/de... http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3913-1657...
Previous m2-wtp versions displayed a *Web Resources* node, for Web projects, or *Application Resources* for EARs, in the Project View. These nodes aggregate the content that must be deployed on the server / packaged in the final archive. A *Web Resources* node is already provided by JBoss Tools for projects having the JSF Facet installed. So, in order to avoid confusion, the nodes contributed by m2e-wtp have been renamed more appropriately to *Deployed Resources* :
h3. Maven-generated MANIFEST.MF
Up until now, in m2e-wtp, the manifest was generated "manually" using WTP's API, for web projects only. In the process, the man
ifest kinda fixed some maven shortcomings in order to handle skinny wars (didn't add a classpath prefix for EJBs, contrary to maven). Now, for Web, EAR, EJB, Utility and Connector projects, the manifest is generated via a call to the Maven's archiver.
That means no more impedance mismatch between Maven and Eclipse manifests. http://maven.apache.org/shared/maven-archiver/index.html Manifest customization is reflected on the fly in the generated file.
For jar, ejb and connector projects, it is generated under target/classes. For web projects, it goes under
target/m2e-wtp/web-resources/ and for EARs, goes under target/m2e-wtp/ear-resources/
http://community.jboss.org/servlet/JiveServlet/showImage/38-3913-16571/ma... http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3913-1657...
Since the EAR library is gone, the manifest is no longer used to reflect compile classpath within Eclipse and is only used for runtime classpath resolution.
Since it now follows the same rules as Maven, how do you handle skinny wars with EJBs and classpath prefix? One solution is to use your own Class-Path entry, which will be appended with the classpath computed by the maven archiver. So, for instance :
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
</manifest>
<manifestEntries>
<Class-Path>sample-ejb-${pom.version}.jar</Class-Path>
</manifestEntries>
</archive>
</configuration>
</plugin>
will generate something like :
> Manifest-Version: 1.0
> Built-By: fbricon
> Build-Jdk: 1.6.0_24
> Class-Path: *sample-ejb-0.0.1-SNAPSHOT.jar* lib/sample-util-0.0.1-SNAPSH
> OT.jar
> Created-By: Maven Integration for Eclipse
Of course, the *"Created-By: Maven Integration for Eclipse"* entry can be overwritten using your own value :
<manifestEntries>
<Created-By>My kick-ass IDE</Created-By>
</manifestEntries>
Finally, we tried to delete all MANIFESTS.MFs automatically generated by WTP. So hopefully, your source control shouldn't be polluted anymore.
h3. Support for EAR Resource filtering
m2e-wtp now supports http://maven.apache.org/plugins/maven-ear-plugin/examples/filtering-sourc... EAR resource filtering, pretty much the same way http://community.jboss.org/en/tools/blog/2011/05/03/m2eclipse-wtp-0120-ne... Web projects do. Just add the filtering attribute to your maven-ear-plugin configuration :
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>2.6</version>
<configuration>
<filtering>true</filtering>
...
</configuration>
</plugin>
</plugins>
Filtered resources are generated under target/m2e-wtp/ear-resources/
http://community.jboss.org/servlet/JiveServlet/showImage/38-3913-16573/ea... http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3913-1657...
h3. Dropped support for Eclipse 3.5 and older versions
In order to support war overlays, m2e-wtp 0.13.0 is taking advantage of several APIs that were made available in Eclipse 3.6 ( Helios). The direct consequence is it's not longer compatible with Eclipse 3.5 (Galileo) based platforms and of course older versions. However it's been tested against Eclipse 3.6 and 3.7 on the continuous integration server at JBoss.
h3. Now, what next?
Well, we're gonna see how the overlay support stands in the wild. If necessary, one or more 0.13.x bugfixes can be made available "quickly". One of the problem that delayed this release is a https://bugs.eclipse.org/bugs/show_bug.cgi?id=350138 conflict between m2e-wtp and the pom properties configurator. This lead us to remove the latter from m2e marketplace catalog to avoid confusion. I hope we can find a solution quickly in order to restore that plugin in the marketplace.
Next version (0.14.) should include Dali support, Application Client packaging support, bug fixes and https://issues.sonatype.org/browse/MECLIPSEWTP#selectedTab=com.atlassian.... more...
As always, if you find any issue or would like to see new useful features in m2e-wtp, please open a ticket at https://issues.sonatype.org/browse/MECLIPSEWTP https://issues.sonatype.org/browse/MECLIPSEWTP
Enjoy,
Fred.
https://twitter.com/#!/fbricon https://twitter.com/#!/fbricon
PS: Again, special kudos to Igor Fedorenko who supported me during this not-so-trivial release.
--------------------------------------------------------------
14 years, 8 months
[jBPM] - No Task with ID 7 was found!
by Xiaojun Hou
Xiaojun Hou [http://community.jboss.org/people/houxiaojun] created the discussion
"No Task with ID 7 was found!"
To view the discussion, visit: http://community.jboss.org/message/614342#614342
--------------------------------------------------------------
Sometimes when i start a process with jBPM5,the database has the saved the related task successfully.But when i complete the task through the human task view,in the console,information will be printed just like this:
[2011:06:158 15:06:580:debug] Message receieved on client : AddTaskResponse
[2011:06:158 15:06:581:debug] Arguments : [5]
[2011:06:158 15:06:743:debug] Message receieved on client : EventTriggerResponse
[2011:06:158 15:06:743:debug] Arguments : [org.jbpm.task.event.EventPayload@98bbf6]
Task completed 5
[2011:06:158 15:06:745:debug] Message receieved on client : EventTriggerResponse
[2011:06:158 15:06:745:debug] Arguments : [org.jbpm.task.event.EventPayload@147e668]
[2011:06:158 15:06:745:debug] Message receieved on client : EventTriggerResponse
[2011:06:158 15:06:746:debug] Arguments : [org.jbpm.task.event.EventPayload@167c5e3]
[2011:06:158 15:06:747:debug] Message receieved on client : EventTriggerResponse
[2011:06:158 15:06:750:debug] Arguments : [org.jbpm.task.event.EventPayload@1f0cf51]
Task completed 5
[2011:06:158 15:06:751:debug] Message receieved on client : EventTriggerResponse
[2011:06:158 15:06:751:debug] Arguments : [org.jbpm.task.event.EventPayload@c9b196]
Task completed 5
[2011:06:158 15:06:805:debug] Message receieved on client : GetTaskResponse
[2011:06:158 15:06:805:debug] Arguments : [javax.persistence.EntityNotFoundException: No Task with ID 5 was found!]
[2011:06:158 15:06:806:debug] Message receieved on client : GetTaskResponse
[2011:06:158 15:06:806:debug] Arguments : [javax.persistence.EntityNotFoundException: No Task with ID 5 was found!]
[2011:06:158 15:06:807:debug] Message receieved on client : GetTaskResponse
[2011:06:158 15:06:807:debug] Arguments : [javax.persistence.EntityNotFoundException: No Task with ID 5 was found!]
Sometimes like this and the database shows that task 7 was completed:
[2011:07:192 14:07:842:debug] Arguments : [7]
[2011:07:192 14:07:857:exception] No Task with ID 7 was found!
javax.persistence.EntityNotFoundException: No Task with ID 7 was found!
at org.jbpm.task.service.TaskServiceSession.getEntity(TaskServiceSession.java:669)
at org.jbpm.task.service.TaskServiceSession.getTask(TaskServiceSession.java:428)
at org.jbpm.task.service.TaskServerHandler.messageReceived(TaskServerHandler.java:95)
at org.jbpm.task.service.mina.MinaTaskServerHandler.messageReceived(MinaTaskServerHandler.java:41)
at org.apache.mina.core.filterchain.DefaultIoFilterChain$TailFilter.messageReceived(DefaultIoFilterChain.java:716)
at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessageReceived(DefaultIoFilterChain.java:434)
at org.apache.mina.core.filterchain.DefaultIoFilterChain.access$1200(DefaultIoFilterChain.java:46)
at org.apache.mina.core.filterchain.DefaultIoFilterChain$EntryImpl$1.messageReceived(DefaultIoFilterChain.java:796)
at org.apache.mina.filter.codec.ProtocolCodecFilter$ProtocolDecoderOutputImpl.flush(ProtocolCodecFilter.java:427)
at org.apache.mina.filter.codec.ProtocolCodecFilter.messageReceived(ProtocolCodecFilter.java:245)
at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessageReceived(DefaultIoFilterChain.java:434)
at org.apache.mina.core.filterchain.DefaultIoFilterChain.access$1200(DefaultIoFilterChain.java:46)
at org.apache.mina.core.filterchain.DefaultIoFilterChain$EntryImpl$1.messageReceived(DefaultIoFilterChain.java:796)
at org.apache.mina.filter.logging.LoggingFilter.messageReceived(LoggingFilter.java:177)
at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessageReceived(DefaultIoFilterChain.java:434)
at org.apache.mina.core.filterchain.DefaultIoFilterChain.access$1200(DefaultIoFilterChain.java:46)
at org.apache.mina.core.filterchain.DefaultIoFilterChain$EntryImpl$1.messageReceived(DefaultIoFilterChain.java:796)
at org.apache.mina.core.filterchain.IoFilterAdapter.messageReceived(IoFilterAdapter.java:119)
at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessageReceived(DefaultIoFilterChain.java:434)
at org.apache.mina.core.filterchain.DefaultIoFilterChain.fireMessageReceived(DefaultIoFilterChain.java:426)
at org.apache.mina.core.polling.AbstractPollingIoProcessor.read(AbstractPollingIoProcessor.java:693)
at org.apache.mina.core.polling.AbstractPollingIoProcessor.process(AbstractPollingIoProcessor.java:646)
at org.apache.mina.core.polling.AbstractPollingIoProcessor.process(AbstractPollingIoProcessor.java:635)
at org.apache.mina.core.polling.AbstractPollingIoProcessor.access$400(AbstractPollingIoProcessor.java:67)
at org.apache.mina.core.polling.AbstractPollingIoProcessor$Processor.run(AbstractPollingIoProcessor.java:1079)
at org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnable.java:64)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:619)
By the way,the task with id 5 shows completed in the database.Can somebody help me with this?
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/614342#614342]
Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
14 years, 8 months
[jBPM] - Problem running a process in the BPM Console
by doctorwho
doctorwho [http://community.jboss.org/people/doctorwho] created the discussion
"Problem running a process in the BPM Console"
To view the discussion, visit: http://community.jboss.org/message/617499#617499
--------------------------------------------------------------
Hello,
I have created a process using the eclipse tooling, and it will run inside of eclipse, but when I add it to Guvnor, and then build it so it shows in the BPM Console, it does not start properly.
When I try to start the process, it brings up a window that just shows:
_2_CommentInput _2_SkippableInput _2_ContentInput _2_TaskNameInput _2_PriorityInput _2_CommentInput _2_CommentInput _2_SkippableInput false _2_SkippableInput _2_ContentInput _2_ContentInput_2_TaskNameInput greeting _2_TaskNameInput _2_PriorityInput _2_PriorityInput krisv _3_pathInput _3_urlInput _3_resultOutput _3_pathInput /scripts/nic _3_pathInput _3_urlInput http://localhost:8082/TimeLineServiceApp_3_urlInput http://localhost:8082/TimeLineServiceApp_3_urlInput _3_resultOutput result _5_pathInput _5_urlInput _5_resultOutput _5_pathInput /scripts/seqgen _5_pathInput _5_urlInput http://localhost:8082/TimeLineServiceApp http://localhost:8082/TimeLineServiceApp _5_urlInput _5_resultOutput result _7_pathInput_7_urlInput _7_pathInput /scripts/slinc _7_pathInput _7_urlInput http://localhost:8082/TimeLineServiceApp http://localhost:8082/TimeLineServiceApp _7_urlInput _8_pathInput _8_urlInput _8_pathInput /scripts/scmfgen _8_pathInput _8_urlInput http://localhost:8082/TimeLineServiceApp http://localhost:8082/TimeLineServiceApp _8_urlInput _9_CommentInput _9_SkippableInput _9_ContentInput _9_TaskNameInput _9_PriorityInput _9_CommentInput _9_CommentInput _9_SkippableInput false_9_SkippableInput _9_ContentInput _9_ContentInput _9_TaskNameInput aceApproval _9_TaskNameInput _9_PriorityInput _9_PriorityInput krisv _10_toInput _10_contentInput _10_subjectInput _10_fromInput_10_toInput mailto:thisisnotmyemail@bork.com thisisnotmyemail(a)bork.com _10_toInput _10_contentInput The command passed the ASP with no problems. _10_contentInput _10_subjectInput ASP Command pass _10_subjectInput _10_fromInput workflow_10_fromInput _11_urlInput _11_urlInput http://localhost:8082/TimeLineServiceApp http://localhost:8082/TimeLineServiceApp _11_urlInput _13_toInput _13_contentInput _13_subjectInput _13_fromInput _13_toInput mailto:thisisnotmyemail@bork.com thisisnotmyemail(a)bork.com _13_toInput_13_contentInput The command failed the NIC check. _13_contentInput _13_subjectInput NIC Failure _13_subjectInput _13_fromInput workflow _13_fromInput _15_toInput _15_contentInput _15_subjectInput_15_fromInput _15_toInput thisisnotmyem mailto:ail@bork.com ail(a)bork.com _15_toInput _15_contentInput The command errored in SEQGEN. _15_contentInput _15_subjectInput The command had an error during SEQGEN. _15_subjectInput_15_fromInput workflow _15_fromInput return(result); return(result); return(!result); return(!result);
The above just looks like some of the definitions from the .bpmn file. Does anyone know what is going on here, and (hopefully) how to fix it?
I have attached a screenshot of the problem happening.
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/617499#617499]
Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
14 years, 8 months
[jBPM] - jBPM 5.1 & Spring
by Hugo Boss
Hugo Boss [http://community.jboss.org/people/adfasdfasdfhjasdfhasddfhasdfaj] created the discussion
"jBPM 5.1 & Spring"
To view the discussion, visit: http://community.jboss.org/message/618147#618147
--------------------------------------------------------------
Hi all,
i'm a Newbie and i have some questions about jBPM and Spring.
I'd like to call SpringService's out of a jBPM-Process. But at the moment i don't know how to do this...
1. Do i need domain specific processes to call my spring services? Or is there an easier solution... because i think then i would need an WorkItemHandler for every servicemethod which i want to call in any of my processes (including the configuration). I hope there is an easier way... i also could create some generic WorkItemHandler for my SpringServices... but may be there is already something supportet...
2. A design question: My process can be startet by userinteractions (from an FrontEnd) or by another program => events. So for every process i need a Service which encapsulate the service and has servicemethods like (doSomeAction, eventXyzOccured) so that i can call it from the frontEnd or other gateways... are there any design patterns? What is the best way to implement this? I want to implement my businesslogic in domainobjects and my processlogic in jBPM. My FrontEnd Applications can call functions (services) or start businessprocesses. Some services are used by the frontend and by the processes.
3. Transaction: If i start an process in a Spring Transaction will the transaction propagated to the jBPM and from the jBPM to my called services? So if the process calls 3 activities, and the third activity fails (unexcepected TechnicalError for example) everything should be rolled back. This should be possible... are there any tutorials?
I hope somebody can answer my questions. At the moment i keep on getting some practice in jBPM.
Best regards
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/618147#618147]
Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
14 years, 8 months