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 door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255385
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 connection socket error while inside
a CFML page.  Right
now the only way to do that via the Admin.



On 10/4/06, Matthew Lesko [EMAIL PROTECTED] wrote:

 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 door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255462
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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);
 class.forName(org.hsqldb.jdbcDriver);

still blows up!

Good I am still safe.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255474
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 error back around an abstract class in Lucene. If I put everything in 
the Coldfusion classpath it works fine.  

I've tried changing up the parent ClassLoader to no avail. Anyone work through 
this sort of issue? 

Regards,

Matthew Lesko

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255268
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255299
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 depth of the classloader might be too
 shallow.


 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255304
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4