Mateus Pereira Batista

Results 8 comments of Mateus Pereira Batista

With blank password or just ENTER it not working: ssh [email protected] Welcome to cam-back! [email protected]'s password: Permission denied, please try again. [email protected]'s password: Permission denied, please try again. [email protected]'s password:

I changed the password via CLI for L!ttleTe5701: ssh [email protected] Welcome to cam-back! [email protected]'s password: L!ttle Permission denied, please try again. [email protected]'s password: L!ttleT Permission denied, please try again. [email protected]'s...

I have the same error: C:\Projects\testMQ\node_modules\java\lib\nodeJavaBridge.js:227 var clazz = java.findClassSync(name); // TODO: change to Class.forName when classloader issue is resolved. ^ Error: Could not create class MyClass java.lang.NoClassDefFoundError: MyClass Caused...

Hi, after I put the "path" component, everything is working well, thanks!

@blulas, try to run: npm install path this installs the package path.

Could you test with this: #!/usr/bin/env node const path = require('path'); console.log( path.resolve(".")); var java = require('java'); var javaLangSystem = java.import('java.lang.System'); javaLangSystem.out.printlnSync('Hello World');

Hi @xywang68, you can just put the jar inside the same directory where is the code nodejs. This is happen because nodejs doesn't work well with the relative path, so...

Following how I use to find the jars: #!/usr/bin/env node const path = require('path'); console.log(path.resolve(".")); // var java = require('java'); java.classpath.push( "."); java.classpath.push( "../lib/com.ibm.mq.headers.jar"); java.classpath.push( "../lib/com.ibm.mq.jar"); java.classpath.push( "../lib/com.ibm.mq.jmqi.jar"); java.classpath.push( "../lib/com.ibm.mq.postcard.jar");...