Re: [R] [rJava] RJavaClassLoader and system classloader

2014-09-30 Thread Mohan Radhakrishnan
Hi, You could ask the author or post an issue here .( https://github.com/s-u/rJava) I had faced a problem and I got a response from him. In my case I am streaming JVM data and this( http://www.openanalytics.eu/r-service-bus) may be a better idea. I haven't still tried this. Thanks,

Re: [R] [rJava] RJavaClassLoader and system classloader

2014-09-30 Thread Benoît Thiébault
Thank you very much for your answer. I will look further into R Service Bus. In the meantime, I have posted an issue on GitHub https://github.com/s-u/rJava/issues/32 where I describe a way to reproduce the unexpected behaviour. Kind regards, Ben Le 30 sept. 2014 � 12:23, Mohan Radhakrishnan

[R] [rJava] RJavaClassLoader and system classloader

2014-09-26 Thread Benoît Thiébault
Hi everyone, I want to call a Java application from R and have encountered some problems with the way rJava deals with the system class loader. To run my application, I use the following R script: library(rJava) .jinit() .jaddClassPath(myApp.jar) rWrapper - .jnew(org/test/RWrapper)