[jboss-user] [JBoss jBPM] - Re: Problem persisting tasks

2009-01-07 Thread tangomannn
I tried what you suggested me, but it did not work. I finally could solve my problems with transient object exception, saving explicitly through Hibernate Session: jbpmContext.getSession().save(executionContext.getTaskMgmtInstance()); or jbpmContext.getSession().save(contextInstance);

[jboss-user] [JBoss jBPM] - Re: Problem persisting tasks

2009-01-07 Thread kukeltje
thanks for reporting back... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4200226#4200226 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4200226 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: Problem persisting tasks

2009-01-06 Thread tangomannn
Does the TaskNode.addTask(task) method works well? I'm printing my process definition to check if is well builded and everything appears well excepts the tasks that don't appear! Any idea why they don't appear? Probably this is why is not working programmatically and yes with the xml defintion

[jboss-user] [JBoss jBPM] - Re: Problem persisting tasks

2009-01-06 Thread kukeltje
why do you create a new context in the actionhandler? and with TaskNode.addTask you change the processdefinition, not adding additional tasks to the running instance View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4199905#4199905 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem persisting tasks

2009-01-06 Thread tangomannn
anonymous wrote : why do you create a new context in the actionhandler? Because I'm a newby and believe me that documentation does not help. How is should I do in my example? anonymous wrote : and with TaskNode.addTask you change the processdefinition, not adding additional tasks to the running

[jboss-user] [JBoss jBPM] - Re: Problem persisting tasks

2009-01-06 Thread kukeltje
Nowhere in the docs, examples etc.. it is mentioned that you should create a context... None of the examples you can find in the source do this I've not heard anybody do it... so I *don't* think the docs are the problem here.. and anonymous wrote : I had to use |

[jboss-user] [JBoss jBPM] - Re: Problem persisting tasks

2009-01-06 Thread kukeltje
In addition to my first statement... that is about creating contexts IN an actionhandler View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4199927#4199927 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4199927

[jboss-user] [JBoss jBPM] - Re: Problem deploying on JBoss 5

2008-12-29 Thread basmussen
Hi, thank you for this solutions, i'm using jboss as 5.0.0 GA, JBpm 3.3.0.GA and java 1.5.0_16. Now i get a ClassCastException java.lang.String cannot be cast to java.lang.Boolean when i tried to load the sa/tasks.jsf/ and sa/procdef.jsf page. Where is the problem? How can i fix it?

[jboss-user] [JBoss jBPM] - Re: Problem deploying on JBoss 5

2008-12-29 Thread kukeltje
look in the jira there is a description and View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4198696#4198696 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4198696 ___ jboss-user

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

2008-12-22 Thread janvandeklok
Hi all, Although the lock=UPGRADE without the session.flush() solves the problem in 3.3.0.GA, the same solution in version 3.2.3 does not work. For our company this is not a problem, we can switch to 3.3.0.GA easily since we do not run production right now. I thought this was valuable

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

2008-12-19 Thread kukeltje
Yes, I've seen it. I'll respond later today View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4197563#4197563 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4197563 ___ jboss-user

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

2008-12-18 Thread janvandeklok
To All, Specifying the lock=UPGRADE on the join node does the trick!! Even without the call to session.flush() in the join class. I want to thank all of you for your great support!!! Hopefully the fix for this bug can be included in the next release. Thanks again! Jan View the

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

2008-12-18 Thread kukeltje
Thanks for reporting back... for me it would not be the solution, but we could chance the default for oracle to 'upgrade' if de process is parsed. Otoh, maybe just a 'known-issue' regarding these specific processdefinition cases would be better. I hate putting db/as/jdk specific code in my

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

2008-12-18 Thread janvandeklok
Ronald, i've send you an email using ron...@jbpm.org. Do you still use that email address?? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4197520#4197520 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4197520

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

2008-12-17 Thread erciped
We are having the same problem. Has anyone tried other options like optimistic-lock=false on some of the relationships between token and the other tables? The children relationship looks suspect in that is a child Token gets removed or added, the version of the parent Token is incremented.

[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-17 Thread janvandeklok
Martin, can we set the lock attribute in the processdefinition.xml?? Not according to the documentation imho. Jan View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4197124#4197124 Reply to the post :

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

2008-12-17 Thread kukeltje
@Jan, Yes, the lock can be on the processdefinition. If it complaints and you have a reference to the xsd, remove that validating against the xsd does not work then. (also a jira issue might be created then for the xsd to be updated) @Martin.. Yes, I'd like to but I get 403's when

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

2008-12-17 Thread kukeltje
@erciped: No, and I can't (at least not against a real Oracle or PostgreSQL). I agree that the issue seems to be in that direction. Can you give it a try? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4197226#4197226 Reply to the post :

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

2008-12-16 Thread kukeltje
anonymous wrote : Is raises the question wether jbpm is the right choice for enterprise software??[/qupte] | | A valid one (but it is... I can assure you it is used in big companies in very important environments), and I already inquired with 'QA' people about the status of getting access

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

2008-12-16 Thread janvandeklok
Ronald, I will post some new treads about the other oracle related problems soon. But the main issue there is (as far as I can see) that the oracle implementation does not auto increment the id fields. Apart from creating a hibernate-sequence, the jbpm (or hibernate) does not seem to use

[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: Problem with a decision node in a fork, join construct.

2008-12-16 Thread kukeltje
Martin, I did a similar test with 3.3.0 and run it against HSQLDB, H2 and mysql with and without the flush added. They run fine strange... can you post your unit test so we are sure we use the same test? View the original 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: Problem with a decision node in a fork, join construct.

2008-12-16 Thread kukeltje
Martin... I found a similarity Oracle and Postgress use sequences, mysql, h2 and hsqldb use auto-increment like id's. I've seen that postgress can also support auto-increment if the int8 is changed to 'serial', see

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

2008-12-16 Thread kukeltje
H2 is cl. it has an oracle and postgress compatible mode If you use it's own H2 driver, but point to a Oracle dialect and state in the connect string the mode is oracle, like: | !-- hibernate dialect -- | | property

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

2008-12-15 Thread janvandeklok
Martin, Just posted the test result before your last response Jan View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196560#4196560 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4196560

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

2008-12-15 Thread kukeltje
Can you also try to run with debug on org.jbpm.graph.node.Join? I'm curious to the value of the lockmode. You can also see that in the database on the definition of the specific join node. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196571#4196571 Reply

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

2008-12-15 Thread janvandeklok
Ronald, We use transaction level Read-committed as adviced in the documentation. local-tx-datasource | jndi-nameJbpmDS/jndi-name | transaction-isolationTRANSACTION_READ_COMMITTED/transaction-isolation | | We also tried an XA datasource but that gave the same

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

2008-12-15 Thread kukeltje
hhh. Martin, you are great. Your memory works better than mine ;-) So it was no deja-vu, but a real memory Jan, so it is a regression. Could you try and the flush to the join node, (re) compile jbpm (or that one class) and test? | Index:

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

2008-12-15 Thread janvandeklok
The lockMode = FORCE. This is what the debugger says. I don't know where to look for in the database for the lock mode in the join table??? the parentToken that will be locked has a node attribute that called Fork !! The token that is referred to in the exception has a node reference to the

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

2008-12-15 Thread kukeltje
And it is indeed the parentNode that is locked, so the fork. And the default lock is 'FORCE' which is identical to 'UPDATE' (for which 'pessimistic' in jbpm is a synonym. UPGRADE_NOWAIT is another oracle specific one, just not sure (and no time to find out) what the exact difference is.

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

2008-12-15 Thread kukeltje
@Martin, The fix was for postgress, so I think re-introducing the flush was forgotten anonymous wrote : If you can (still) differentiate, that's a good sign :-) Sorry I have no clue what you are talking about 2008-12-15 14:06:07,016 ERROR [STDERR] org.hibernate.StaleObjectStateException:

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

2008-12-15 Thread janvandeklok
Martin, I think it looks like the same problem, will ther be a fix for this soon?? Jan View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196529#4196529 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4196529

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

2008-12-15 Thread janvandeklok
Yes, I will do that and let you know about the result. Thanks for your quick response guys! Jan View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196537#4196537 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4196537

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

2008-12-15 Thread kukeltje
another thing to try (keep in mind, I do not see them as solutions!!!) is to put a 'lockmode=pessimistic' attribute on the join node. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196575#4196575 Reply to the post :

[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 kukeltje
Oh... yes... can you make the small unit test? I can check here with H2, hsqldb and mysql to validate behaviour against those db's View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196563#4196563 Reply to the post :

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

2008-12-15 Thread kukeltje
btw, the join code snippet I saw from you for the join is *not* jbpm 3.3!!! it is older. Or did you copy the small code snippet from the jira issue? If that is the only difference, there is no problem. Othewise please make sure the correct source is used otherwise we might be hunting ghosts.

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

2008-12-15 Thread kukeltje
hhm Deja-vu. This was an issue long ago, but not heard anyone about it since then. Could be that people just not do this very often. What is your isolation level? And could you create a minimal unittest like I described in your other post that demonstrates the problem?

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

2008-12-15 Thread kukeltje
I know your variables do not behave as expected in 3.2.3 (other topic) but could can you give it a try with 3.2.3 in any way. I need to make sure it is a regression and not something else. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196562#4196562 Reply to

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

2008-12-15 Thread janvandeklok
Martin, The token for which the update fails belongs to the fork and not the join according to the database. Mayby this will help you solving the problem. Jan[/img] View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196561#4196561 Reply to the post :

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

2008-12-15 Thread janvandeklok
The session.flush() does not seem to make any difference! Changed the code in class Join as follows: 109 if (session!=null) { | 110 LockMode lockMode = LockMode.FORCE; | 111 if (parentLockMode!=null) { | 112 lockMode = LockMode.parse(parentLockMode); |

[jboss-user] [JBoss jBPM] - Re: Problem with WS in jBPM

2008-12-15 Thread salaboy21
did you see: http://docs.jboss.com/jbpm/v3.2/userguide/html/ws.html and http://jbws.dyndns.org/mediawiki/index.php?title=Install_JBossWS pages? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196524#4196524 Reply to the post :

[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 WS in jBPM

2008-12-15 Thread rodosa
Yes, I did!!! I put these libraries at subdirectory lib/endorsed but .. I didn't get to work anything View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196525#4196525 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4196525

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

2008-12-15 Thread janvandeklok
The version 3.2.3 has the same (faulty) result. We switched to 3.3.0 in the hope that this problem was fixed in that version. :-(( Jan View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196594#4196594 Reply to the post :

[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: Problem with a decision node in a fork, join construct.

2008-12-15 Thread janvandeklok
Ronald, the code snippet came from the source code that was shipped with the 3.3.0 GA release download. I assumed that this is 3.3.0. code!!! Martin, your stripped version exposes the problem correctly I think although such a situation is hypothetical. But I think a fork that

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

2008-12-15 Thread janvandeklok
Ronald, Excuse me, you are right about the code snippet. I pasted the the wrong code in here. This is the correct code: | if ( parentToken != null ) { | | JbpmContext jbpmContext = executionContext.getJbpmContext(); | Session session = (jbpmContext!=null ?

[jboss-user] [JBoss jBPM] - Re: Problem deploying on JBoss 5

2008-12-11 Thread kukeltje
It's a facelets version error: https://jira.jboss.org/jira/browse/JBSEAM-3066 Putting facelets 1.1.15.B1 (http://repository.jboss.com/maven2/com/sun/facelets/jsf-facelets/1.1.15.B1/) in the war fixes it for me. I'll file a Jira issue View the original post :

[jboss-user] [JBoss jBPM] - Re: Problem deploying on JBoss 5

2008-12-11 Thread kukeltje
Done: https://jira.jboss.org/jira/browse/JBPM-1913 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4195957#4195957 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4195957 ___

[jboss-user] [JBoss jBPM] - Re: Problem deploying on JBoss 5

2008-12-11 Thread karypid
Hello kukeltje, I just saw the replies. Thank you for filing the JIRAs as well. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196089#4196089 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4196089

[jboss-user] [JBoss jBPM] - Re: Problem in formatting mail text using jbpm mail tag

2008-12-11 Thread srohanrao
Thank You Naseem. Your tip has been real help, I am now able to send HTML emails. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196106#4196106 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4196106

[jboss-user] [JBoss jBPM] - Re: Problem in formatting mail text using jbpm mail tag

2008-12-11 Thread kukeltje
Cool any of you care to make this configurable (default being text) and contribute this to jBPM I'm wondering why so many people care to put time and effort into something that they have to adapt again with the next release but do not want to put a one-time effort in it and contribute

[jboss-user] [JBoss jBPM] - Re: Problem in formatting mail text using jbpm mail tag

2008-12-11 Thread srohanrao
I dont mind doing it but whats the process for this? If its easier to just send the code over to you and you can put it in I am fine with that also. Please let me know. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4196111#4196111 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem in formatting mail text using jbpm mail tag

2008-12-11 Thread kukeltje
Attach it to this issue: https://jira.jboss.org/jira/browse/JBPM-978 But keep in mind the default behaviour should not change, so it has to be made configurable. And a unittest is needed ;-) TIA View the original post :

[jboss-user] [JBoss jBPM] - Re: Problem deploying on JBoss 5

2008-12-10 Thread karypid
Hello kukeltje, Thank you for your reply. Regarding (1): Can you please try using the auto-installation to see if you can reproduce the problem? http://www.jboss.com/index.html?module=bbop=viewtopict=146928 I tried installing manually via the GUI using both JBoss 4.2.3 and JBoss 5.0.0 and

[jboss-user] [JBoss jBPM] - Re: Problem deploying on JBoss 5

2008-12-10 Thread kukeltje
1: Yep it does... file a jira issue 2: Yep same here, file a iira issue as well View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4195750#4195750 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4195750

[jboss-user] [JBoss jBPM] - Re: Problem deploying on JBoss 5

2008-12-10 Thread kukeltje
1: Yep it does... file a jira issue 2: Yep same here, file a iira issue as well View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4195753#4195753 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4195753

[jboss-user] [JBoss jBPM] - Re: Problem deploying on JBoss 5

2008-12-10 Thread kukeltje
oops View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4195754#4195754 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4195754 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBoss jBPM] - Re: Problem deploying on JBoss 5

2008-12-10 Thread sunsy
I have the same problem too. Work well under AS4.2.4, but no in AS5.0.0GA. Another thread someone met the same problem, but he/she configuration facelets libs in web.xml. I see the jbpm directory and the files in it, it is same as in AS4.2.4. View the original post :

[jboss-user] [JBoss jBPM] - Re: Problem deploying on JBoss 5

2008-12-09 Thread kukeltje
1) Not in my case although I used the installer to also install JBoss AS (4.2.2). And I just tried pointing it to my existing jboss AS 5 and it also just installed the mysql ds. 2) Not sure... the default packaging is for JBoss AS 4.2.2 afaik and the console libs are the same when I

[jboss-user] [JBoss jBPM] - Re: Problem facing configuraing JBPM with SQL Server

2008-12-09 Thread salaboy21
yes, you must change your hibernate.cfg.xml file to use the JbpmDS datasource.. because it is configure to use Hipersonic, also note that you must change the hibernate Dialect to the SQL server dialect View the original post :

[jboss-user] [JBoss jBPM] - Re: Problem while using email template of JBPM

2008-12-09 Thread shantanu.u
Mistake: * Also, how do I link my tag with a specific mail-template ? should be * Also, how do I link my tag with a specific mail-template ? Also, is there any significant to the name in mail-template name='task-assign' Can I use my own name ? View the original post :

[jboss-user] [JBoss jBPM] - Re: Problem while using email template of JBPM

2008-12-09 Thread shantanu.u
I figured out part of the problem : template should be the mail template and not jbpm.mail.templates.xml . Silly me ! I actually saw that on some link. http://docs.jboss.org/jbpm/v3/userguide/mail.html#mailtemplates does correctly describe it but's a single line and I overlooked it.

[jboss-user] [JBoss jBPM] - Re: problem about JBPM with tomcat

2008-12-05 Thread salaboy21
yes, of course, you must take a look at jbpm.cfg.xml file ... if you don't have one the default.jbpm.cfg.xml is used and it is inside the jbpm-jpdl.jar. this file have a reference to hibernate.cfg.xml file that must be on your classpath to configure the database or datasource that will be used

[jboss-user] [JBoss jBPM] - Re: Problem with User.hbm.xml

2008-11-28 Thread salaboy21
yes, you probably need to check the hibernate.cfg.xml file, and look for User.hbm.xml that may be commented. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4193112#4193112 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: problem of deployment

2008-11-24 Thread kukeltje
anonymous wrote : What is exactly meant to put the processdefinition in my classpath? Literally what it says can't be more explicit then this. The root of the ear project is not on the classpath if you deploy an ear. View the original post :

[jboss-user] [JBoss jBPM] - Re: problem of deployment

2008-11-22 Thread mash
Hi Johan, i am having the same fault as abdenourh and i found your reply. i am having the processdefinition in the folder /myProcess in the root of the EAR Project as well as the jbpm.cfg.xml. Is this location right? What is exactly meant to put the processdefinition in my classpath? I am

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

2008-11-17 Thread dleerob
Okay, I managed to get deleting a process which includes sub processes working (I hope properly). I posted my findings here: http://www.jboss.com/index.html?module=bbop=viewtopict=94196 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4189807#4189807 Reply to

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

2008-11-15 Thread kukeltje
anonymous wrote : I would love to supply one if I knew how. There are many examples in the jBPM source View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4189592#4189592 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4189592

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

2008-11-14 Thread dleerob
I am on Jbpm 3.2.3, using MySQL 5 db. I am also having this problem (can't delete a process if it has a sub-process attached). I have also tried the solution at: http://www.jboss.com/index.html?module=bbop=viewtopict=94196 and I also get a constraint violation on JBPM_LOG. I have also looked

[jboss-user] [JBoss jBPM] - Re: Problem: jBPM + JTA

2008-11-12 Thread kukeltje
please. english View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4188718#4188718 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4188718 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: Problem: jBPM + JTA

2008-11-11 Thread jblas
en españa. Curiosamente, ahora estoy buscando vuelos a buenos aires para finde año. Tengo una amiga allá View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4188559#4188559 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem: jBPM + JTA

2008-11-11 Thread salaboy21
perfecto, cualquier duda o consulta avisame.. que tal el curso de jBPM, es el oficial de Red Hat? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4188560#4188560 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4188560

[jboss-user] [JBoss jBPM] - Re: Problem: jBPM + JTA

2008-11-11 Thread jblas
jeje no es el curso cutre típico... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4188566#4188566 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4188566 ___ jboss-user mailing

[jboss-user] [JBoss jBPM] - Re: Problem: jBPM + JTA

2008-11-11 Thread salaboy21
jaja te recomiendo el de JBoss es muy bueno.. y va muy al detalle, yo lo dicte un par de veces aca en Buenos Aires Argentina. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4188567#4188567 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem: jBPM + JTA

2008-11-11 Thread salaboy21
perfecto, espero tus dudas aqui en mi blog.. saludos. Porque pais vives? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4188534#4188534 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4188534

[jboss-user] [JBoss jBPM] - Re: Problem: jBPM + JTA

2008-11-11 Thread jblas
Hola, hablo español ! muchas gracias ! Mi problema salta cuando hago una migraciónde datos, que usa dos bbdd. Es cierto que esto puede solventar mi problema. Lo probaré mañana y te cuento. Gracias. ps: ahora estoy, curiosamente en un curso de jBPM. View the original post :

[jboss-user] [JBoss jBPM] - Re: Problem: jBPM + JTA

2008-11-10 Thread salaboy21
If you are mixing datasources (like quering another database in your actionhandlers) you need to configure de XA for your datasources. You should look my post (in spanish, you can translate it with translate.google.com) about this topic:

[jboss-user] [JBoss jBPM] - Re: Problem deploy new process

2008-11-10 Thread salaboy21
What stack of web services are you using? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4188099#4188099 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4188099 ___ jboss-user

[jboss-user] [JBoss jBPM] - Re: Problem deploy new process

2008-11-10 Thread Christy
I use Jax-ws web-services View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4188124#4188124 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4188124 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: Problem deploy new process

2008-11-10 Thread salaboy21
But what vendor implementation did you use? are you using JBoss Jax-ws implementation? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4188125#4188125 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4188125

[jboss-user] [JBoss jBPM] - Re: Problem deploy new process

2008-11-10 Thread Christy
If I don't use any external web-services every thing deploys fine. Where is my mistake? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4188070#4188070 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4188070

[jboss-user] [JBoss jBPM] - Re: Problem deploy new process

2008-11-10 Thread Christy
I use JWSDP 2.0 ,JBoss4.2.2.GA View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4188126#4188126 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4188126 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: Problem deploy new process

2008-11-10 Thread salaboy21
What is your definition for external web-services? If you are deploying another web services, may be you have a stack problem/incompatibility. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4188094#4188094 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem deploy new process

2008-11-10 Thread Christy
This is the WSDL document for external web-service. It is located on the same server where I want to deploy a process. − − xs:schema targetNamespace=http://dictionary.ws.esimo/; version=1.0 xs:element name=countIdsByType type=tns:countIdsByType/ xs:element

[jboss-user] [JBoss jBPM] - Re: Problem deploy new process

2008-11-10 Thread Christy
O, sorry!!! WSDL file is: ?xml version=1.0 encoding=UTF-8? definitions name=DictionaryWSJaxWSService targetNamespace=http://dictionary.ws.esimo/; xmlns:tns=http://dictionary.ws.esimo/; xmlns:xsd=http://www.w3.org/2001/XMLSchema; xmlns:soap=http://schemas.xmlsoap.org/wsdl/soap/;

[jboss-user] [JBoss jBPM] - Re: Problem deploy new process

2008-11-07 Thread salaboy21
I know a very little things about bpel but your problem appers to be something else, look at this line: anonymous wrote : | Caused by: java.io.FileNotFoundException: C:\jboss-4.2.2.GA\bin (Отказано в Ð´Ð¾Ñ Ñ‚ÑƒÐ¿Ðµ) | I think this is clearly

[jboss-user] [JBoss jBPM] - Re: Problem with JBPM running on Oracle

2008-11-05 Thread janvandeklok
Since the jboss seam console (jbpm-enterprise.ear) does not contain a hibernate.cfg.xml file, it is my assumption that seam/hibernate takes the dialect from the type-mapping in the jbpm-ds.xml which contains in my case : type-mappingOracle9i/type-mapping I can see in the log file that the

[jboss-user] [JBoss jBPM] - Re: Problem with JBPM running on Oracle

2008-11-02 Thread janvandeklok
Thanks for the hint. I'll check it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4186304#4186304 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4186304 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: Problem with JBPM running on Oracle

2008-11-01 Thread osvaldo.pina
Did you change the hibernate.dialect property in your hibernate.cfg.xml? If not, you should change it for your specific database (for example: org.hibernate.dialect.OracleDialect). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4186180#4186180 Reply to

[jboss-user] [JBoss jBPM] - Re: Problem with JBPM running on Oracle

2008-11-01 Thread kukeltje
anonymous wrote : We had JBPM 3.2.3 running on JBOSS app server using Hypersonic as db. anonymous wrote : | | | | In production? I hope not | | | | And the most likely cause is indeed the hibernate dialect View the original post :

[jboss-user] [JBoss jBPM] - Re: Problem running bpel process designed with eclipse bpel

2008-10-31 Thread sw_bpel
hello again. now i found out what went wrong with the port typ. i have to add the external web service to the partner services in jbpm bpel. now i'm able to run my process using soap ui. but i still get some errors and warnings. one of the warnings (logger) | 14:00:42,028 WARN

[jboss-user] [JBoss jBPM] - Re: Problem running bpel process designed with eclipse bpel

2008-10-31 Thread sw_bpel
ok, problem fixed. sorry for the last post. the solution is in section 3.5.2 in the manual, as alex said. thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4186034#4186034 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem running bpel process designed with eclipse bpel

2008-10-29 Thread Turanyi
I suggest rename portType and partnerLinkType to have different names. Best TestProjectPT and TestProjectPLT View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4185371#4185371 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem running bpel process designed with eclipse bpel

2008-10-29 Thread sw_bpel
ok, thank you for your help. now i added an invoke-call for an external webservice. i add 2 assignments and one invoke node to the bpel-process. but when i want to test the process with soapUI i get also an error: no port implements the required port type my bpel-file: | ?xml version=1.0

[jboss-user] [JBoss jBPM] - Re: Problem with reply in pick.

2008-10-28 Thread [EMAIL PROTECTED]
The operation attribute in the reply element should match the partner link, and operation in the related receive/onMessage element. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4185186#4185186 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem running bpel process designed with eclipse bpel

2008-10-28 Thread [EMAIL PROTECTED]
I see two different problems. 13:50:20,215 ERROR [XPathEvaluator] selection of size other than one: [] This means one of your expressions is required to return a node-set of size 1, as described in the BPEL spec, but it returned an empty node-set (as evidenced by the empty string inside the

<    1   2   3   4   5   6   7   >