Accessing Java Classes from Webservice Stubs
So far I have been able to call a web service and copy the appropriate directories and files to the designated class path. I can also successfully access a class file like this:
MyObject = CreateObject("java", "ca.x.y.z.TestCollection.TestItem");
However, whenever I try to do something with that variable, I get a white screen. Any text that should have appeared before the command, will appear, but nothing appears afterwards, not even debugging info. Here are a couple of commands that will cause this to happen.
<cfdump var = "#MyObject#">
MyObject = CreateObject("java", "ca.x.y.z.TestCollection.TestItem").init();
x = MyObject.init();
Anybody have any ideas?
