Hi all,
When performing the given test [1] on HARMONY and RI, it shows RI provides
such "java.endorsed.dirs" SYSTEM PROPERTY while HARMONY doesn't.
Sometimes, JRE may search for JAR files in the endorsed directories in order
to run some specific applications correctly.
As for me, I think this is non-bug difference between HARMONY and RI. If
necessary, it could be implemented at VM-side.
Do we need to follow RI on this behaviour? What is your opinion? :)
[1] Sample:
public static void main(String[] args) {
System.out.println(System.getProperty("java.endorsed.dirs"));
}