Automatically rejected mail
by Mail Delivery Subsystem
Your message was automatically rejected by Dovecot Mail Delivery Agent.
The following reason was given:
Quota exceeded
17 years, 10 months
[JBoss jBPM] - Should I Use Jboss JBPM for this
by umerfar
We are in R&D phase for a given project and we have to develop the underlying conceptual model. I am not sure whether this is appropriate section to put this question, i apologize in advance.
Scenario
There will be number of templates, each template may have number of activities and activities are assigned to a User, Role or a Group. Attachements (Questionnaires and Documents) can also be attached with any activities.
Any Client who comes for this system is handled as a Case (A new Use Case). This case will be assigned a particular template and then the process will be followed according to the activities assigned in template. This case is visible to the User, Role or a Group attached with Activities.
For example, a template may have an activity for "register user" and then "interview user" and then "request manager for approval" type of and all these activities are EDITBLE in the system by the admin i.e and admin can add "email verification" activity before "manager approval". At each activity there will be a pre-defined state of the system i.e: Started, Pending, Approved, Rejected.
I can put the conceptual diagram for the system on your request.
My first question is
Should or can we use Jboss jBPM for it? I am not able to decide it yet. Since the activities and the intercommunication between roles, activities and cases is giving me a green signal that its a workflow.
My second question is
I have read in the jboss-jpdl documentation, in section 3.4. Task assignment example
"Because of the separation between the jBPM
workflow engine and the organisational model, an expression language for calculating actors would always be too
limited"
So can't we assign task to the users or role graphically useing jpdl graphic designer and we have to write the custom code for that?? i am asking this because it is an important requirement for our applicaiton.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4171184#4171184
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4171184
17 years, 10 months
[Installation, Configuration & DEPLOYMENT] - Re: the order of loading class (urgency! urgency! urgency! )
by zhengxi
org.jboss.deployment.MainDeployer-xmbean.xml
value="250:.rar,300:-ds.xml,400:.jar,500:.war,550:.jse,650:.ear,800:.bsh"
==>
value="250:.rar,300:-ds.xml,400:.jar,450:.ear,500:.war,550:.jse,800:.bsh"
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4171180#4171180
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4171180
17 years, 10 months
[Installation, Configuration & DEPLOYMENT] - JBoss AS 4.2.3 start as service question
by wslyhbb
I previously had JBoss 4.0.5, I have upgraded to JBoss 4.2.3. I start JBoss at boot as a service.
/etc/rc.d/init.d/jboss:
#! /bin/sh
JBOSS_LOG_FILE=/var/log/jboss
JBOSS_HOME=${JBOSS_HOME:-"/usr/local/jboss-4.2.3.GA"}
start(){
echo "Starting jboss.."
# If using an SELinux system such as RHEL 4, use the command below
# instead of the "su":
# eval "runuser - jboss -c '/opt/jboss/current/bin/run.sh > /dev/null 2> /dev/null &'
# if the 'su -l ...' command fails (the -l flag is not recognized by my su cmd) try:
# sudo -u jboss /opt/jboss/bin/run.sh > /dev/null 2> /dev/null &
su -l jboss -c '$JBOSS_HOME/bin/run.sh 2>&1 $JBOSS_LOG_FILE &'
}
stop(){
echo "Stopping jboss.."
# If using an SELinux system such as RHEL 4, use the command below
# instead of the "su":
# eval "runuser - jboss -c '/opt/jboss/current/bin/shutdown.sh -S &'
# if the 'su -l ...' command fails try:
# sudo -u jboss /opt/jboss/bin/shutdown.sh -S &
su -l jboss -c '$JBOSS_HOME/bin/shutdown.sh -S &'
}
restart(){
stop
# give stuff some time to stop before we restart
sleep 60
# protect against any services that can't stop before we restart (warning this kills all Java instances running as 'jboss' user)
su -l jboss -c 'killall java'
# if the 'su -l ...' command fails try:
# sudo -u jboss killall java
start
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
*)
echo "Usage: jboss {start|stop|restart}"
exit 1
esac
exit 0
But when you do # service jboss start
Starting jboss..
Creating directory '/usr/local/jboss-4.0.5.GA/'.
Creating directory '/usr/local/jboss-4.0.5.GA//tmp'.
Where is it getting the jboss-4.0.5? I do not get it. The service starts fine, but I want to know why it is creating those folders.
Thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4171177#4171177
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4171177
17 years, 10 months