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

2006-07-07 Thread hosierdm
How so?  I've had almost all my questions answered by reading the User Guide 
and source code (yes, source code is documentation).  Everything else has 
basically been answered in the forum, which is also documentation.

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

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

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


[JBoss-user] [JBoss jBPM] - Re: problem with the JbpmContext.save() function

2006-06-28 Thread hosierdm
Yeah, I noticed that.  And it took me a while, but I finally see where the 
NoClassDefFoundError is.  Perhaps you could comment on my response as well, 
because I think that even if antitrust gets that class in there, he's still 
going to have problems with the code as posted (unless some stuff was left out 
for brevity).  Maybe I'm wrong though.

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

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

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


[JBoss-user] [JBoss jBPM] - Re: problem with the JbpmContext.save() function

2006-06-28 Thread hosierdm
Oops, looks like Ronald and I crossed paths theresorry about that.

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

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

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


[JBoss-user] [JBoss jBPM] - Re: problem with the JbpmContext.save() function

2006-06-28 Thread hosierdm
Why do you think the problem is with the save() call?  That happens way later 
than all your printouts, and I do not see ANY of your printouts in the log you 
pasted.  Am I just missing them?  The last error says this:
javax.portlet.PortletException: Error executing action processInstance
I don't see where you are actually getting the process instance in your code.  
If you are trying to store it globally in your class, I don't think that will 
work.  I believe that since all the jbpm objects are loaded via Hibernate, they 
have to be obtained and used all within the same session (i.e. inside your try 
block after creating the JbpmContext).  If you are trying to store the 
ProcessInstance at the class level, you should try storing the process instance 
ID instead, and then use the JbpmContext to load the process instance, using 
that process instance ID, whenever you need it.

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

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

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


[JBoss-user] [JBoss jBPM] - Re: Database exportation

2006-06-27 Thread hosierdm
This does not sound like a jBPM question to me.  However, I can clear up one 
misconception it sounds like you have.  You can use any DBMS you want with 
jBPM, not just HSQL.  There is a section in the User Guide that discusses how 
to setup the database.  You should not use HSQL for any production-level 
application anyway...at least that's been the advice from JBoss folks in the 
past.

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

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

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


[JBoss-user] [JBoss jBPM] - Re: Creating a new instance from an application

2006-06-27 Thread hosierdm
I'm not sure why you felt the need to debug the application at this point, 
since the stack trace you posted tells you exactly what the problem is.  It 
seems to me that you've missed some fundamental steps along the way here.  
Maybe you should check out the Getting Started Guide if you haven't already: 
http://wiki.jboss.org/wiki/Wiki.jsp?page=JbpmGettingStarted
And since you also seem to be missing things from your server deployment, you 
should check out this Deployment link: 
http://docs.jboss.org/jbpm/v3/userguide/deployment.html.

Another thing...are you running your application code inside JBoss or outside 
of JBoss?  Maybe you already said and I just missed it.

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

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

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


[JBoss-user] [JBoss jBPM] - Re: jbpm process designer

2006-06-26 Thread hosierdm
Ummm, very first link in the forum:
http://wiki.jboss.org/wiki/Wiki.jsp?page=JbpmGettingStarted.

Check it out, should hold the answer to both your questions.

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

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

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


[JBoss-user] [JBoss jBPM] - Re: getting process history

2006-06-26 Thread hosierdm
Plus, you could have searched and found the following post that I just 
rememberd making on this exact topic:
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3942962

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

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

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


[JBoss-user] [JBoss jBPM] - Re: getting process history

2006-06-26 Thread hosierdm
Check out the LoggingSession class in the javadocs and look at this section in 
the User Guide:
http://docs.jboss.org/jbpm/v3/userguide/logging.html.  It's not much, but it's 
a start.  You can get a Map that contains the set of logs for each token.  Each 
entry in the map is for a token, therefore, any simple process will only have 
one entry.  You can retrieve that entry, which will return a List containing a 
bunch of log events.  There are different classes for different log events, so 
you basically need to determine which log type an entry is, and that will 
dictate which information you can get from that log entry.  Here is a simple 
little method I wrote that will loop through a process instance's logs and 
print out some info about each entry.

  | JbpmContext context = JbpmConfiguration.getInstance().createJbpmContext();
  | try
  | {
  |   Map processLogs = 
  | 
context.getLoggingSession().findLogsByProcessInstance(processInstanceId);
  | 
  |   for (Iterator it = processLogs.keySet().iterator(); it.hasNext(); )
  |   {
  | Object tokenLogKey = it.next();
  | System.out.println("Loading Logs for Token: " + tokenLogKey);
  | List logList = (List)processLogs.get(tokenLogKey);
  | for (Iterator it2 = logList.iterator(); it2.hasNext(); )
  | {
  |   Object logEntry = it2.next();
  |   System.out.println("LOG TYPE: " + logEntry.getClass().getName() + " 
--> " + logEntry.toString());
  | }
  |   }
  | }
  | finally
  | {
  |   context.close();
  | }
  | 

The above code is commented out in some class that I have, so I haven't used it 
in a while, but it should work.  If it doesn't, at least you should get the 
point.

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

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

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


[JBoss-user] [JBoss jBPM] - Re: Creating a new instance from an application

2006-06-26 Thread hosierdm
Looks to me like you don't have the hibernate jars deployed to the server.  You 
should have at least hibernate3.jar and ehcache-1.1.jar deployed.  These should 
be available in the jbpm distribution lib/hibernate directory.

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

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

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


[JBoss-user] [JBoss jBPM] - Re: Changing jPBM plugin

2006-06-26 Thread hosierdm
See if this helps you out.  I haven't started trying to work on it yet, so I 
can't offer any other help than ponting you to this post:

http://www.jboss.com/index.html?module=bb&op=viewtopic&t=70400

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

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

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


[JBoss-user] [JBoss jBPM] - Re: Creating a new instance from an application

2006-06-25 Thread hosierdm
Oh, I'm sorry.  That's actually unrelated to process instances.  You really 
should take a look at the User Guide and the source code examples for tips on 
proper use of the API.  I'll answer this question though.  This is what you 
want to docreate the context like below and then put your code in a 
try-finally block so that the context is always closed before your method exits:
JbpmContext context = JbpmConfiguration.getInstance().createJbpmContext();
  | try
  | {
  |   // do some stuff
  | }
  | finally
  | {
  |   context.close();
  | }

I think that tip is even described in the javadocs.  So if you are new to jBPM, 
look at the User Guide, look at the javadocs, and then look at the code 
examples that can be found in the jBPM distribution that you downloaded.  
That's what I had do, and I was able to figure most of it out.

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

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

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


[JBoss-user] [JBoss jBPM] - Re: Creating a new instance from an application

2006-06-25 Thread hosierdm
Two things

1. Use code tags when you want to post XML and other code.  That's why lines of 
your process definition keep getting deleted from the post.  Look right under 
the Subject text box when posting a reply, and you'll see the Code tag button.

2. I think you need to do something like the following to get a start state to 
actually be created.  This code also handles the case when there is no task 
attached to the start state.  I believe that simply adapted this from the jbpm 
webapp, and this is what I use in our application when starting a process.


  | ProcessInstance processInstance = context.newProcessInstance(processName);
  | if 
(processInstance.getProcessDefinition().getTaskMgmtDefinition().getStartTask() 
== null)
  | {
  |   processInstance.signal();
  | }
  | else
  | {
  |   TaskInstance startTask = 
  | processInstance.getTaskMgmtInstance().createStartTaskInstance();
  |   context.save(startTask);
  | }
  | 

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

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

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


[JBoss-user] [JBoss jBPM] - Re: Activities launching external applications?

2006-06-23 Thread hosierdm
You could just put these JSP pages into a cohesive web application, then use 
your servlet idea to set process variables and signal the process.  I don't see 
why you would need to have the process spawn browsers and stuff.  We have a 
project right now that does just this.  For user input, we have pages that get 
submitted to a servlet where I take all the params from the page and map them 
to process variables, then I signal the process.

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

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

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


[JBoss-user] [JBoss jBPM] - Re: Customization for Console Application

2006-06-22 Thread hosierdm
That's the beauty of open-source.  You can tailor it, you can rewrite it, you 
can do whatever.  Our company has chosen to do our own custom web UI from 
scratch.  You can look at the sample web application to learn how to use the 
API.  This all assumes that by "console" you meant "web" of course.

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

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

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


[JBoss-user] [JBoss jBPM] - Re: How Stop the Execution?

2006-06-17 Thread hosierdm
You should read the User Guide regarding Exceptions.  I believe it specifically 
states that exceptions do NOT influence process flow.  I see that 
test.Task1Undo is an Exception handler implementation, but I'm not sure what 
you can do there to influence process flow.  I do however, seem to recall the 
User Guide pointing out that your code can put the Token in any arbitrary node 
in the process.  Check the User Guide and try this out; in your exception 
handler try putting the Token in the end state at the end of your undo code.  
How to do that is up to you to figure out or for someone else to tell you, 
because I've never done it.  Let us know if that works (I might have a need for 
the same thing in the near future).  Thanks.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Build from CVS Head

2006-06-16 Thread hosierdm
If you look at the Exception there, you can see it's a JBoss thing and not a 
jBPM thing.  I beleive this is part of the security model.  I can't tell you 
why your server would be looking for that file, unless the HEAD version of jBPM 
has added a hook into the JBoss security mechanism.  Try creating the 
users.properties file in the conf/props directory of your server and see if 
that clear things up.  If the jBPM webapp now hooks into the JBoss security 
mechanism, you may have to add the users to the properties file.  Here is an 
example of what gets created when you tell the JBoss installer to secure the 
JMX Console:
# A sample users.properties file for use with the UsersRolesLoginModule
  | admin=admin
  | 
I think that's just the username and then the password.  I don't know much 
about this, but I think it's a start to try to get you going.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Simple class to close open tasks

2006-06-14 Thread hosierdm
Hey Shiv...do you threadjack just to be a troll?  It's bad enough that you 
threadjack when you're issues are slightly related to the original post, but 
this one is hilarious.  What the hell man?

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How can I confige the jbpm sample using my database

2006-06-14 Thread hosierdm
Read the User Guide, there is a whole section on setting jBPM up to use your 
own database.  I think it is Section 8.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Locating a process instance by a given string identifier

2006-06-12 Thread hosierdm
Just keep in mind that any in-memory cache will be destroyed when the virtual 
machine terminates.  If you don't want to use a database, I suppose you could 
persist to a file, unless of course you don't care about losing your 
associations.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Locating a process instance by a given string identifier

2006-06-12 Thread hosierdm
You can do that if you make the link with your own database tables or some 
in-memory mechanism.  I don't think there is any way to do that directly in 
jbpm.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: GPD 3.0.9.2 Available

2006-06-10 Thread hosierdm
Sorry that took so long...I've been extremely busy.  Here you go:

http://jira.jboss.com/jira/browse/JBPM-674

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Question about the doc

2006-06-10 Thread hosierdm
Yup, that's what it means.  Looks like the Graphical Process Designer allows 
you to only attach actions, but it lets you attach as many you want.  So I'm 
guessing that means you could (by editing the source) attach as many of the 
other elements as you desire as well.  I've never done it, so I can't help with 
the behavior, but I assume it handles each one in the order listed.  Maybe it 
handles them all in parallel.  Maybe it says elsewhere in the User Guide how 
that works, but I don't feel like looking it up.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Question regarding JbpmContext

2006-06-09 Thread hosierdm
I have code running inside an app server, and what I do is create a context in 
every method and close at the end.  For example, I might have something like 
this:

  | public void deleteUser(String user) {
  |   JbpmContext jbpmContext = _jbpmConfig.createJbpmContext();
  |   try {
  | // do some stuff
  |   }
  |   finally {
  | jbpmContext.close();
  | }
  | 
  | public void deleteGroup(String group) {
  |   JbpmContext jbpmContext = _jbpmConfig.createJbpmContext();
  |   try {
  | // do some other stuff
  |   }
  |   finally {
  | jbpmContext.close();
  | }
  | 

Where _jbpmConfig is just a cached instance of the JbpmConfiguration object.  I 
haven't noticed any problems doing things this way.  I haven't messed with it 
too much, but I imagine that if in one of my methods above, I called another 
method and needed a reference to the context, I could call 
getCurrentJbpmContext() and I would get the one that I created at the start of 
the calling method.  I'm sure someone like Ronald can offer more insight (and 
hopefully set me straight if I'm way off base here...especially since I have an 
application going into system test on Monday using code like that above!)

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: New jBPM Getting Started Documentation

2006-06-08 Thread hosierdm
Wow, you guys should search the forum.  I know for a fact that this question 
has been answered at least twice in the last couple weeks.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: sub-process invocation problem

2006-06-06 Thread hosierdm
Here is the post I was referring to:
http://jboss.org/index.html?module=bb&op=viewtopic&t=80327

Not as helpful as I remember.  Basically Koen said that when a process is 
executed as a subprocess, the intended behavior is for the subprocess to not 
stop on tasks associated with the start state.  Maybe Koen has more to offer, 
but that's about the extent of my knowledge on the subject.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: sub-process invocation problem

2006-06-06 Thread hosierdm
If you do a search, including my username, you should see some information on 
this.  I had the same question and got an answer.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: SubProcess Logging

2006-06-06 Thread hosierdm
I just stumbled across the fact that you can call JbpmContext.save(Token).  Is 
this what I need to do in order for a given logging trace for a Token to 
contain details about sub process creation?  I don't have time to try it right 
now, but it would be nice if I could find this out from someone in the know, 
instead of wasting my time later today.  Thanks.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How to Deploy my process?

2006-06-06 Thread hosierdm
Try opening your process and looking for a Deployment tab along with the 
Design, Source, etc. tabs.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Process Designer 3.0.9.2 / Eclipse 3.2 RC6

2006-06-05 Thread hosierdm
Here is a more helpful answer...

First of all, I'm not sure that GPD is compatible with Eclipse 3.2.  But you 
can try this and see if it works.  Go into Eclipse's File Associations and 
associate the gpd.xml and processdefinition.xml files with the GPD plugin.  You 
might restart Eclipse after that just for good measure.  Let us know if that 
works.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: GPD 3.0.9.2 Available

2006-06-02 Thread hosierdm
Ok, I'm not totally crazy.  If you leave a process open and edit files and save 
them, the deployment tab for the process checks all the boxes for every Java 
file.  If you close and reopen, it's back to only having the necessary classes 
checked, but if you edit and save a fileetc,etc,etc

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: GPD 3.0.9.2 Available

2006-06-01 Thread hosierdm
I swear I'm not drunkbut after I closed the Processes and reopened them, it 
stopped doing the annoying check box thingso I don't know, weird.

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - SubProcess Logging

2006-06-01 Thread hosierdm
I'm trying to work with the jBPM logging to provide process details for a 
customer.  I know begging is frowned upon, but I really really need some 
enlightenment here.  I want to get the full trace of the process from the 
LoggingSession.  However, when I get the logs for the main super process, I can 
see no indication that a sub process was created.  The sub process executed, 
and its logs are in the database, but I have no idea how to actually get at 
them.  I can see a TransitionLog where it goes to my Process State, but then 
the next thing I see basically is the signal leaving the Process State and 
going to the next node in the process.

I tried to test the destination node in the TransitionLog to see if it is an 
instanceof a ProcessState, but it's not, it's some CGLIB thing 
(org.jbpm.graph.def.Node$$EnhancerByCGLIB$$46898e07).  The only other solution 
I can think of is to set a process variable in the super process from the sub 
process that holds that sub process' ID and then key off of the 
Variableinstance.StringUpdateLog to grab the ID and go get the process' logs. 
*sigh*  I really don't want to do that, and I have to think there is a way to 
do what I want...but alas, the solution eludes me.  Thanks for any help that 
anyone can offer.

This is in jBPM 3.1.1. by the way.

-David

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: GPD 3.0.9.2 Available

2006-06-01 Thread hosierdm
It's even worse than I thought.  It appears to reset all those check boxes 
every time I save a Java file too (which means it could happen when I save any 
type of file I guess, but I don't want to spend the time to figure that out 
right now).

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: GPD 3.0.9.2 Available

2006-06-01 Thread hosierdm
Hmm, I thought everything seemed cool with this release, but I just realized 
that in the Deployment tab, the plugin seems to select every single class that 
is under the same directory as any class that is referenced by the process.  
You can change the selection, but then it just goes right back the next time 
you edit the process and save it.  Is anyone else noticing this?

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

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


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: [jBPME][3.1.1] Nodes : state or task-node

2006-05-30 Thread hosierdm
You need to use the Task Node.  But don't forget that you have to actually add 
a task to the Task Node in order for it to do anything.  You can add one or 
more tasks to a Task Node.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Problems with jbpm-starters-lit

2006-05-28 Thread hosierdm
Here is your problem:
19:44:02,593 ERROR [Http11Protocol] Error initializing endpoint
  | java.net.BindException: Address already in use: JVM_Bind:8080 

You have something already running on port 8080.  Find what that is and shut it 
down.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Actions and Tasks

2006-05-28 Thread hosierdm
You should read these two sections of the User Guide to get a feeling for the 
differences bewteen Tasks and Actions:
http://docs.jboss.org/jbpm/v3/userguide/processmodelling.html#actions
http://docs.jboss.org/jbpm/v3/userguide/taskmanagement.html#tasks

As far as your second question, there can be many transitions leaving a given 
node.  So you could assign an action on the leave-node event that you want to 
happen, regardless of which transition is taken.  Then you could take 
transition specific action depending on which transition is traversed from the 
node.  I hope that helps.

-David

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: GPD 3.0.9.2 Available

2006-05-26 Thread hosierdm
Awesome, seems to be working great so far.  Thanks a lot for the speedy turn 
around and all your efforts.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Eclipse core commands

2006-05-25 Thread hosierdm
Well, at least Ronald isn't a JBoss employee...and he's not as bad as Adrian, 
who I've seen shred people constantly in other JBoss forums.  :p

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Eclipse core commands

2006-05-25 Thread hosierdm
It was more entertaining when you guys were verbally bitch slapping each other. 
 I still don't get the three letter acronym thing eitherI have my ideas, 
but I'm not sure.  ;)

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Associate field list in designer?

2006-05-23 Thread hosierdm
What do you mean by "assign fields"?  It seemed to me that Kevin answered your 
question affirmatively, but you apparently disagree.

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

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


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: New jBPM Getting Started Documentation

2006-05-23 Thread hosierdm
Look at all the test cases that come in the source with the distribution.  That 
will tell you all you need to know.  You can also look at the front-end code to 
see how you might write your own front-end as well.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: ActionHandler with an external library

2006-05-23 Thread hosierdm
Did you put the jar file in your server?  You only mention that you added the 
jar file to your Eclipse project.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: unable to deploy ActionHandler

2006-05-22 Thread hosierdm
You can try saving the process as a file (using the button on the left instead 
of the one on the right), and then copy the file to the server deploy 
directory.  If you are able to get that far without an Exception, the server 
should pick it up and deploy it.  Although, you might get the same error in the 
server when doing this I suppose.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: unable to deploy ActionHandler

2006-05-21 Thread hosierdm
Are your ActionHandler classes in the same Eclipse project as your process and 
also checked in the Deployment tab?  I think there is a limitation with GPD 
right now where the Java classes must reside in the same Eclipse project in 
order for them to be deployed with the process.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: JSP integration in form tasks

2006-05-21 Thread hosierdm
The existing jBPM web application is an example.  The source (classes and 
pages) are all available in the distribution that you downloaded.  It's really 
easy to figure out how to interact with jBPM to do your own webapp by looking 
at the source code for the HomeBean and TaskBean at least.  You will also need 
something like the UploadServlet if you want to deploy your processes from GPD 
and not use the jBPM webapp.  That source is available in the distribution as 
well.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: jBPM evaluation queries

2006-05-21 Thread hosierdm
Some people have had questions about how to go about the whole process 
composition thing, so I figured I would clarify a bit.  What you would need to 
do is create a new, separate process in the process designer.  Then in your 
Process State in the other process, you put the new process' name in the 
sub-process element of the process state node in the source.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: jBPM evaluation queries

2006-05-21 Thread hosierdm
You can easily aggregate processes using the Process State, which is available 
in the process designer plugin.  However, support for graphically setting 
properties on such nodes is limited, and you have to edit the source directly 
to get most of the detail in there.  Search the user the User Guide for the 
term Process Composition and see this link in the User Guide: 
http://docs.jboss.org/jbpm/v3/userguide/jpdl.html#processstate.element

You can use either a Java class OR the expressions in a decision node.  The 
User Guide points this out in the documentation of the decision node: 
http://docs.jboss.org/jbpm/v3/userguide/jpdl.html#decision.element.I think 
you might be able to supply the Java class via the graphical dialog in the 
process designer (not sure though), but I know you have to specify the 
expression directly in the source.  And these expressions are specified in the 
transition elements of the decision node.  However, note that the expressions 
are NOT beanshell expressions.  I believe the User Guide is erroneous in this 
claim.  I'm sure I've seen forum posts in regards to this, you should do a 
search.  Someone correct me if I'm wrong.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: jBPM evaluation queries

2006-05-21 Thread hosierdm
You might also give the User Guide a look, it contains a lot of information 
that could be quite helpful to you.

http://docs.jboss.org/jbpm/v3/userguide/index.html

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: jBPM evaluation queries

2006-05-21 Thread hosierdm
Anything you can do in Java, you can do with jBPM.  There is no built-in 
support for the things you mention (i.e. node types that do those things), but 
you can attach custom action handlers to nodes.  The action handlers are java 
classes that execute when the node is reached.  So your java code could invoke 
those web services, transform the results, and stick those results into process 
variables for use in the next node in the process.

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

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


---
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


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

2006-05-21 Thread hosierdm
You rule!  Thanks a lot man.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: GPD upload servlet

2006-05-18 Thread hosierdm
Yeah, you got me Ronald.  LOL

I could even settle for an easy way to change the default upload servlet 
mapping in GPD.  Like maybe in the jBPM settings, so that the servlet is global 
to all deployments, but still not hard coded and not visible from the 
deployment tab if Koen still thinks it might be confusing to people.  By 
putting it in the jBPM preferences, you can at least put a nice little 
descriptive paragraph describing the setting's purpose.  For now though, does 
the servlet value exist in a properties file or something that I could 
relatively easily change without having to rebuild the plugin (since I've never 
had any luck doing that after many attempts), or is the value written directly 
into the code?  Thanks.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: GPD upload servlet

2006-05-17 Thread hosierdm
Sorry, the first sentence was meant to be more pleading than demanding, but I 
realized that it sounded rude and demanding.  It's just killing me to not have 
that setting anymore.

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

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


---
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


[JBoss-user] [JBoss jBPM] - GPD upload servlet

2006-05-17 Thread hosierdm
Koen, you really need to add the upload servlet option back into the 
deployment.  See here: 
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=81373 for the original 
discussion.  I finished packaging my application yesterday, and I removed the 
jbpm webapp.  Then I went to deploy a process today, and of course, the upload 
servlet is gone.  By hardcoding jbpm/upload as the upload servlet location, GPD 
relies on the default jbpm webapp being deployed to the server in order deploy 
processes.  This seems to me to be quite clearly an undesirable dependency.  Is 
there any way that this could make it into your service build that will fix the 
hanging issue?  Thanks.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Hibernate not in GPD jBPM 3.1.1 Library

2006-05-17 Thread hosierdm
So I have some code where I am interacting with the Identity module and 
creating an IdentitySession like so:
IdentitySession idSession = new IdentitySession(context.getSession()); where 
context is the JbpmContext instance for the method.  As far as I know, this is 
really the only way to do this.  However, Eclipse complains that 
org.hibernate.Session, which is the return type of context.getSession(), cannot 
be found on the classpath.  I have the jBPM 3.1.1 library applied to the 
project, but I notice that the hibernate3.jar file is missing from that 
library.  I went searching through the bowels of the Eclipse configuration 
directory, and I found that the hibernate jar is indeed in there, it's just not 
being included in the library for some reason.  It's easily solved by adding 
the hibernate jar into my project as a standalone jar, but I'd rather not have 
to do that.  I just wanted to check if this was a known issue or intentional or 
what.  I could not find anything in JIRA for this.  This is with Eclipse 3.1.1 
and GPD 3.0.9.1.

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

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


---
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


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

2006-05-16 Thread hosierdm
I can confirm that as well, with the only exception being that I have the 
problem by adding the jBPM 3.1.1 jars.  For me, it shows as a combination of 
what you describe in your post and what I described in my last post.  Saving 
files causes Eclipse to hang if you have a process definition open, AND you 
have the jBPM libraries added explicitly to your Java Build Path under the 
Libraries tab in Eclipse (I have my project setup as a Java project and not a 
Process Project).

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: cvshead: all generated ddl's are the same

2006-05-16 Thread hosierdm
http://www.catb.org/~esr/faqs/smart-questions.html

Just kidding... ;-)

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Finding ActionHandlers from within a JbpmService

2006-05-16 Thread hosierdm
Ok, so I guess I'll never understand how the classloaders work in JBoss.  I got 
the server to stop saying ClassNotFound by moving ehcache.jar from the war to 
the server lib directory.  Then it complained:
01:55:06,062 WARN  [Configurator] No configuration found. Configuring ehcache 
from ehcache-failsafe.xml found in the classpath: 
jar:file:/C:/java/work/sas-server/server/sas/lib/ehcache-1.1.jar!/ehcache-failsafe.xml
So I moved the jbpm.sar.cfg.jar file that contains the configuration xml files 
out of the war and into the lib directory.  Now everything seems to start up 
and work just like it did when I was using the sar.

So I understand why the ehcache stuff could not see the config files in the 
jbpm.sar.cfg.jar from outside the war, but I have no idea why the server was 
not able to correctly load the class that it was complaining about when I had 
everything in the war.  Anyway...it's 2AM here in California...I think it's 
time for bed.  Thanks for all the input.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: can't generate new .class files in the output folder of

2006-05-16 Thread hosierdm
Like I said, execute that target in the build script.  If you are not familiar 
with how to use Ant, you can search Google for help with that.  If you are 
using Eclipse for your development, then Eclipse has built-in support for 
running Ant scripts as well.  You can search Google for that as well if that is 
your situtation.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Finding ActionHandlers from within a JbpmService

2006-05-16 Thread hosierdm
I didn't mean to say ClassNotFound, I meant NoClassDefFound.  But yeah, I don't 
get it.  Although, an idea just popped into my head.  If you look at the stack 
trace, the error originates from a Hibernate class.  I had the hibernate jar 
files in my server lib directory (because that's just how it was when I 
installed JBoss).  So as I understand it, classes inside a war are isolated in 
that war.  So if the Hibernate classes that reside outside the war are trying 
to setup the 2nd level cache stuff, and I put the jar that supports that 
(ehcache.jar) in the war, Hibernate won't be able to see that, and thus the 
error.  Which means that instead of moving my jars out of the war, I could 
probably move the hibernate jars inside the war.  I'll test that out.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Timer Tip for the Weary

2006-05-16 Thread hosierdm
Here is a tip for testing Timers...

If you are testing Timers, do yourself a favor and test with standard units and 
not business units.  Because if you're like me, you do a lot of work from home 
late at night.  And one evening, on a evening just like tonight, you'll be 
testing some new concepts that mysteriously worked earlier in the day and 
aren't working anymore.  Then you'll realize that you've been using business 
minutes in your processand IT'S NOT BUSINESS HOURS!  Ugh...  That's a 
wasted hour of my life I wish I had back.  :(

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Finding ActionHandlers from within a JbpmService

2006-05-16 Thread hosierdm
I just checked for another version of that jar file and did not find any.  I 
had my server setup to use the sar, and that all worked just fine.  All I've 
done is move those 4 jar files from the sar to the war and removed the sar.  
And these were both exploded, so there was no rebuilding going on that might 
have introduced some errors.  I'm trying to go with this deployment method 
because I have action handlers that call some classes from my web application.  
In order to get the processes to run and interact with my web application, we 
had to move all of our jar files out of the war and into the server lib 
directory (which is not desirable).  I explain this in order to preempt anyone 
that might try to tell me to stick with the sar since it was "working".  ;)

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Manual configuration for JBoss 4.0.4

2006-05-16 Thread hosierdm
This might help: http://docs.jboss.org/jbpm/v3/userguide/deployment.html.
It explains what needs to be deployed to use jBPM.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Finding ActionHandlers from within a JbpmService

2006-05-16 Thread hosierdm
Yup, that worked.  So I'm guessing my assessment of the situation was correct.  
Are we even still on topic for this thread..or have I totally hijacked it!? 
 Sorry about that if I did.  ;-)

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Build failed from cvs sources

2006-05-15 Thread hosierdm
I believe it has been discussed recently on the forums here that the build is 
currently broken, and they are working on resolving the issues.  I don't know 
what the status of that is or if that is your problem for sure, but it's a good 
possibility.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: can't generate new .class files in the output folder of

2006-05-13 Thread hosierdm
You should be able to make any changes you want to the webapp sources and then 
rebuild the webapp using the build.webapp target in the build.deploy.xml ant 
build script.  It will rebuild the war file, which you can then deploy to your 
server, replacing the existing one.  It worked for me at least.  Does that 
answer your question?

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Finding ActionHandlers from within a JbpmService

2006-05-12 Thread hosierdm
Come on now...I'm not that stupid.  The ehcache jar file IS one of the 4 jar 
files in the jbpm sar, and that class is in that jar file.  I put that jar 
file, along with jbpm-3.1.1.jar, jbpm.sar.cfg.jar, and jbpm-identity-3.1.1.jar 
in the jbpm war's WEB-INF/lib directory.  I tested it again, just to make sure 
I wasn't crazy, and I got the same problem.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Finding ActionHandlers from within a JbpmService

2006-05-12 Thread hosierdm
"[EMAIL PROTECTED]" wrote : A workaround option is not to use the .sar 
packaging to deploy jBPM, but rather to include the jbpm libs (the ones in the 
.sar) into your .war file.

I tried this solution with the jbpm war by sticking the 4 jar files into 
jbpm.war/WEB-INF/lib, and it does not work.  I just get a continuous loop of 
ClassNotFoundExceptions.  The following set of log entries just keeps repeating 
in a loop:
14:35:38,757 INFO  [Configuration] processing extends queue
  | 14:35:38,757 INFO  [Configuration] processing collection mappings
  | 14:35:38,757 INFO  [Configuration] processing association property 
references
  | 14:35:38,757 INFO  [Configuration] processing foreign key constraints
  | 14:35:38,773 INFO  [NamingHelper] JNDI InitialContext properties:{}
  | 14:35:38,773 INFO  [DatasourceConnectionProvider] Using datasource: 
java:/LsftSasJbpmDS
  | 14:35:38,773 INFO  [SettingsFactory] RDBMS: Oracle, version: Oracle 
Database 10g Release 10.2.0.1.0 - Production
  | 14:35:38,773 INFO  [SettingsFactory] JDBC driver: Oracle JDBC driver, 
version: 10.2.0.1.0
  | 14:35:38,773 INFO  [Dialect] Using dialect: 
org.hibernate.dialect.Oracle9Dialect
  | 14:35:38,773 INFO  [TransactionFactoryFactory] Using default transaction 
strategy (direct JDBC transactions)
  | 14:35:38,773 INFO  [TransactionManagerLookupFactory] No 
TransactionManagerLookup configured (in JTA environment, use of read-write or 
transactional second- level cache is not recommended)
  | 14:35:38,773 INFO  [SettingsFactory] Automatic flush during 
beforeCompletion(): disabled
  | 14:35:38,773 INFO  [SettingsFactory] Automatic session close at end of 
transaction: disabled
  | 14:35:38,773 INFO  [SettingsFactory] JDBC batch size: 15
  | 14:35:38,773 INFO  [SettingsFactory] JDBC batch updates for versioned data: 
disabled
  | 14:35:38,773 INFO  [SettingsFactory] Scrollable result sets: enabled
  | 14:35:38,773 INFO  [SettingsFactory] JDBC3 getGeneratedKeys(): enabled
  | 14:35:38,773 INFO  [SettingsFactory] Connection release mode: auto
  | 14:35:38,773 INFO  [SettingsFactory] Default batch fetch size: 1
  | 14:35:38,773 INFO  [SettingsFactory] Generate SQL with comments: disabled
  | 14:35:38,773 INFO  [SettingsFactory] Order SQL updates by primary key: 
disabled
  | 14:35:38,773 INFO  [SettingsFactory] Query translator: 
org.hibernate.hql.ast.ASTQueryTranslatorFactory
  | 14:35:38,773 INFO  [ASTQueryTranslatorFactory] Using 
ASTQueryTranslatorFactory
  | 14:35:38,773 INFO  [SettingsFactory] Query language substitutions: {}
  | 14:35:38,789 INFO  [SettingsFactory] Second-level cache: enabled
  | 14:35:38,789 INFO  [SettingsFactory] Query cache: disabled
  | 14:35:38,789 INFO  [SettingsFactory] Cache provider: 
org.hibernate.cache.EhCacheProvider
  | 14:35:38,789 ERROR [CommandExecutorThread] java.lang.NoClassDefFoundError: 
net/sf/ehcache/CacheException
  | 14:35:43,789 INFO  [STDOUT] Exception in thread "JbpmScheduler"
  | 14:35:43,789 INFO  [STDOUT] java.lang.NoClassDefFoundError: 
net/sf/ehcache/CacheException
  | 14:35:43,789 INFO  [STDOUT] at 
java.lang.Class.getDeclaredConstructors0(Native Method)
  | 14:35:43,789 INFO  [STDOUT] at 
java.lang.Class.privateGetDeclaredConstructors(Class.java:2328)
  | 14:35:43,789 INFO  [STDOUT] at 
java.lang.Class.getConstructor0(Class.java:2640)
  | 14:35:43,789 INFO  [STDOUT] at 
java.lang.Class.newInstance0(Class.java:321)
  | 14:35:43,789 INFO  [STDOUT] at 
java.lang.Class.newInstance(Class.java:303)
  | 14:35:43,789 INFO  [STDOUT] at 
org.hibernate.cfg.SettingsFactory.createCacheProvider(SettingsFactory.java:327)

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

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


---
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


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

2006-05-12 Thread hosierdm
I've discovered something that may be related to this issue.  Using 3.0.9.1 of 
GPD, whenever I have a process definition open, Eclipse pegs the CPU for about 
30 seconds every time I save any dirty file.  For example, open a process 
definition and open a java file.  Make changes to the java file and save those 
changes.  Eclipse hangs and pegs the CPU for about 30 seconds.  Then if you 
close the process definition, edit the java file, and save the java file, I get 
no hang and no CPU pegging...the file saves quickly, just like normal.  I've 
been able to reproduce this without fail.  I seem to recall reading in the JIRA 
rules that non-commiters are not supposed to add comments to JIRA issues, so 
that's why I've posted this information here.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Reassign Task Instance to Group

2006-05-11 Thread hosierdm
Well, I tried the above code, and it didn't seem to work.  My users in the new 
group do not have visibility of the task when I call 
JbpmContext.getGroupTaskList().

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Reassign Task Instance to Group

2006-05-11 Thread hosierdm
Thanks for the response.  Just to make sure I understand, are you saying I 
should do the following?

  | taskInstance.setActorId(null);
  | taskInstance.setPooledActors(new String[] {groupName});
  | 

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

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


---
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


[JBoss-user] [JBoss jBPM] - Reassign Task Instance to Group

2006-05-11 Thread hosierdm
Ok, now that I've figured out my Timer issues, I'm trying to figure out how to 
reassign a task to a group.  I see setActorId() and setPooledActors(), but I'm 
wondering if there is a way to specify a group such that when I call 
JbpmContext.getGroupTaskList(), the tasks will show up there.  I tried putting 
the group into both of the set() methods mentioned above with no luck.  I even 
tried 

  | taskInstance.getTask().setActorIdExpression("group(Sesame Street)");
  | taskInstance.assign();
  | 
That didn't work, and I didn't really expect it to.  I'd love to avoid having 
to take the group name and look up all the members of the group and set them as 
pooled actors if at all possible.  Any ideas?  Thanks.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Task Reassign after Timer

2006-05-11 Thread hosierdm
So it turns out that the Timer itself was null for some reason.  Maybe because 
it had already expired?  Anyway, I have my timer setup in the task, not the 
task-node.  So it dawned on me that I could probably get the task instance 
directly from the execution context.  Basically I was trying to make it harder 
that it needed to be.  That all worked and I was able to re-assign the task.  
Just for reference, my process definition follows:

  |
  |   
  |  
  |  
  | 
  |  
  |   
  |   
  |
  |
  |   
  |  
  |   
  |  
  |   
  |  
  | 
  |  
  |   
  |   
  |
  |
  | 

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

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


---
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


[JBoss-user] [JBoss jBPM] - Task Reassign after Timer

2006-05-11 Thread hosierdm
I've been searching for an aswer with no luck.  I am trying to implement 
escalations using timers and reassignment.  I have a Task that I've applied a 
timer to.  When the timer expires, I want to reassign the Task to another group 
or user.  I've created an ActionHandler for the timer, but I don't seem to be 
able to get at the task instance in order to reassign it.  I don't want to 
leave the node, I just want to stay put and reassign.  I tried calling
context.getTimer().getTaskInstance().setActorId("michael");
but I get a NullPointerException.  Could anyone help me figure out how to get 
the task instance to which the timer is associated?  Thanks.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: How to get process logging?

2006-05-11 Thread hosierdm
Every little detail of process execution is automatically logged by jbpm.  I 
was able to see the entire path of execution using my code that you referenced 
from the other thread.  You might try my code and see what you get.  On the 
surface, your code looks to be the same (but I didn't look too closely at it), 
except that you handle the case where the log may have multiple tokens.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: ActionHandler configuration

2006-05-11 Thread hosierdm
This thread http://jboss.org/index.html?module=bb&op=viewtopic&t=82061 seems to 
indicate that what you want to do is not possible in the current incarnation of 
jbpm.  See Tom's response in this thread.  Does that match up with what you 
were trying to do?

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Workflow History

2006-05-11 Thread hosierdm
You can get the full trace of a process' execution with the following code.  I 
used this to figure out what kind of stuff was in the jbpm log table.  You'll 
notice that there are different logging event types, so you can determine what 
the log entry applies to based on the class of the logging event.  You should 
be able to get more insight by looking at the javadocs too.

  | JbpmContext context = JbpmConfiguration.getInstance().createJbpmContext();
  | try
  | {
  |   Map logs = context.getLoggingSession().findLogsByProcessInstance(152);
  | 
  |   List logList = (List)logs.get(logs.keySet().iterator().next());
  |   for (Iterator it = logList.iterator(); it.hasNext(); )
  |   {
  | Object log = it.next();
  | System.out.println("LOG TYPE: " + log.getClass().getName() + " --> " + 
log.toString());
  |   }
  | }
  | finally
  | {
  |   context.close();
  | }   
  | 

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

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


---
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


[JBoss-user] [JBoss jBPM] - getGroupTaskList not returning task for user assigned tasks

2006-05-10 Thread hosierdm
I'm trying to play with the Identity module by assigning tasks to groups in my 
process definition.  I modified the webapp to assign a task to a specific user 
after they click on the link to start the task.  I initially changed the 
getTaskInstances() method to read as follows:
IdentitySession idSession = new IdentitySession(jbpmContext.getSession());
  | User user = idSession.getUserByName(userBean.getUserName());
  | Set memberships = user.getMemberships();
  | ArrayList userAndGroups = new ArrayList();
  | userAndGroups.add(userBean.getUserName());
  | for (Iterator it = memberships.iterator(); it.hasNext(); )
  | {
  |   Membership membership = (Membership)it.next();
  |   Group group = membership.getGroup();
  |   userAndGroups.add(group.getName());
  | }
  | System.out.println("LOOKING FOR TASKS FOR ACTORIDS: " + userAndGroups);
  | return jbpmContext.getGroupTaskList(userAndGroups);
  | 

The javadoc for the getGroupTaskList() method states:
anonymous wrote : Typically, for an actor, his/her personal actorId plus all 
the actorIds representing the groups that person belongs to form the actorIds.

I can see a task assigned to a certain group when logged in as every member of 
that group.  However, when I start the task and assign it to the specific user, 
even that specific user does not get that task in his list (i.e. 
getGroupTaskList() does not appear to return tasks for specific users, contrary 
to the javadoc).  Changing the last line of the above code by adding the 
following lines gives me what I want:
List groupTasks = jbpmContext.getGroupTaskList(userAndGroups);
  | 
groupTasks.addAll(taskMgmtSession.findTaskInstances(userBean.getUserName()));
  | return groupTasks;
  | 
Is the javadoc mistaken in its description of the getGroupTaskList() method?  
Am I misreading it?  Is there a bug? Or is it none of the above?  I did a 
search for getGroupTaskList both here and in JIRA and was not able to find any 
mention of any problems.  Thanks.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: How to define a

2006-05-10 Thread hosierdm
As far as I know, right now you cannot specify any details of a sub-process in 
the Process State using the graphical components.  For example, you cannot 
specify which process the process state is linked to using any graphical 
dialogs.  The only way to do it is to manually edit the source, which is 
available in the Source tab in the designer.  So create all your sub-processes 
in the designer, add a process state for each sub-process in your super-process 
in the designer, and then edit the source XML for the super-process to specify 
which process goes with each process state...in the designer.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: ActionHandler configuration

2006-05-10 Thread hosierdm
If you always want to pass in the variable as the value to the action handler, 
you don't even need to specify it in the configuration.  You can access your 
process variables from the ExecutionContext
city = executionContext.getVariable("city_param");

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: How to define a

2006-05-10 Thread hosierdm
It does answer at least one of your questions:

"flawlor" wrote : 
  | How do you point "phase1" at its detailed process definition?
  | 


  |   
  | 
  | 
  | 
  | 
  |   
  | 

You point phase1 at its detailed process definition by using the sub-process 
element as shown above (taken from Section 9.8 in the User Guide).  Each unique 
process that is pointed to by a sub-process needs to be its own par and 
deployed separately (prior to deploying the process that references it).  I 
don't think there is a way to nest multiple process definitions in a single 
source XML.

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

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


---
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


[JBoss-user] [JBoss jBPM] - UserDbTest.testUser() wiped database

2006-05-10 Thread hosierdm
I'm trying to learn the Identity module, so I ran the UserDbTest.testUser() 
test case.  My hibernate config points to the actual database I'm using for 
development.  When I ran the test, I ended up with a wiped out database!  All 
my tables are gone...vanished.  Maybe the Identity DB test cases are meant to 
point to an empty database and create and clean up afterwards.  If that's the 
case, then a huge fat warning in each test class would be advised.  So is this 
normal behavior for these specific test classes?  Luckily I didn't really have 
anything too important in there.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: How to define a

2006-05-10 Thread hosierdm
You need to be looking at ProcessState, not SuperState.  There is an example on 
process composition in the User Guide.  Plus there are examples in the source 
code bundled with the distribution.

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

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


---
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


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

2006-05-10 Thread hosierdm
If I am patient enough, it finally unfreezes.  But if I edit the websale 
process and then try to save it, my CPU pegs again.  I waited about ten minutes 
with it like that before I finally had to kill it.

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

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


---
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


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

2006-05-10 Thread hosierdm
anonymous wrote : If I import jbpm in my workspace however and try to open the 
websale or the simple example, then Eclipse hangs

If you are saying that add the jbpm dist as a project into your workspace, I 
can confirm that I am also doing that in the workspace in which I have the 
hanging problem.

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

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


---
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


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

2006-05-09 Thread hosierdm
I see it as well.  When I open the websale example, then click on the Source 
tab.  After that Eclipse pegs the CPU for like 3-5 minutes or until I kill it 
if I get tired of waiting.  I'm using latest JBoss IDE with GPD 3.0.9.1.  I can 
open my other processes just fine though.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Where is javadoc for org.jbpm.webapp?

2006-05-09 Thread hosierdm
I would say your best bet is to just look at the source code, which is 
available when you download the jbpm distribution.  The source code will tell 
you way more than any javadoc ever could.  It helped me out quite a bit 
actually.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: variable+process

2006-05-09 Thread hosierdm
If you want to do something like that, write your own custom controller to 
handle variables.  It would be a 'string' in the process definition, but your 
custom controller can interpret it as any type you want.  For example, you can 
enter the String 5-8-2006 and then use that string to create a Date object in 
your custom controller.  Same goes for booleans, just enter the literal string 
'true' or 'false' and then create a boolean from it in your controller.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: Using Decision Successfully....

2006-05-09 Thread hosierdm
Try this:

  | #{contextInstance.variables.decisionVariable eq 'less'}
  | 

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: jBPM 3.1.1 Released

2006-05-08 Thread hosierdm
And no, I didn't find any JIRA issues when I searched for both "mappedName" and 
"mapped-name"

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: jBPM 3.1.1 Released

2006-05-08 Thread hosierdm
Actually, you yourself acknowledged the bug and said it would be fixed in this 
release  http://jboss.org/index.html?module=bb&op=viewtopic&t=81735

I just tested it on 3.0.9 at home, and saw mappedName show up in a freshly 
created task.  Then I installed 3.0.9.1 and created a new task again, and 
voila...all fixed.  So somebody fixed it, and that's all that matters.  :)

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: about jbpm' persistence

2006-05-08 Thread hosierdm
Almost all of the examples that come with the jbpm distribution do exactly 
this, take a look at those.  Under src/java.examples after you unpack the jbpm 
distribution.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: jBPM 3.1.1 Released

2006-05-08 Thread hosierdm
Does the following line from the release notes imply that the database schema 
has changed and needs to be updated if you are upgrading from 3.1 to 3.1.1?

keep the processdefinition.xml in the database

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: how to use processState

2006-05-08 Thread hosierdm
Search this forum and/or read the User Guide, you will find your answer.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: jBPM 3.1.1 Released

2006-05-08 Thread hosierdm
And hopefully the mappedName bug is fixed in GPD 3.0.9.1, where in 3.0.9 it 
produced mappedName instead of mapped-name in the XML source...

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: changing the websale application(very urgent!!!!!!!!)

2006-05-07 Thread hosierdm
You might try exploding the war (if it isn't already), then unjar the 
WEB-INF/lib/jbpm-webapp-3.1.jar file and place the classes in the 
WEB-INF/classes directory and remove the jar file (or change its name by giving 
it a .bak extension).  This will give you direct access to the class files used 
by the webapp.  Then you can make your changes to the Beans in your editor of 
choice and copy the resulting class files into the WEB-INF/classes directory 
(in the correct package directory too of course) overwriting the ones that you 
unjarred.  This might be the easiest and most transparent way for you to make 
sure that your updated class files are getting used by the server.  Then if you 
get everything working the way you want it, you can worry about rebuilding the 
application later.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: delete process from jboss console

2006-05-05 Thread hosierdm
As far as sub-processes go, you can add a Process State to your proces in the 
graphical designer.  You can't really set any of the information on the node 
from the GUI though, so you have to go in and edit the source for the node.  
You can see an example in the User Guide:
http://docs.jboss.org/jbpm/v3/userguide/processmodelling.html#processcomposition

The User Guide is your friend.

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: How to initialize the default database in hsqldb

2006-05-04 Thread hosierdm
Are you familiar with the User Guide?  It can answer almost every question I've 
seen you asking over the last couple days, including this one (see Chapter 8).

http://docs.jboss.org/jbpm/v3/userguide/index.html

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

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


---
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


[JBoss-user] [JBoss jBPM] - Re: admin interface for jbpm

2006-05-04 Thread hosierdm
medjbpm is referring to the default web application that comes bundled with 
jbpm 3.1.  If you login to that web application there is a monitoring menu item 
that you can select and there are several things there that you can look at to 
see what's been going on with the processes.

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

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


---
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


  1   2   >