There is a bug in the functionality of the jbpm-db's build.xml in conjunction 
with its interaction with the org.jbpm.db.JbpmSchema class. In this class, the 
conditional test which determines whether scripts should be generated expects 
exactly 3 arguments:

...
      } else if ( (args!=null)
              && (args.length==3)
              && ("scripts".equalsIgnoreCase(args[0])) ) {
        new 
JbpmSchema(JbpmSessionFactory.createConfiguration()).saveSqlScripts(args[1], 
args[2]);
...

However, in the build.xml, the call which invokes the class sends 5 arguments, 
and hence, the code will always fail, and scripts will not be generated:

  
        
    
    
      
       
       
       
       
       
     
   

A workaround to make the script generation work is to comment out the last two 
parameters in the build.xml script, as below:


        
    
    
      
       
       
       
        <!--
       
       
        -->
     
   

Cheers,

Brad

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955136#3955136

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3955136

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to