[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - polymorphic map-key-many-to-many in hibernate

2006-06-28 Thread akakunin
Hello! Is polimirphic map-key-many-to-many supported in hybernate 3.1? I have a class with map. The key for this map- is basic class inherited by some other classes (Table per subclass strategy is used). So, I can store different classes and keys for these map, but then I read object from data

[JBoss-user] [JBoss jBPM] - Re: Problem with deploying process: jbpm.byte.block.size not

2006-05-29 Thread akakunin
THnank you, Ronald for advice. It helped View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3947531#3947531 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3947531 --- All

[JBoss-user] [JBoss jBPM] - Re: GPD: deploy and HTTP authentication

2006-05-29 Thread akakunin
Thank you for your answer, Should I add feature request into jBPM JIRA? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3947530#3947530 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3947530 -

[JBoss-user] [JBoss jBPM] - GPD: deploy and HTTP authentication

2006-05-29 Thread akakunin
Hello! It is very nice that now GDP may be configured to deploy process to some non-standard url, so, it is possible to use it not only with webapp from jBPM project. But, in our project we use Http Authentication for working with web-application, and, as result it is not possible to deploy pro

[JBoss-user] [JBoss jBPM] - Problem with deploying process: jbpm.byte.block.size not fou

2006-05-29 Thread akakunin
Hello! After upgrading to jbpm-3.1.1 I cannot deploy process into my application. I've got followed error: | by: org.jbpm.configuration.ConfigurationException: name 'jbpm.byte.block.size' is not defined in the configuration. configured names: [jbpm.msg.wait.timout, resource.repository.cfg.xml

[JBoss-user] [JBoss jBPM] - Re: GPD 3.0.9 Freezes Upon Opening Sample Process

2006-05-16 Thread akakunin
Same thing with Eclipse 3.1.2 and GPD 3.0.9 - GDP works very slow, sometimes (for example then I edit Java code) it quite ok, but very often (during saving files, during starting unit-cases and so on and so on) it started to work vry slow. The project was created with previous version o

[JBoss-user] [JBoss jBPM] - Re: Continuing from the most recent process definition versi

2006-05-16 Thread akakunin
I suppose you will need to implement it by yourself and it will be very big job..., because I think it is not possible to implement such functionality for general process definitions. As I understand concept of jBPM different versions of one process definition - are actually different process d

[JBoss-user] [JBoss jBPM] - Re: Problem in required field attribute in default form cont

2006-05-16 Thread akakunin
Could you send part of processdefinition.xml (in xml-sources) defined this variable? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3943773#3943773 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3943773 ---

[JBoss-user] [JBoss jBPM] - async event execution

2006-04-28 Thread akakunin
It is possible in jBPM to make async event execution? For example I added event for task-assign to send email to actorId, but I want to do in parallel with main jBPM process execution. Is it possible to implement by some way? View the original post : http://www.jboss.com/index.html?module=bb&o

[JBoss-user] [JBoss jBPM] - subprocesses linked to superprocess in deploy time - not in

2006-04-27 Thread akakunin
Hello! I found think I'm not sure working correctly in jBPM: jBPM Process Definition has process-state node for connecting some subprocess to main superprocess. In this node you can specify process name and process version - but if version is not specified - it gets last version. Problem is tha

[JBoss-user] [JBoss jBPM] - Re: Tracing the Process Instance

2006-03-23 Thread akakunin
Yes, of cource - it is LogInstances Here is simples way to get all tracing information for the root token of the process instance: | LoggingSession logSession = JbpmContext.getCurrentContext().getLoggingSession(); | | Map logMap = logSession.findLogsByProcessInstance(m_process.getId());

[JBoss-user] [JBoss jBPM] - jBPM and LDAP

2006-03-23 Thread akakunin
Hello all! We are currently working on task-management tool based on jBPM. Seems jBPM is a very good framework for it! Thank jBPM team for good work. Since we want closely integrate it into our infrastructure we want integrate it with LDAP, used for storing our users information. Authentication

[JBoss-user] [JBoss jBPM] - Re: How do I manually assign a task to an ActorID

2006-03-21 Thread akakunin
hm, probably just call method TaskInstance::setActorId()? Not sure that it helps, but why not? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3931517#3931517 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3931517 -

[JBoss-user] [JBoss jBPM] - Feature Request: Priority for Tokens or Priority propagation

2006-03-15 Thread akakunin
I have a feature request - before adding it into JIRA want to discuss it here. For current moment priority may be specified for Task (and as result will be assigned to TaskInstance). User may change priority of task instance... but... I think it is not enough. For example - we have process for

[JBoss-user] [JBoss jBPM] - Done

2006-03-15 Thread akakunin
http://jira.jboss.com/jira/browse/JBPM-588 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3930288#3930288 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3930288 --- Th

[JBoss-user] [JBoss jBPM] - We found it!

2006-03-14 Thread akakunin
We found it! Wow, but it about one working day and makes us creazy :) So, here is a part of org.jboss.jbpm.taskmgmt.exe.TaskInstance.java vfor working with comment: | public void addComment(String message) { | Comment comment = new Comment(message); | addComment(comment); |

[JBoss-user] [JBoss jBPM] - Re: Problem with Jbpm 3.1 and struts

2006-03-14 Thread akakunin
Seems you have no current jbpm context - it should be initially created. In web-application example (you can find it in jbpm sources) this is done by org.jbpm.web.JbpmContextFilter - just configure your web-application to use it in your web.xml: | JbpmContextFilter | org.jbpm.w

[JBoss-user] [JBoss jBPM] - Re: jBPM Variables

2006-03-14 Thread akakunin
I think it is good feature request! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3930154#3930154 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3930154 --- This SF.N

[JBoss-user] [JBoss jBPM] - Re: Seems I found a bug

2006-03-14 Thread akakunin
OK, we found why I've got this error, by some reasons, they I add comment for the task, record are written into bpm_comment table, and by some reasons, I do not found why, it put information into token_, taskinstance_ and taskinstanceindex_, but kept tokenindex_ field empty. As result then I'm

[JBoss-user] [JBoss jBPM] - Re: ProcessInstance persistence from org.jbpm.db.JbpmSession

2006-03-14 Thread akakunin
Yes, starting form jBPM 3.1 you should use JbpmContext instead View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3929996#3929996 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3929996 --

[JBoss-user] [JBoss jBPM] - Re: Seems I found a bug

2006-03-14 Thread akakunin
Yes, I will try View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3929995#3929995 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3929995 --- This SF.Net email is sponsore

[JBoss-user] [JBoss jBPM] - Re: Help, i am stuck with jbpm

2006-03-13 Thread akakunin
Do you process all process in one method - or in some sort of web-application? For web-application you need to set actorId into JbpmContext (JbpmSession) on every loading the new page (look Jbpm Web-Example application - AuthenticationFilter) Hope it will help. View the original post : http://

[JBoss-user] [JBoss jBPM] - Re: Seems I found a bug

2006-03-13 Thread akakunin
I forgot to add: I'm using last public stable jBPM (3.1) with JBoss 4.0.3-SP1 & PostgreSQL 8.1 under WinXP SP2 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3929738#3929738 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p