On Wed, Apr 7, 2010 at 00:09, Wei Tan <[email protected]> wrote:
> WARN 2010-04-06 18:06:38,069
> (net.sf.taverna.t2.security.credentialmanager.Cred
> entialManager:595) - Failed to load the Java truststore to copy over
> certificate
> s using default password: from C:\Java\jdk1.6.0_18\jre\lib\security\cacerts
You can ignore this message, it is because CredentialManager is trying
all possible truststore passwords in this order:
public static List<String> defaultTrustStorePasswords = Arrays.asList(
System.getProperty(PROPERTY_TRUSTSTOREPASSWORD, ""),
"changeit",
"changeme", "");
As you have not set the system property
javax.net.ssl.trustStorePassword (which you don't need to unless you
have changed the trust store password).
This is part of a loop trying all of these possibilities, and
therefore I guess the log message should be INFO instead of WARN.
If CredentialManager truly can't load the default trust chain it will
first pop up a GUI (according to the SPI of CredentialProviderSPI),
and if not output an error message like this on stderr:
> Credential manager failed to load certificates from the Java truststore. Try
> using the system property
> -Djavax.net.ssl.trustStorePassword=TheTrustStorePassword
We'll change the log level so that Credential Manager is not
complaining in 2.2 - see
http://www.mygrid.org.uk/dev/issues/browse/T2-1286
--
Stian Soiland-Reyes, myGrid team
School of Computer Science
The University of Manchester
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
taverna-hackers mailing list
[email protected]
Web site: http://www.taverna.org.uk
Mailing lists: http://www.taverna.org.uk/taverna-mailing-lists/
Developers Guide: http://www.mygrid.org.uk/tools/developer-information