[jboss-user] [jBPM Users] - Re: How to use timers?

2009-11-24 Thread mputz
geez, guys, calm down again ;-) mauromol wrote : | I'm writing a test case, I am not running in a web application for now. | In that case, you still need persistence. With the DbSchedulerServiceFactory, timers are stored in the jBPM database and executed by the JobExecutor (which needs

[jboss-user] [JBoss jBPM] - Re: Failed to delete ProcessInstance due to foreign key cons

2009-08-03 Thread mputz
by 'both ways', are you referring to this: anonymous wrote : Deploy PD2 and then PD1 - delete both works fine | Deploy PD2 and then PD1 - execute PD1 and PD2 from PD1 - getting this error.. where the difference in the second way is that there are actually (ended) process instances? Other

[jboss-user] [JBoss jBPM] - Re: Failed to delete ProcessInstance due to foreign key cons

2009-07-31 Thread mputz
TejJBPM, this is jBPM 3, right? If you've got a process-state node in the process definition that you are trying to delete, you might want to try to delete the child process before. Although I have to say I don't see this FK violation in my environment (jBPM 3.2.5.SP5, MySQL 5.1.35,

[jboss-user] [JBoss jBPM] - Re: Failed to delete ProcessInstance due to foreign key cons

2009-07-31 Thread mputz
I'd give a newer jBPM 3.2.x version a try View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4247243#4247243 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4247243 ___ jboss-user

[jboss-user] [JBoss jBPM] - Re: Group Task Assignment proble- Unable to see task avalaib

2009-04-15 Thread mputz
@Swati, I think the heading 'Personal/Group Tasks' is just misleading in the JSF console implementation, as the list only contains those tasks that are actually assigned to the current user. But the list does *not* contain those tasks where no user is yet assigned, but where the current user

[jboss-user] [JBoss Portal] - Re: Drools

2009-03-24 Thread mputz
The Drools project uses mailing lists: http://jboss.org/drools/lists.html View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4220499#4220499 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4220499

[jboss-user] [JBoss jBPM] - Re: Jbpm 3.3.1 Timer Exception on executionContext.leaveNode

2009-02-16 Thread mputz
dleerob wrote : Should I be checking out http://anonsvn.jboss.org/repos/jbpm/jbpm3/trunk? If that going to have the latest source for 3.3.x? | Yes, this is the correct URL for the latest jBPM 3 sources. For more information regarding version 3.2.x and 3.3.x, please have a look at this

[jboss-user] [JBoss jBPM] - Re: Jbpm 3.3.x vs Jbpm 3.2.x

2009-02-16 Thread mputz
For more information regarding version 3.2.x and 3.3.x, please have a look at this thread: http://www.jboss.org/index.html?module=bbop=viewtopicp=4208999#4208999 The main difference between 3.3.x and 3.2.4 and higher versions is the introduction of the gwt console in 3.3. View the original

[jboss-user] [JBoss jBPM] - Re: Jbpm 3.3.1 Timer Exception on executionContext.leaveNode

2009-02-10 Thread mputz
I have created https://jira.jboss.org/jira/browse/JBPM-2036 for this bug. Thanks for reporting! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4208763#4208763 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4208763

[jboss-user] [JBoss jBPM] - Re: JBPM Logging Filter Not Working As Described

2009-01-26 Thread mputz
I don't think this is possible with jBPM 3 as there are direct references to the various log classes in lots of places. Therefore, one can only chose between all or nothing. AFAIK, jBPM 4 will bring improvements in that area, too: https://jira.jboss.org/jira/browse/JBPM-1213 View the original

[jboss-user] [JBoss jBPM] - Re: Hibernate and log4j

2009-01-12 Thread mputz
glnd wrote : on the other hand it misses the binding parameters information. | Can some help me to configure log4j? Thanks. The log4j settings are correct. The binding parameters aren't shown because of this bug: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2835 The

[jboss-user] [JBoss jBPM] - Re: jBPM 3.3.0GA and Oracle causing StaleObjectStateExceptio

2008-12-17 Thread mputz
Petr, please try to explicitly set the lock mode on the join: join name=join1 lock=UPGRADE and let us know how it works for you. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4197120#4197120 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem with a decision node in a fork, join construct.

2008-12-17 Thread mputz
Ronald, thanks for the unit test. I executed it against mysql, postgres and oracle (the real ones and not just h2 in the different modes to be sure), and here is what I've found: + join name='join' /* the default: leads to StaleObjectStateException with Oracle and Postgres */ | //+ join

[jboss-user] [JBoss jBPM] - Re: Problem with a decision node in a fork, join construct.

2008-12-16 Thread mputz
To finish up on my tests from yesterday, removing the flush() in the Join re-introduced the failure on the direct link from fork to join: | HSQLDB: 3.2.2: OK, 3.2.3: OK, 3.3.0: OK | Oracle: 3.2.2: FAILED, 3.2.3: OK, 3.3.0: FAILED | Postgres: 3.2.2: FAILED, 3.2.3: OK, 3.3.0:

[jboss-user] [JBoss jBPM] - Re: No auto-id for jbpm when running on Oracle

2008-12-16 Thread mputz
If you have created the jBPM tables using the provided jbpm.jpdl.oracle.sql script, a sequence should have been created, too: create sequence hibernate_sequence; The mapping files are held pretty generic when it comes to id generation: id name=id column=ID_generator class=native //id This allows

[jboss-user] [JBoss jBPM] - Re: Process deployment from eclips plugin fails when running

2008-12-16 Thread mputz
Have you set the correct hibernate dialect in hibernate.cfg.xml? property name=hibernate.dialectorg.hibernate.dialect.Oracle9Dialect/property View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196857#4196857 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem with a decision node in a fork, join construct.

2008-12-16 Thread mputz
if I only had a unit test... sigh... the lack of a proper test is probably the reason why the failure was reintroduced in 3.3.0. I'm pretty convinced this issue only shows on certain dbs, such as Oracle and Postgres. I can give it another try on MySQL, too (and then write a proper test ;-) )

[jboss-user] [JBoss jBPM] - Re: No auto-id for jbpm when running on Oracle

2008-12-16 Thread mputz
go, Ronald, go...! and Jan, I'm glad to hear your issue is resolved! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196983#4196983 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4196983

[jboss-user] [JBoss jBPM] - Re: How to configure org.jbpm.web.JobExecutorLauncher?

2008-12-15 Thread mputz
anonymous wrote : can't the job executor work with seam transactions? Just recently, I made a similar test and added the JobExecutorServlet to the dvdstore demo and experienced no issues when a timer fired. This was with Seam 2.0.2, and no other changes to the jBPM configs were necessary.

[jboss-user] [JBoss jBPM] - Re: Problem with a decision node in a fork, join construct.

2008-12-15 Thread mputz
anonymous wrote : Your memory works better than mine ;-) I don't know about that, but strangely enough I see roughly the same questions being asked at different channels by different users. Don't know yet why this coincidentally happens, but it does make me look as if I remembered things well

[jboss-user] [JBoss jBPM] - Re: Problem with a decision node in a fork, join construct.

2008-12-15 Thread mputz
I've made another test with a stripped version of your process. I've removed the decision handlers, and made a direct transition from fork to join in one of the branches. This is the result: | HSQLDB: 3.2.2: OK, 3.2.3: OK | Oracle: 3.2.2: FAILED, 3.2.3: OK | Postgres: 3.2.2:

[jboss-user] [JBoss jBPM] - Re: Problem with a decision node in a fork, join construct.

2008-12-15 Thread mputz
anonymous wrote : Deja-vu. Isn't https://jira.jboss.org/jira/browse/JBPM-1886 the cause for your deja-vu? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196522#4196522 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4196522

[jboss-user] [JBoss jBPM] - Re: Does AssignmentHandler work within the start node??

2008-11-26 Thread mputz
anonymous wrote : Why does taskInstance.getActorId() in method testSubmissionTask() equal null Your assignment handler will never be called when the TaskMgmtInstance.createStartTaskInstance() is used, have a look at the javadocs: | /** |* creates a task instance on the rootToken,

[jboss-user] [JBoss jBPM] - Re: End Node - End All Tasks

2008-11-25 Thread mputz
I think things got mixed up here. The 'end-complete-process' attribute on end-state only makes sense in an end-state that appears in a leg of a fork, and which should end the complete process, see https://jira.jboss.org/jira/browse/JBPM-1181. Ending a process does not end the taskInstances,

[jboss-user] [JBoss jBPM] - Re: End Node - End All Tasks

2008-11-25 Thread mputz
Using an ActionHandler with taskMgmtInstance.endAll() in the process-end event should work. If you experience any issues, please create a unit test, let us know which version you are working with and show us the exception. View the original post :

[jboss-user] [JBoss jBPM] - Re: variable scope from a script

2008-11-25 Thread mputz
There is a test case that covers this scenario: http://fisheye.jboss.org/browse/JBPM/jbpm.3/jpdl/jar/src/test/java/org/jbpm/context/exe/VariableScopingTest.java?r=1.1 Looking at testScopeOverriding(), this works properly if the createVariable(String name, Object value, Token token) is used.

[jboss-user] [JBoss jBPM] - Re: Need URL to get source code of jPdl web console

2008-11-04 Thread mputz
anonymous wrote : Are those the correct locations for all the source for the jbpm-console web-app? Almost, but the URL you have mentioned points to a specific patch branch. I would rather suggest to use the sources from the jbpm-3.2.3.GA tag: |

[jboss-user] [JBoss jBPM] - Re: NPE in GPD

2008-10-27 Thread mputz
java.lang.NullPointerException | at org.jbpm.gd.jpdl.notation.JpdlNode.getDestinationNode(Unknown Source) | looks like there is an incorrect transition somewhere in the process, pointing to a node that cannot be resolved. I would suspect the following: decision name=do manual?

[jboss-user] [JBoss jBPM] - Re: jbpm 3.1 to 3.2

2008-10-13 Thread mputz
Why not just wait for JBoss Portal 2.7 - or use the current CR1 release if you are in development - as the integration issues of getting jPBM 3.2.x to work with JBoss Portal have already been sorted out there? It integrates jBPM 3.2.2 and the GA date is not too far away. View the original post

[jboss-user] [JBoss jBPM] - Re: jbpm 3.1 to 3.2

2008-10-13 Thread mputz
Ronald, hmm, not sure about what you are looking at, but judging from the contents of the JBoss Portal binary releases, 2.7 is the first one that bundles jBPM 3.2 libraries. This matches the indicated fix version in https://jira.jboss.org/jira/browse/JBPORTAL-1957 View the original post :

[jboss-user] [JBoss jBPM] - Re: jBPM running on WebSphere 6

2008-10-09 Thread mputz
Have you seen this https://jira.jboss.org/jira/browse/JBPM-1179 ? I remember having struggled with this on Websphere, too, but as I'm a Websphere n00b, I quickly forgot how that endeavor ended. But maybe upgrading to jBPM 3.2.3 helps. View the original post :

[jboss-user] [JBoss jBPM] - Re: install jbpm 3.2.3 in jboss-4.2.2.GA

2008-09-25 Thread mputz
With the jBPM 3.2.3 suite, you've got all pieces ready to go. If you want to use the jbpm-enterprise.ear instead of the jbpm-console.war, which is deployed by default, just use the one from the jbpm-jpdl-3.2.3/deploy directory. Suppose you have extracted the jBPM 3.2.3 archive to a folder

[jboss-user] [JBoss jBPM] - Re: 'Global' transitions

2008-09-25 Thread mputz
Have you looked into Superstates, I think this could meet your requirements pretty well. They are visible in the process diagram, and you can signal the outgoing transition from any node inside the super-state. View the original post :

[jboss-user] [JBoss jBPM] - Re: error start JBOSS Application Server

2008-09-01 Thread mputz
Looks like there is an old version of log4j.jar around somewhere - TRACE level had been included since log4j version 1.2.12. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4173565#4173565 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: add new user

2008-08-18 Thread mputz
Petia, the SQL 42601 error comes up because the SQL statements are missing the trailing semicolons (;). | $ sed 's/$/;/g' jbpm.jpdl.postgresql.sql jbpm.jpdl.postgresql.delimiter.sql | $ psql -d database -U dbuser -W -f jbpm.jpdl.postgresql.delimiter.sql | Also, you'd need not only

[jboss-user] [JBoss jBPM] - Re: Terminated or deleted process instance?

2008-08-18 Thread mputz
anonymous wrote : The case i have is that Comment objects are attached to tokens in the process instance. I just tested GraphSession.deleteProcessInstance on a process with related comments, and they were deleted just fine. This was with jBPM 3.2.3. View the original post :

[jboss-user] [JBoss jBPM] - Re: Terminated or deleted process instance?

2008-08-15 Thread mputz
anonymous wrote : The actual delete is kinda tricky... Why not simply use org.jbpm.db.GraphSession#deleteProcessInstance(long processInstanceId) ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4170714#4170714 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Terminated or deleted process instance?

2008-08-15 Thread mputz
Leo, the GraphSession.deleteProcessInstance method *should* handle all references correctly, and should thus get rid of all data related to a process instance. If it does not, it would be great if you could provide more info about what is missed out, so that this can be fixed. View the

[jboss-user] [JBoss jBPM] - Re: Checking out source codes is forbidden now?

2008-08-14 Thread mputz
Wong, the sources have moved to SVN, check this out for a complete list of the jBPM links: http://www.jboss.org/jbossjbpm/jbpm_community/ to checkout the jBPM 3 sources: | svn co http://anonsvn.jboss.org/repos/jbpm/jbpm3/trunk . | View the original post :

[jboss-user] [JBoss jBPM] - Re: not binding factory to jndi, no JNDI name configured

2008-07-29 Thread mputz
I don't see any errors in the log snippet you provided. Moreover, everything looks alright. The 'no JNDI name configured' message is just an INFO message from Hibernate, nothing to worry about. What happens if you access http://localhost:8080/jbpm-console? View the original post :

[jboss-user] [JBoss jBPM] - Re: how to integrate commandservicebean

2008-07-29 Thread mputz
Check your datasource configuration file, it must have a section for the type-mapping: metadatatype-mappingHypersonic SQL/type-mapping/metadata | where the value matches one of the entries in server/jbpm/conf/standardjbosscmp-jdbc.xml. View the original post :

[jboss-user] [JBoss jBPM] - Re: jbpm with tomcat login

2008-07-11 Thread mputz
Ashish, have you configured a security realm? Have a look at '3. Setup a JDBC Realm in Tomcat' of this wiki: http://wiki.jboss.org/wiki/JbpmOnTomcat View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4163761#4163761 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Error in Process Definition Deployment.

2008-05-30 Thread mputz
anonymous wrote : The problem is if I try to instance a process from the eclipse, like I described. now, *that* is some information I was missing before! hsqldb is run in In-Process mode, which means as part of the running process (the app server) in the same JVM. But this also means the db

[jboss-user] [JBoss jBPM] - Re: Error in Process Definition Deployment.

2008-05-29 Thread mputz
@Ronald anonymous wrote : This is the second time that people do not know that in memory hsql databases are not shared well, maybe that's because it's not that obvious. it's in the connection.url (jdbc:hsqldb:mem:jbpm), but can be easily overlooked (just as I have ;-) ) @Fornachari What's

[jboss-user] [JBoss jBPM] - Re: Error in Process Definition Deployment.

2008-05-28 Thread mputz
/mputz/jboss/work/jbpm-jpdl-suite-3.2.2/server/server/jbpm/deploy/jbpm-test.war/ | |-- WEB-INF | | |-- classes | | | `-- hibernate.cfg.xml | | |-- lib | | | |-- jbpm-identity.jar | | | `-- jbpm-jpdl.jar | | `-- web.xml | `-- index.jsp | where

[jboss-user] [JBoss Portal] - Re: Portal LDAP integration problems

2008-04-18 Thread mputz
created http://jira.jboss.com/jira/browse/JBPORTAL-1996 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4145169#4145169 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4145169 ___

[jboss-user] [JBoss Portal] - Re: portlet doView is called multiple times

2008-04-14 Thread mputz
Is this happening with the default theme/layout, or with a customized one? I've seen multiple renderings with a modified jboss-portal.sar/portal-core.war/layouts/generic/index.jsp, which included the following: - a *.js file with 'document.write(...);' calls - references to images where

[jboss-user] [JBoss jBPM] - Re: Connections never close. Two many connections exception

2008-03-19 Thread mputz
if an app server is out of the picture, have a look at the following URLs, which contain helpful information on the c3p0 configuration options, especially in the combination with Hibernate: http://www.hibernate.org/214.html http://www.mchange.com/projects/c3p0/index.html#hibernate-specific I'm

[jboss-user] [JBoss jBPM] - Re: Problem with changing backend database to mysql

2008-03-18 Thread mputz
David, thanks for the feedback! Glad to hear that my comments helped. All the best for your further jBPM adventures! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4137337#4137337 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem with changing backend database to mysql

2008-03-11 Thread mputz
True, the docs are not completely matching the 3.2 version, as the paths mentioned in this chapter still refer to the 3.1.x starters kit. But in general, the process of switching the DB backend is still roughly the same. Now, back to your initial issue. I'm wondering if your config changes are

[jboss-user] [JBoss jBPM] - Re: JBPM, Tomcat6 and Postgres8.2 issue

2008-03-10 Thread mputz
As Ronald already pointed out, without detailed information it's almost impossible to give proper advice. If you're experiencing problems, these are usually reflected in the logs, so it's always a good idea to have a look into these and report any exceptions you can find there. Right now, I

[jboss-user] [JBoss jBPM] - Re: Problem with changing backend database to mysql

2008-03-10 Thread mputz
First, if you really want to use the datasource as defined in jbpm-ds.xml, you should alter hibernate.cfg.xml to resemble this: | !-- DON'T USE DIRECT HIBERNATE CONFIGS, USE DATASOURCE INSTEAD -- | !-- | property

[jboss-user] [JBoss jBPM] - Re: Table not found in statement. While deloying a Process D

2008-03-07 Thread mputz
If you want to use hsqldb as defined in jbpm-ds.xml, you have to make sure that the JbpmDS datasource is referenced from hibernate.cfg.xml. Change it to: !-- JDBC connection properties (begin) === | NOT USED, THE CONNECTION PROPERTIES ARE DEFINED IN jbpm-ds.xml! | property

[jboss-user] [JBoss jBPM] - Re: Running Seam and JPBM in a separate schema

2008-03-06 Thread mputz
anonymous wrote : Unabled to enlist resource, see the previous warnings This is coming from JBossTS TransactionManager used in JBoss 4.2.x, which is more strict about enlisting multiple resources in a single transaction than the previous implementation from JBoss 4.0.x. See

[jboss-user] [JBoss jBPM] - Re: Switching the Database Backend

2008-03-06 Thread mputz
EhCache? what jBPM version are you using? I'd expect to see property name=hibernate.cache.provider_classorg.hibernate.cache.HashtableCacheProvider/property in hibernate.cfg.xml, as this is the default cache provider setting in the recent versions. View the original post :

[jboss-user] [JBoss jBPM] - Re: jbpm-jpdl.jar deployment in war file

2008-03-03 Thread mputz
Ronald referred to the classloader specifics of JBoss. There are a couple of wiki pages in that respect, eg: http://wiki.jboss.org/wiki/Wiki.jsp?page=GetClassNotFoundExceptionOrNoClassDefFoundError I think the fourth point 'The class is not visible from where it is being loaded' matches your

[jboss-user] [JBoss jBPM] - Re: jbpm-jpdl.jar deployment in war file

2008-03-03 Thread mputz
what other jars do you bundle inside this *.war? The stacktrace shows some WS classes, do you have such libraries inside your application? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4133642#4133642 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: jbpm-jpdl.jar deployment in war file

2008-03-03 Thread mputz
anonymous wrote : ./WEB-INF/lib/jboss-j2ee.jar including JBoss jars in custom applications usually brings you in trouble ;-) I'd remove at least this one (and check for others that might be duplicates of the ones in jboss/config/lib) and give it another try... View the original post :

[jboss-user] [JBoss jBPM] - Re: Token.signal() --- 2 tokens?

2008-02-21 Thread mputz
IMO, you shouldn't signal the root token once it has arrived in the fork: | Token root = processInstance.getRootToken(); | // root token is already on the fork, signal children instead | // root.signal(); | I've found a (rejected) feature request to prevent the

[jboss-user] [JBoss jBPM] - Re: jBPM 3.2.2 without suite's AS / on a JBoss AS 4.2.2.GA

2008-02-07 Thread mputz
Please have a look at this wiki which should get you started on this topic: http://wiki.jboss.org/wiki/Wiki.jsp?page=DeployJbpm3.2WebAppUnderJBoss4.2.x Basically, there is an ant task to create a war that runs on JBoss 4.2 when you check out the sources from cvs. If you don't want to to a manual

[jboss-user] [JBoss jBPM] - Re: Jbpm with tomcat and postgresql

2008-01-22 Thread mputz
jobu, it would really help if you used the [ code ] your code / your xml files [ /code ] tags (without the blanks), to show your configurations. Besides that, I would suggest to start off by following the step-by-step explanation on the wiki (just substitute mysql with postgres) to get a

[jboss-user] [JBoss jBPM] - Re: Jbpm with tomcat and postgresql

2008-01-22 Thread mputz
As already posted in my last comment: anonymous wrote : Btw, please check if there are other hibernate.cfg.xml files in your classpath, and don't forget to search inside *.jar files as well. Maybe yours is just not getting picked up. from your list I see you have * hibernate.cfg.xml *

[jboss-user] [JBoss jBPM] - Re: Jbpm with tomcat and postgresql

2008-01-21 Thread mputz
the datasource configuration is with the jbpm-ds.xml file is something that only works if you deploy to JBoss AS. Please have a look at the http://wiki.jboss.org/wiki/Wiki.jsp?page=JbpmOnTomcat wiki, and pay special attention to the configuration of hibernate.cfg.xml as outlined in section 2.3

[jboss-user] [JBoss jBPM] - Re: How to config jbpm-console for mysql and jboss correct!!

2008-01-15 Thread mputz
Hi, the link Ronald provided contains a section 'Additional Notes for jBPM 3.2.1/jBPM 3.2.2' with two possible ways to get the right libraries in the web-console on JBoss 4.2.x: * checkout the sources from cvs and use the provided ant task OR * manually include the listed jars in the web

[jboss-user] [JBoss jBPM] - Re: re:jbpm-console source code

2007-12-11 Thread mputz
In jbpm.3/console/src/ you will find the xhtml files for the facelets based UI. If you are looking for the rest of the sources for the jbpm-console web application, check the contents of the jbpm.3/jbpm4jsf/ folder. View the original post :

[jboss-user] [JBoss jBPM] - Re: deploying jbpm 3.2.2 process archive in jboss 4.2.x

2007-11-30 Thread mputz
you should just make sure that the hibernate.cfg.xml is in your classpath, eg. put it in a separate folder (like '/config') inside your project and pick this up in the classpath definition: path id=libraries | !-- path to the config files -- | pathelement location=config/ |

[jboss-user] [JBoss jBPM] - Re: jbpm-jpdl-3.2.GA - jbpm-console - ERROR - workflow.jbpm_

2007-11-29 Thread mputz
Please give it a try with the latest jBPM version, currently 3.2.2 - the tables of the identity components have been included in the default db scripts after 3.2.GA. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108797#4108797 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: jbpm 3.2.2 web console on JBoss 4.2.0 - NullPointerExcep

2007-11-27 Thread mputz
If you are deploying the jbpm-console.war on a JBoss 4.2.x instance, please make sure that the jbpm-console/WEB-INF/lib folder only includes the libs listed at the bottom of the wiki: http://wiki.jboss.org/wiki/Wiki.jsp?page=DeployJbpm3.2WebAppUnderJBoss4.2.x I've just verified that this works

[jboss-user] [JBoss jBPM] - Re: Multiple JBPM engines on one single JBoss instance

2007-11-21 Thread mputz
I haven't tried what you are trying to achieve, but it sounds like you run into this issue of both applications using the same jars/resources because of the flat class loading model JBoss uses. See http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration for more information, and try

[jboss-user] [JBoss jBPM] - Re: About loading of hibernate configuration in HibernateHel

2007-10-18 Thread mputz
by default, the hibernate.cfg.xml and jbpm.cfg.xml files are residing in the same directory, often bundled within a jar: [EMAIL PROTECTED] lib]$ jar -tvf jbpm-configs.jar | 0 Thu Aug 30 01:05:28 CEST 2007 META-INF/ | 71 Thu Aug 30 01:05:28 CEST 2007 META-INF/MANIFEST.MF | 18765

[jboss-user] [JBoss jBPM] - Re: About loading of hibernate configuration in HibernateHel

2007-10-18 Thread mputz
If you don't want the *cfg.xml files in a separate jar, you could include it in the classpath, for a web-app this would be WEB-INF/classes. Here is a (partial) listing of a modified jbpm-console.war, where the configs are taken from the WEB-INF/classes folder. ./jboss-console.war | images

[jboss-user] [Remoting] - Re: ejb3 and NO_THROW_ON_ERROR, how can it be set.

2007-09-13 Thread mputz
this is now scheduled for the Remoting 2.4.0 release: http://jira.jboss.com/jira/browse/JBREM-804 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083794#4083794 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083794

[jboss-user] [JBoss jBPM] - Re: logging in to jbpm-console from api code

2007-09-05 Thread mputz
Ross, I don't know in which environment you are working, but JBoss AS 4.2.0 now contains features to do automatic web authentication: http://jira.jboss.com/jira/browse/JBAS-4077 http://wiki.jboss.org/wiki/Wiki.jsp?page=WebAuthentication The appropriate forum for getting more information on

[jboss-user] [JBoss jBPM] - Re: com.arjuna... warning message

2007-09-04 Thread mputz
try searching the 'JBoss Transactions' forum - there you will find quit informative discussions on this topic View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4080771#4080771 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: JBoss + JBPM + Mysql - Deployment is not going through

2007-08-31 Thread mputz
anonymous wrote : 07:28:15,812 ERROR [MainDeployer] Could not create deployment: file:/C:/JBoss/jbpm-jpdl-3.2.1/server | /server/jbpm/deploy/mysql-ds.xml | org.jboss.deployment.DeploymentException: Trying to install an already registered mbean: jboss.jca:s | ervice=LocalTxCM,name=DefaultDS

[jboss-user] [JBoss jBPM] - Re: jbpm task forms as generated by jpdl eclipse plugin

2007-08-29 Thread mputz
Ross, fyi, there is a pretty similar bug in JIRA for the jbpm:dataform with multiple columns already: http://jira.jboss.com/jira/browse/JBPM-1039 You might want to check this out. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079067#4079067 Reply to the

[jboss-user] [JBoss jBPM] - Re: ClassCast Problem

2007-08-29 Thread mputz
IMO the question is how you are deploying your process and its related java classes? If you deploy it through Eclipse for example make sure you include the java classes as well. They will end up in the database and jBPM can pull them from there at runtime. Are you packaging them somewhere

[jboss-user] [JBoss jBPM] - Re: Error getting diagram info

2007-08-27 Thread mputz
we've experienced problems with special characters in node-names on Windows machines already, please check out http://jira.jboss.com/jira/browse/GPD-98 whether your problems are similar. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078252#4078252 Reply to

[jboss-user] [JBoss jBPM] - Re: couldn't delete process definition

2007-08-21 Thread mputz
To me this looks like a bug. I'm having a closer look at the mappings now - in the meantime, could you enter a JIRA entry for this? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4076206#4076206 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: couldn't delete process definition

2007-08-21 Thread mputz
created this JIRA issue: anonymous wrote : http://jira.jboss.com/jira/browse/JBPM-1043 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4076277#4076277 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4076277

[jboss-user] [JBoss jBPM] - Re: jbpm process undeploy constraint violation in jbpm 3.2.G

2007-08-21 Thread mputz
you are probably hitting this bug: http://jira.jboss.com/jira/browse/JBPM-1043 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4076278#4076278 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4076278

[jboss-user] [JBoss jBPM] - Re: Unknown Method Exception

2007-08-20 Thread mputz
Hi, this is a known JBoss Rules related problem and possible workarounds are described at the following wiki page: http://wiki.jboss.org/wiki/Wiki.jsp?page=RulesTomcat View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4075753#4075753 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Exception while executing SubProcess

2007-08-20 Thread mputz
why do you explicitly create an instance of the sub-process? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4075867#4075867 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4075867

[jboss-user] [JBoss jBPM] - Re: SchedulerServlet for jbpm 3.2

2007-08-20 Thread mputz
what used to be in the SchedulerServlet is now (jBPM 3.2.x) implemented in the JobExecuter servlet, if you deploy jBPM inside a war file. If you take the ear (enterprise version), ejb timers are used. Have a look at the jbpm-console.war/WEB-INF/web.xml and you'll find the config sections at the

[jboss-user] [JBoss jBPM] - Re: Deployment of jBPM process

2007-08-17 Thread mputz
The processdefinition and its contents is saved in various tables (eg. JBPM_PROCESSDEFINITION, JBPM_NODE, JBPM_TRANSITION,...) The content of the processdefinition.xml file itself is stored (along with other process related information such as process image, class files etc.) in the

[jboss-user] [JBoss jBPM] - Re: Problem login

2007-07-26 Thread mputz
What roles have you assigned to the newly created? In order to be able to login, at least one of the assigned roles have to match the security constraint defined in jbpm-console.war/WEB-INF/web.xml. Try to add the 'user' role to one of the new users and see if you can login afterwards. View

[jboss-user] [JBoss jBPM] - Re: jBPM 3.2.1 and App Server (AS) 4.2 - Web Console

2007-07-26 Thread mputz
FYI, I have updated http://wiki.jboss.org/wiki/Wiki.jsp?page=DeployJbpm3.2WebAppUnderJBoss4.2.x to include some information that apply to deploying jBPM 3.2.1 on JBoss 4.2.x. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4067763#4067763 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: jBPM 3.2.1 on AS 4.2.1

2007-07-26 Thread mputz
Great! You're welcome. Enjoy working with jBPM! Cheers! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4067827#4067827 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4067827 ___

[jboss-user] [JBoss jBPM] - Re: Tomcat 5.5 - Jbpm 3.2 - Starting failed couldn't get a

2007-07-26 Thread mputz
anonymous wrote : There was no mention of creating this datasource in the Wiki. You are absolutely right - I never thought of creating a datasource for Tomcat, but this is a very valid approach as well. If you look at the hibernate.cfg.xml snippet in the wiki, you will notice that the

[jboss-user] [JBoss jBPM] - Re: jBPM 3.2.1 on AS 4.2.1

2007-07-26 Thread mputz
Angelo, good to hear that it's working now. Now on to the move to Oracle ;-) First, please have a look at Chapter 8 of the docu for a general overview of the necessary steps for switching the database backend: http://docs.jboss.com/jbpm/v3.2/userguide/html/thejbpmdatabase.html (Please note

[jboss-user] [JBoss jBPM] - Re: Problem deleting a process containing a subProcess

2007-07-26 Thread mputz
what DB are you working with? A similar issue has been reported in JIRA http://jira.jboss.com/jira/browse/JBPM-785 with MySQL5, but due to the lack of a unit test the suggested patch was rejected. Maybe you could provide this to get the issue resolved... View the original post :

[jboss-user] [JBoss jBPM] - Re: jBPM 3.2.1 on AS 4.2.1

2007-07-26 Thread mputz
Angelo, the steps outlined at http://wiki.jboss.org/wiki/Wiki.jsp?page=DeployJbpm3.2WebAppUnderJBoss4.2.x only applied to jBPM 3.2.GA until now. I have just added some additional information regarding jBPM 3.2.1 - please check these out and let us know if that worked for you. Thanks! View

[jboss-user] [JBoss jBPM] - Re: Sample Process taking wrong transitions when using 3.2.1

2007-07-18 Thread mputz
I have created a JIRA entry for this: http://jira.jboss.com/jira/browse/JBPM-1017 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4065267#4065267 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4065267

[jboss-user] [JBoss jBPM] - Re: Wonky IDs being generated - Any explanation?

2007-07-18 Thread mputz
This is known as the identity gap feature in ASE. I have added a short description of this case as well as some links to the Sybase docu on http://wiki.jboss.org/wiki/Wiki.jsp?page=JbpmOnSybase View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4065313#4065313

[jboss-user] [JBoss jBPM] - Re: ProcessDefinition disapear from the database

2007-07-17 Thread mputz
Look at 'Chapter 5.4 Web application' of the user guide http://docs.jboss.com/jbpm/v3.2/userguide/html/deployment.html#webapplication the web app starts the JobExecutor Ronald is referring to. I'm wondering about this: jbpmConfiguration.createSchema(); | ProcessDefinition

[jboss-user] [JBoss jBPM] - Re: error Resource: org/jbpm/msg/Message.hbm.xml not found

2007-07-17 Thread mputz
From a first glance it looks like you are using a hibernate.cfg.xml from jBPM version 3.1.x along with the code from jBPM 3.2.x, as this entity no longer exists in the current version. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064892#4064892 Reply to the

[jboss-user] [JBoss jBPM] - Re: ProcessDefinition disapear from the database

2007-07-17 Thread mputz
Look through the Database Example in the user guide to get an idea of what API functions to call to get a process definition and the like from the db: http://docs.jboss.com/jbpm/v3.2/userguide/html/tutorial.html#databaseexample (scroll down to the function

[jboss-user] [JBoss jBPM] - Re: Sample Process taking wrong transitions when using 3.2.1

2007-07-17 Thread mputz
Karsten, we've just discovered this as well. I'll update you as soon as we have discovered anything new. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4065106#4065106 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4065106

[jboss-user] [JBoss jBPM] - Re: deploying jbpm-jpdl-3.2.1 to tomcat 5.0.28 with/without

2007-07-16 Thread mputz
Ross, as TC 5.0.28 doesn't include the el*.jars by default as the TC 6.0 series does, you will have to repackage el-api.jar and el-ri.jar back into jbpm-console.war/WEB-INF/lib (these files get deleted by the ant call described in step 2.1 of the wiki and can be found in the original web app

[jboss-user] [JBoss jBPM] - Re: deploying jbpm-jpdl-3.2.1 to tomcat 5.0.28 with/without

2007-07-16 Thread mputz
cool, thanks for the feedback - I've update the wiki as well! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064553#4064553 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064553

  1   2   >