I'm trying to set a system property with:
System.setProperty("mail.host", "mail.xyz.com");
But I get the next error:
"Method setProperty(java.lang.String, java.lang.String) not found in class java.lang.System."
And setProperty(String key, String value) method is in the Class System
documentation. What's wrong?
Thanks in advance