[JBoss jBPM] - Experimenting with jBPM
by apollosv
Hello All,
We have started development on a new in house project that involves use of workflow representations of a few business processes.
This will be a custom application which will deal predominantly with a lot of domain data that needs to go through a process lifecycle(workflow).
We will be building the domain, the application and need an engine(workflow) to extract out the workflow aspects of the application for needs of
1.) Lesser code to write to represent a workflow/process.
2.) Better abstraction in terms of separating business rules, domain logic and workflow aspects to a process.
3.) Easier to change the business process than having to change all the Java code related to the workflow.
Core Requirement: Connect the Domain instance that is being workflow enabled with the workflow related information that the engine works with.
We have started investing time in seeing how jBPM fits our needs as outlined above.
Has anybody used this product in such a scenario before? Is there any reference implementation that can be used in such a scenario?
I would be more than happy to provide any more information with regards to specific questions, just did not want to make this post too long.
Thank You,
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4171405#4171405
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4171405
17 years, 9 months
unknown Tx PropagationContext on upgrade
by deckrider
We are upgrading from jboss as 4.0.3SP1 to 4.2.3.GA and are seeing
many repeated messages from the CONSOLE such as the following at the
end of this note.
Is there anyone who could kindly drop a few clues my way as to where I
can look to address these errors and why they aren't seen in the
earlier jboss as version?
Thanks in advance, and now the errors:
12:57:37,752 ERROR [PropagationContextManager] jboss-atx: unknown Tx
PropagationContext
12:57:37,753 ERROR [PropagationContextManager] jboss-atx: unknown Tx
PropagationContext
12:57:37,757 ERROR [PropagationContextManager] jboss-atx: unknown Tx
PropagationContext
12:57:37,758 ERROR [PropagationContextManager] jboss-atx: unknown Tx
PropagationContext
12:57:37,759 ERROR [PropagationContextManager] jboss-atx: unknown Tx
PropagationContext
12:57:37,761 ERROR [PropagationContextManager] jboss-atx: unknown Tx
PropagationContext
12:57:37,762 ERROR [PropagationContextManager] jboss-atx: unknown Tx
PropagationContext
12:57:37,762 ERROR [PropagationContextManager] jboss-atx: unknown Tx
PropagationContext
--
ASCII ribbon campaign:
() against HTML email
/\ against Microsoft attachments
Information: http://www.expita.com/nomime.html
17 years, 9 months
[JBoss jBPM] - jbpm-console 4.4.GA and
by ericcart
I've just configured a jboss-4.2.2.GA and jbossesb-4.4.GA.
All works OK..... but when I try to deploy a processdefinition.xml at jbpm-console .... I'm getting: "Error deploying process: An exception of type "org.jbpm.jpdl.JpdlException" was thrown. The message is: [[ERROR] no processdefinition.xml inside process archive]"
This is the processdefinition.xml:
<?xml version="1.0" encoding="UTF-8"?>
|
| <process-definition xmlns="" name="TEST">
|
|
| <start-state name="start-state1">
| <transition to="end-state1"></transition>
| </start-state>
|
|
| <end-state name="end-state1"></end-state>
|
|
| </process-definition>
No exceptions at the log file, no other errors.
I've run several tests, all stuff seems to be Ok and working (my own applications included).
What 's happening ?
Thanks in advance,
Eric
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4171401#4171401
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4171401
17 years, 9 months
[JBossWS] - Re: IllegalStateException Cannot find property
by gryffin
Here's the relevant part of the port class,
/**
| * This class was generated by the JAX-WS RI.
| * JAX-WS RI 2.1.3-b02-
| * Generated source version: 2.0
| *
| */
| @WebService(name = "AssetAPIServicePortType", targetNamespace = "http://service.api.mobileview.aeroscout.com")
| public interface AssetAPIServicePortType {
|
|
| /**
| *
| * @param in0
| * @return
| * returns com.boeing.nmt.foo.AssetDTO
| */
| @WebMethod
| @WebResult(name = "out", targetNamespace = "http://service.api.mobileview.aeroscout.com")
| @RequestWrapper(localName = "update", targetNamespace = "http://service.api.mobileview.aeroscout.com", className = "com.boeing.nmt.foo.Update")
| @ResponseWrapper(localName = "updateResponse", targetNamespace = "http://service.api.mobileview.aeroscout.com", className = "com.boeing.nmt.foo.UpdateResponse")
| public AssetDTO update(
| @WebParam(name = "in0", targetNamespace = "http://service.api.mobileview.aeroscout.com")
| AssetDTO in0);
And here's the Update class itself. Perhaps I'm missing some namespace value in here?
| package com.boeing.nmt.foo;
|
| import java.io.Serializable;
| import javax.xml.bind.annotation.XmlAccessType;
| import javax.xml.bind.annotation.XmlAccessorType;
| import javax.xml.bind.annotation.XmlElement;
| import javax.xml.bind.annotation.XmlRootElement;
| import javax.xml.bind.annotation.XmlType;
|
|
| /**
| * <p>Java class for anonymous complex type.
| *
| * <p>The following schema fragment specifies the expected content contained within this class.
| *
| * <pre>
| * <complexType>
| * <complexContent>
| * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
| * <sequence>
| * <element name="in0" type="{http://dto.api.mobileview.aeroscout.com}UserDTO"/>
| * </sequence>
| * </restriction>
| * </complexContent>
| * </complexType>
| * </pre>
| *
| *
| */
| @XmlAccessorType(XmlAccessType.FIELD)
| @XmlType(name = "", propOrder = {
| "in0"
| })
| @XmlRootElement(name = "update", namespace = "http://service.api.mobileview.aeroscout.com")
| public class Update
| implements Serializable
| {
|
| private final static long serialVersionUID = 1L;
| @XmlElement(namespace = "http://service.api.mobileview.aeroscout.com", required = true, nillable = true)
| protected UserDTO in0;
|
| /**
| * Gets the value of the in0 property.
| *
| * @return
| * possible object is
| * {@link UserDTO }
| *
| */
| public UserDTO getIn0() {
| return in0;
| }
|
| /**
| * Sets the value of the in0 property.
| *
| * @param value
| * allowed object is
| * {@link UserDTO }
| *
| */
| public void setIn0(UserDTO value) {
| this.in0 = value;
| }
|
| }
|
This code was generated by wsconsume from the JBossWS package. I used a jaxb binding file with generateElementProperty="false" .
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4171384#4171384
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4171384
17 years, 9 months