[Design of JBoss jBPM] - Re: Undeployment in JBosss Deployer
by heiko.braun@jboss.com
anonymous wrote :
| you can reactivate it if it was by mistake
|
Why should it be different then any other Java EE deployment? You guys always try to come up with extraordinary requirements for processes. If you delete an EAR there is no backup either. I think people are smart enough to understand the impact.
But in general you should discuss wether or not to keep the deployer at all.
The way it was written, it did intend additional changes to the core runtime. Especially classloader association upon deployment. In order to get the classloader scoping right, we would need to associate the classloader that the deployer framework provides and not write class info to the database. Similiar to what Bernd did to jbpm3.
If we would complete it in that way, the question of deletion versus suspension would become different.
But honestly, that whole deployment discussion has been going on since december last year and I am tired of repeating myself.
I'd say either you complete the deployer or you remove it at all.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4238448#4238448
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4238448
16 years, 9 months
[Design of JBoss jBPM] - Blank page issues in console CR1
by heiko.braun@jboss.com
Here's the actual fix for the blacnk page problem on IE and FF 3.x.
The closing script tags have been missing:
| Bonanova:war hbraun$ svn diff -r4964:5056
| Index: src/main/resources/org/jboss/bpm/console/public/Application.html
| ===================================================================
| --- src/main/resources/org/jboss/bpm/console/public/Application.html (revision 4964)
| +++ src/main/resources/org/jboss/bpm/console/public/Application.html (revision 5056)
| @@ -3,14 +3,14 @@
| <title>GWT Console Application</title>
|
| <!-- BPM console configuration -->
| - <script type="text/javascript" src="console.config.js"/>
| + <script src="console.config.js" type="text/javascript"></script>
|
| <!-- -->
| <!-- This script loads your compiled module. -->
| <!-- If you add any GWT meta tags, they must -->
| <!-- be added before this line. -->
| <!-- -->
| - <script language='javascript' src='org.jboss.bpm.console.Application.nocache.js'/>
| + <script src="org.jboss.bpm.console.Application.nocache.js" type="text/javascript"></script>
|
| <link rel="stylesheet" href="console.css" type="text/css">
|
|
It's been commited to trunk.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4238442#4238442
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4238442
16 years, 9 months