[Design of JBoss jBPM] - Re: various questions
by tom.baeyens@jboss.com
"Fady" wrote : First of all, each workflow instance should be given a subject
| ...
| the
| subject field provides with a quick way of identifying a task.
|
you mean as a variable ? what data should be filled in ? i don't think that it is a good idea to force the user to enter a subject. apart from that, the process definition contains a name and a description.
also the task definition has a name that is copied into the task instance as a kind of default value. after that, the task instance name is changeable. don't know if the UI allows this currently, though.
would the task instance name cover your requirements ? or how is your subject different ?
"Fady" wrote : and a
| priority.
| ...
| The
| priority fields highlights the criticality of the task
|
task definitions already have a priority. this priority is copied into a task instance when it is created. then the priority can be changed for that specific task instance. is that what you're looking for ?
"Fady" wrote :
| Moreover, is there any extra documentation outside the repository? For
| instance I want to know what each JBPM tag is doing without having to
| go into the actual code. An architecture document if available would
| be very helpful.
|
currently i'm the architecture document :-( feel free to use me for this purpose. maybe i should respond to all your questions in a wiki page so that can grow to become the architecture document...
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4012321#4012321
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4012321
19 years, 2 months
[Design of JBoss jBPM] - various questions
by tom.baeyens@jboss.com
taking the liberty to post Fady's questions here so everyone can follow the conversation and join in.
"Fady" wrote : Dear Tom,
| I have been reviewing the code of JBPM in CVS and the code of the
| web-console specifically.
| And I believe a number of enhancements need to take place.
|
| First of all, each workflow instance should be given a subject and a
| priority. Those fields can be hidden for some users. The benefits of
| them come when someone is dealing with a large number of tasks. The
| priority fields highlights the criticality of the task while the
| subject field provides with a quick way of identifying a task.
|
| Moreover, is there any extra documentation outside the repository? For
| instance I want to know what each JBPM tag is doing without having to
| go into the actual code. An architecture document if available would
| be very helpful.
|
| Waiting for your feedback,
|
| Best Regards,
| Fady
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4012314#4012314
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4012314
19 years, 2 months
[Design of JBoss Web Services] - Re: Text nodes in SOAP messages
by thomas.diesler@jboss.com
SOAP-1.1 is also clear and does not allow text
http://www.w3.org/TR/2000/NOTE-SOAP-20000508/#_Toc478383503
anonymous wrote :
| 4.3 SOAP Body
|
| The SOAP Body element provides a simple mechanism for exchanging mandatory information intended for the ultimate recipient of the message. Typical uses of the Body element include marshalling RPC calls and error reporting.
|
| The Body element is encoded as an immediate child element of the SOAP Envelope XML element. If a Header element is present then the Body element MUST immediately follow the Header element, otherwise it MUST be the first immediate child element of the Envelope element.
|
| All immediate child elements of the Body element are called body entries and each body entry is encoded as an independent element within the SOAP Body element.
|
| The encoding rules for body entries are as follows:
|
| 1. A body entry is identified by its fully qualified element name, which consists of the namespace URI and the local name. Immediate child elements of the SOAP Body element MAY be namespace-qualified.
| 2. The SOAP encodingStyle attribute MAY be used to indicate the encoding style used for the body entries (see section 4.1.1).
|
| SOAP defines one body entry, which is the Fault entry used for reporting errors (see section 4.4).
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4012304#4012304
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4012304
19 years, 2 months
[Design the new POJO MicroContainer] - Re: Registering a bean as an aspect in the bootstrap
by scott.stark@jboss.org
Kabir, now none of the aspects configured via the AspectManager ctor xml are being applied, even when I add org.jboss.deployers to the include list. I have to specify the aspects via the aop:lifecycle-configure to get them to be applied.
There does not appear to be any support for specifying which method in an aspect to use via the aop:lifecycle-configure element. How would I map these aop.xml element to an aop:lifecycle-configure equivalent?
| <aspect name="track" class="org.jboss.profileservice.aop.TrackingAdvice"/>
| <bind pointcut="execution(* $instanceof{org.jboss.deployers.spi.attachments.Attachments}->addAttachment(..))">
| <advice name="addAttachment" aspect="track"/>
| </bind>
| <bind pointcut="execution(* $instanceof{org.jboss.deployers.spi.attachments.Attachments}->removeAttachment(..))">
| <advice name="removeAttachment" aspect="track"/>
| </bind>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4012283#4012283
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4012283
19 years, 2 months