dev@glassfish.java.net

[v3] get DefaultCipherSuites() return empty array

From: Anissa Lam <Anissa.Lam_at_Sun.COM>
Date: Tue, 25 Mar 2008 22:30:16 -0700

I need to get the default cipherSuites thats supported in V3 to display
to user in the Admin Console.
This is how I did it in V2. When using the same JDK (1.5.0_13) on V2
returns 18 ciphers.
The same code in V3 returns an empty String Array.
Can someone tell me if this is a known issue or if i need to do
something differently ?

            SSLServerSocketFactory factory =
(SSLServerSocketFactory)SSLServerSocketFactory.getDefault();
            String[] supportedCiphers = factory.getDefaultCipherSuites();

thanks
Anissa.