[equinox-dev] IP CQs waiting on your team
equinox-dev, IPZilla records show that one or more of the projects on which you are developer are in need of attention. The following CQs have been in the 'awaiting_project' status for over 3 weeks and need your team to take action. rt.equinox: 6484 Apache Felix Resolver -- checkintocvs, nonepl, sourceandbinary, unmodified, 10 months ago https://dev.eclipse.org/ipzilla/show_bug.cgi?id=6484 If you have any questions, please do not hesitate to contact your project lead, PMC member, or the EMO ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev
Re: [equinox-dev] equinox launcher using jni .
Thanks to everone who gave a thought about my previous mail . I was able to figure out why its not launching ... i was doing a WCHAR to jobjectarray which was sending some junk charecters.. Hence the issue ... On Sat, Mar 23, 2013 at 2:11 PM, Devicharan vinnakota wrote: > I was able to invoke jvm using JNI_CreateJavaVM(&jvm, (void**)&env, > &vm_args); I got the main class of > org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar . Now how to pass the > launcher arguments to equinox launcher ? I was trying to do this way ... To > which method should i pass the arguments ? i was trying to do it for the > run .. . I am getting a return code 13 and its not launching ... what could > be the issue ? > > if(mainObject != NULL) { > runMethod = env->GetMethodID( mainClass, "run", > "([Ljava/lang/String;)I"); > if(runMethod != NULL) { > methodArgs = createRunArgs(env, equinoxArg2s); > if(methodArgs != NULL) { > //results->launchResult = 0; > runresult = env->CallIntMethod(mainObject, > runMethod, methodArgs); > env->DeleteLocalRef(methodArgs); > > ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev
[equinox-dev] equinox launcher using jni .
I was able to invoke jvm using JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args); I got the main class of org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar . Now how to pass the launcher arguments to equinox launcher ? I was trying to do this way ... To which method should i pass the arguments ? i was trying to do it for the run .. . I am getting a return code 13 and its not launching ... what could be the issue ? if(mainObject != NULL) { runMethod = env->GetMethodID( mainClass, "run", "([Ljava/lang/String;)I"); if(runMethod != NULL) { methodArgs = createRunArgs(env, equinoxArg2s); if(methodArgs != NULL) { //results->launchResult = 0; runresult = env->CallIntMethod(mainObject, runMethod, methodArgs); env->DeleteLocalRef(methodArgs); ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev