Hi,
Resolve by myself.
It's a tricky thing... If you set properties directly with
System.setProperty the System doesn't realize.
You have to do the following:
Properties prp = System.getProperties();
prp.setProperty("name", "value");
System.setProperties(prp);
I don't understand why...
- System properties and JSSE Carlos Piqueres Ayela
- Carlos Piqueres Ayela
