On 23/09/2010 02:54, aravidu wrote:
> -Djavax.net.ssl.keyStore =${truststore.location}
> With this setup, it kept complaining about a very basic error. Here is the
> exception:
> java.lang.NoClassDefFoundError: =C:\Clientcerts\client.keystore
That would be because you made a basic error and included a space before
the '=' symbol. Java then correctly assumes you're telling it to load a
class called '=C:\Clientcerts\client.keystore', which doesn't exist.
Yours:
-Djavax.net.ssl.keyStore =${truststore.location}
Fixed:
-Djavax.net.ssl.keyStore=${truststore.location}
p
0x62590808.asc
Description: application/pgp-keys
signature.asc
Description: OpenPGP digital signature
