You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vasily Zakharov (JIRA)" <ji...@apache.org> on 2007/12/05 18:17:48 UTC

[jira] Commented: (HARMONY-5191) [classlib][security][geronimo] SSL protocol not supported

    [ https://issues.apache.org/jira/browse/HARMONY-5191?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548735 ] 

Vasily Zakharov commented on HARMONY-5191:
------------------------------------------

The problem seems to be worked around successfully by adding the following module to geronimo/var/config/config.xml file:

<module name="org.apache.geronimo.configs/j2ee-corba-yoko/2.0.2/car">
   <gbean name="CORBASSLConfig">
      <attribute name="protocol">TLS</attribute>
   </gbean>
</module>


> [classlib][security][geronimo] SSL protocol not supported
> ---------------------------------------------------------
>
>                 Key: HARMONY-5191
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5191
>             Project: Harmony
>          Issue Type: Bug
>          Components: App-Oriented Bug Reports, Classlib
>            Reporter: Vasily Zakharov
>
> Geronimo 2.0 fails to start on Harmony because SSL protocol is not supported:
> public class Test {
>     public static void main(String[] args) {
>         try {
>             javax.net.ssl.SSLContext.getInstance("SSL");
>             System.out.println("SUCCESS");
>         } catch (Exception e) {
>             e.printStackTrace(System.out);
>         }
>     }
> }
> Output on RI:
> SUCCESS
> Output on Harmony:
> java.security.NoSuchAlgorithmException: SSLContext SSL implementation not found
>         at org.apache.harmony.security.fortress.Engine.getInstance(Engine.java:105)
>         at javax.net.ssl.SSLContext.getInstance(SSLContext.java:79)
>         at Test.main(Test.java:4)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.