RE: java classloader

2007-09-14 Thread Daniel Baughman
PROTECTED] Sent: Thursday, September 13, 2007 4:00 PM To: CF-Talk Subject: Re: java classloader Dan - You shouldn't move the JavaLoader .jar files around, they should stay in the way they were originally downloaded in. Mark On 9/14/07, Kris Jones [EMAIL PROTECTED] wrote: Did the java classpath

Re: java classloader

2007-09-14 Thread Mark Mandel
:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 4:00 PM To: CF-Talk Subject: Re: java classloader Dan - You shouldn't move the JavaLoader .jar files around, they should stay in the way they were originally downloaded in. Mark On 9/14/07, Kris Jones [EMAIL PROTECTED] wrote: Did

java classloader

2007-09-13 Thread Daniel Baughman
Oh man I'm missing something here.. I'm using the javaclass loader to load a meta-data reader for some jpegs. It seems no matter where I put the .jar for the class loader I get the following exception: message: com.compoundtheory.classloader.NetworkClassLoader type:

Re: java classloader

2007-09-13 Thread Kris Jones
Did the java classpath on the machine change? I'm using the javaclass loader to load a meta-data reader for some jpegs. It seems no matter where I put the .jar for the class loader I get the following exception: message: com.compoundtheory.classloader.NetworkClassLoader type:

Re: SPAM - java classloader

2007-09-13 Thread Simon Horwith
you tried putting the jar in your lib directory and cycling that instance? ~Simon Simon Horwith Adobe Community Expert Adobe Certified Master Instructor http://www.horwith.com Daniel Baughman wrote: Oh man I'm missing something here.. I'm using the javaclass loader to load a meta-data

Re: java classloader

2007-09-13 Thread Mark Mandel
Dan - You shouldn't move the JavaLoader .jar files around, they should stay in the way they were originally downloaded in. Mark On 9/14/07, Kris Jones [EMAIL PROTECTED] wrote: Did the java classpath on the machine change? I'm using the javaclass loader to load a meta-data reader for some

Re: Java ClassLoader / JavaLoader.cfc Question

2006-10-04 Thread Matthew Lesko
Going to try Dan's suggestion. If that still doesn't work I will post some code. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your

Re: Java ClassLoader / JavaLoader.cfc Question

2006-10-04 Thread Dan Plesse
It's the only logical solution. I think my code is out there on the net and it might have cost me some dollars because the problem had to do with JDBC drivers and I am assuming the other classloaders still can't do JDBC but maybe they can do it now, darn. Wishlist for CF 8: A way report a JDBC

Re: Java ClassLoader / JavaLoader.cfc Question

2006-10-04 Thread Dan Plesse
I retest of javaloader version 2 HelloWorld = loader.create(org.hsqldb.jdbcDriver); hello = HelloWorld.init(); loads fine and I can see the object but class = createObject(java, java.lang.Class).forName( org.hsqldb.jdbcDriver); still blows up class = createObject(java, java.lang.Class);

Java ClassLoader / JavaLoader.cfc Question

2006-10-03 Thread Matthew Lesko
Was wondering if anyone had worked with JavaLoader.cfc (see: www.compoundtheory.com) or the Java ClassLoaders in general. I am working with Apache Lucene and Coldfusion. I've written some Java classes that extend some of Lucene's. When I try to load my classes with JavaLoader.cfc I get an

Re: Java ClassLoader / JavaLoader.cfc Question

2006-10-03 Thread Dan Plesse
It could be the order in which you loaded everything. You have to load the jars first then the classes. The second issue could be the level or depth of the classloader might be too shallow. ~| Introducing the Fusion Authority

Re: Java ClassLoader / JavaLoader.cfc Question

2006-10-03 Thread Mark Mandel
Without the error, and/or some sort of testbed to look at, it becomes hard to debug. Regards, Mark On 10/4/06, Dan Plesse [EMAIL PROTECTED] wrote: It could be the order in which you loaded everything. You have to load the jars first then the classes. The second issue could be the level or

CFCProxy and Java Classloader

2005-10-02 Thread Michael Dinowitz
I've had this conversation with a member of the community for a few days and it's been going in a circle without resolve. Here's the issue. The CFCProxy documentation says that To call a CFC, you need to be within the ColdFusion web application. This means that ColdFusion's classloader must be