Questions tagged [javaloader]

Do not confuse this tag with Java Class Loader, JavaLoader is a library used with ColdFusion to support integration and development of Java.

Do not confuse this tag with Java Class Loader, JavaLoader is a library used with ColdFusion to support integration and development of Java. Although Javaloader allows loading java classes and libraries it is only for Cold Fusion.

21 questions
13
votes
2 answers

How to properly force a Blackberry Java application to install using Loader.exe

I want to include the Application Loader process in a software installation, to ensure that users get our software installed on their Blackberry by the time our installer software finishes. I know this is possible, because Aerize Card Loader…
user128911
4
votes
1 answer

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

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",…
Jamie Jackson
  • 1,158
  • 3
  • 19
  • 34
2
votes
2 answers

Error using esapi with CF8 and JavaLoader

java.lang.reflect.InvocationTargetException SecurityConfiguration class (org.owasp.esapi.reference.DefaultSecurityConfiguration) CTOR threw exception. I get the above error when I try to do
ztatic
  • 1,181
  • 3
  • 13
  • 21
2
votes
3 answers

BlackBerry screen shot utility - from a desktop computer

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 data ... Error: buffer too small" errors.…
BonanzaDriver
  • 6,411
  • 5
  • 32
  • 35
2
votes
1 answer

ParserException Error after deploying antiSamy

I'm using antiSami with my ColdFusion project. I'm loading antiSami through onApplicationStart() like this: local.jarsArray = [ expandPath("lib/antisami/antisamy-1.4.4.jar") ]; application.antiSamiPolicyPath =…
Mohamad
  • 34,731
  • 32
  • 140
  • 219
2
votes
1 answer

JAVA Hyphenator using Coldfusion

I was hoping someone can help with the implementation of TeXHyphenator-J using CFML. I am using the JavaLoader.cfc to create a ColdFusion object of TeXHyphenator-J (as in the code below). When running the code I don't get any errors and a string is…
pelfed
  • 41
  • 3
2
votes
1 answer

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

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…
Richard Tingle
  • 16,906
  • 5
  • 52
  • 77
1
vote
2 answers

How do you tell the reference path when loading a class?

I'm trying to use JavaLoader to load a java (HttpAsyncClient) class into ColdFusion. client = loader.create("org.apache.commons.HttpAsyncClient") How do we know the reference that is org.apache.commons.HttpAsyncClient? I thought if you open the jar…
Mohamad
  • 34,731
  • 32
  • 140
  • 219
1
vote
0 answers

BlackBerry Screen Shot Utility ... Torch 9850 ... a how to guide on creating your own capture script/tool

I am providing this for everyone to hopefully save you some brain damage in finding this yourself. As I'm working on a BlackBerry project that will run on various devices I ran into an issue grabbing screenshots from the handset (including the Torch…
1
vote
0 answers

How use jargon2-api in ColdFusion?

I have to implement Argon2 hashing in Adobe ColdFusion 2018. I have found two Java Bindings which could be used: argon2-jvm: https://github.com/phxql/argon2-jvm jargon2-api: https://github.com/kosprov/jargon2-api The first one I have successfully…
1
vote
1 answer

missing package in Coldfusion 9 using JavaLoader

I have ColdFusion 9.0.2 and Java 1.6.0_29. I'm trying to use the java loader project to compile java code but I am receiving this error. package javax.servlet.http does not exist import javax.servlet.http.HttpServletRequest; However, the…
jessieloo
  • 1,759
  • 17
  • 24
1
vote
1 answer

Reboot after removing an application from Blackberry - javaloader.exe

I have a quick questions. My Blackberry gets restarted after I uninstall an application (OS 5, 6, 7) using the JavaLoader. Is that the expected behaviour? Thanks in advance, Sam
0
votes
1 answer

Android ListView list_item load another page

I have a list view loaded from an array (used from the tutorial on the android site) and inside the array are class names from other .java files in the same package. What I want it to do is when you click on the item in the list, it loads the java…
MyOwnHarem
  • 13
  • 6
0
votes
1 answer

How to load a class from its source code using Javassist?

I have in an input stream the complete source code of a class. Is it possible to use Javassist to create a new CtClass object for this class ?. I know that with the name of the class is possible to create a new CtClass object with something like:…
Sergio
  • 8,532
  • 11
  • 52
  • 94
0
votes
0 answers

BlackBerry - JavaLoader error when using the "screencapture" option

Possible Duplicate: BlackBerry screen shot utility - from a desktop computer I am attempting to use the JavaLoader tool to capture some screen shots of my Tourch 9850 ... the built-in screencapture cammand. I receive the following error: …
BonanzaDriver
  • 6,411
  • 5
  • 32
  • 35
1
2