javaloader

ColdFusion using Javaloader error

笑着哭i 提交于 2019-12-25 05:18:07
问题 I have a question regarding calling java class from ColdFusion using Javaloader 1.1. I attempted to access java class from ColdFusion in a local server, and there was no problem. But when I tried the same thing in office server, I got an error: "the specified directory mypath\Javaloader/tmp/AEFACE9B-1C6F-6569-2329 could not be created. The most Likely cause of this error that mypath \ / tmp/AEFACE9B-1C6F-6569-2329 already exists on your file system." And another message "The error occured in

Getting ColdFusion-Called Web Service to Work with JavaLoader-Loaded Objects

孤人 提交于 2019-12-17 17:05:29
问题 Is it possible to use JavaLoader to get objects returned by CF-called web services, and JavaLoader-loaded objects to be the same classpath context? I mean, without a lot of difficulty? // get a web service ws = createObject("webservice", local.lms.wsurl); // user created by coldfusion user = ws.GenerateUserObject(); /* user status created by java loader. ** this api provider requires that you move the stubs ** (generated when hitting the wsdl from CF for the first time) ** to the classpath. *

Stale Java classes when using ColdFusion 10's custom Java loader

两盒软妹~` 提交于 2019-12-11 03:04:02
问题 I'm trying to use ColdFusion 10's ability to load custom Java classes and watch for changes. I have been able to successfully load Java classes but they do not get updated when they are changed and recompiled. The following is an example using both ColdFusion 10's java loading and the JavaLoader library; the JavaLoader library works, ColdFusion 10 doesn't. application.cfc <cfcomponent accessors="true" output="false" persistent="false"> <cfscript> THIS.mappings["/javaloader"] =

How to setup java libraries with javaloader in Coldfusion8?

只谈情不闲聊 提交于 2019-12-06 17:41:19
问题 I'm trying to get javaLoader to run in a Coldfusion8 application and I need some help to get me across the finish line. This is what I have so far: Inside application.cfc : ... THIS.mappings["/javaloader"] = GetDirectoryFromPath( GetCurrentTemplatePath() ) & "tools/javaloader"; ... <cffunction name="onApplicationStart" returnType="boolean" output="false" hint="application initalizer"> <cfscript> Application.str = structNew(); Application.str.myJavaLoaderKey = "someUUID_javaloader";

BlackBerry screen shot utility - from a desktop computer

混江龙づ霸主 提交于 2019-11-29 16:18:58
I am looking for a screen shot tool that I can use to capture screens from my BlackBerry Tourch 9850. I have tried using the included JavaLoader utility with my SDK but I receive "Retrieving screen <active> data ... Error: buffer too small" errors. I have also tried using the BBScreenShooter v1.67 (I think this is the latest version) but it fails to capture the screen, then crashes. I need the tool to create a user manual for some software we're developing for BlackBerrys and, as they say, "a picture is worth a thousand words." If nothing else, perhaps someone knows how to address the small

BlackBerry screen shot utility - from a desktop computer

廉价感情. 提交于 2019-11-28 09:59:12
问题 I am looking for a screen shot tool that I can use to capture screens from my BlackBerry Tourch 9850. I have tried using the included JavaLoader utility with my SDK but I receive "Retrieving screen <active> data ... Error: buffer too small" errors. I have also tried using the BBScreenShooter v1.67 (I think this is the latest version) but it fails to capture the screen, then crashes. I need the tool to create a user manual for some software we're developing for BlackBerrys and, as they say, "a

Getting ColdFusion-Called Web Service to Work with JavaLoader-Loaded Objects

纵饮孤独 提交于 2019-11-28 02:03:20
Is it possible to use JavaLoader to get objects returned by CF-called web services, and JavaLoader-loaded objects to be the same classpath context? I mean, without a lot of difficulty? // get a web service ws = createObject("webservice", local.lms.wsurl); // user created by coldfusion user = ws.GenerateUserObject(); /* user status created by java loader. ** this api provider requires that you move the stubs ** (generated when hitting the wsdl from CF for the first time) ** to the classpath. ** this is one of the stubs/classes that gets called from that. */ UserStatus = javaLoader.create("com