[JBoss-user] [JBoss jBPM] - Re: Perplexing implementation of ProcessClassLoader.findClas

2006-04-15 Thread reidmp
Forget it. Original problem was an operator error. One char wrong in the action class name in the process definition. Time to bump up the font size by 1. :) Also, found that my suggested tweak wasn't viable, the parent class loader's findClass method isn't public, so you would have to use

[JBoss-user] [JBoss jBPM] - Re: Perplexing implementation of ProcessClassLoader.findClas

2006-04-15 Thread reidmp
Oops, make that: | clazz = (clazz == null) ? getParent().findClass(name) : clazz; | Forgot that there isn't a default findClass impl on ClassLoader.class. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937541#3937541 Reply to the post : http://www

[JBoss-user] [JBoss jBPM] - Perplexing implementation of ProcessClassLoader.findClass

2006-04-15 Thread reidmp
Hi all, I'm trying to use jBPM 3.1 in an EJB project. Don't care about Hibernate functionality, just in-memory usage of jBPM from a session bean. I created an action and ran into a class loading exception that from past messages in this forum I can see isn't unusual. Alas, in my project usin

[JBoss-user] [JCA/JBoss] - Re: How to deal with dependencies between JCA adaptors?

2005-09-12 Thread reidmp
Unfortunately, even though each RAR does have its own JAR, I am still hitting the IllegalAccessException. I tried also changing names on the class repositories to see if that helped, but it didn't. I'm inclined to think that this may be a JBoss bug. View the original post : http://www.jboss.

[JBoss-user] [JCA/JBoss] - Re: How to deal with dependencies between JCA adaptors?

2005-09-09 Thread reidmp
That sounds like the problem, although one aspect of your description of the situation confuses me. If each adapter has its own classloader, then doesn't it have its own copies of the classes? Maybe I'm running into the JBoss classloader-vs-repository distinction. I'm wondering if maybe I did

[JBoss-user] [JCA/JBoss] - Re: Is there a way to timeout active connections (instead of

2005-09-07 Thread reidmp
If you use the connector within the context of a transaction, you should be able to use the transaction timeout to do what you want. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3893500#3893500 Reply to the post : http://www.jboss.com/index.html?module=bb&

[JBoss-user] [JCA/JBoss] - How to deal with dependencies between JCA adaptors?

2005-09-07 Thread reidmp
I've run into a wierd problem with a pair of JCA adaptors that I created and have working on Weblogic, and kinda working on JBoss. By "kinda" I mean (described below) I can coax the adaptors into working, but normally I get an IllegalAccessException. Background -- Adaptor 1: RealCo

[JBoss-user] [JCA/JBoss] - Re: JCA/JBoss

2005-09-07 Thread reidmp
Sounds like a case of creating connections without closing them. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3893496#3893496 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3893496 --