You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@marmotta.apache.org by "Dietmar Glachs (JIRA)" <ji...@apache.org> on 2017/12/11 11:27:00 UTC

[jira] [Updated] (MARMOTTA-672) Marmotta Client Library does not support https

     [ https://issues.apache.org/jira/browse/MARMOTTA-672?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dietmar Glachs updated MARMOTTA-672:
------------------------------------
    Description: 
The HTTPUtil should add "https" as a supported scheme to the created HttpClient.           

{code:title=HTTPUtil.java|borderstyle=solid}
 final Registry<ConnectionSocketFactory> registry = RegistryBuilder.<ConnectionSocketFactory>create()
   .register("http", PlainConnectionSocketFactory.getSocketFactory())
   .register("https", SSLConnectionSocketFactory.getSocketFactory())
   .build();
{code}

currently the "https" line is commented out

  was:
The HTTPUtil should add "https" as a supported scheme to the created HttpClient.           

{code:HTTPUtil.java|borderstyle=solid}
 final Registry<ConnectionSocketFactory> registry = RegistryBuilder.<ConnectionSocketFactory>create()
   .register("http", PlainConnectionSocketFactory.getSocketFactory())
   .register("https", SSLConnectionSocketFactory.getSocketFactory())
   .build();
{code}

currently the "https" line is commented out


> Marmotta Client Library does not support https 
> -----------------------------------------------
>
>                 Key: MARMOTTA-672
>                 URL: https://issues.apache.org/jira/browse/MARMOTTA-672
>             Project: Marmotta
>          Issue Type: Improvement
>          Components: Client Library
>    Affects Versions: 3.4.0
>            Reporter: Dietmar Glachs
>             Fix For: 3.4.0
>
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> The HTTPUtil should add "https" as a supported scheme to the created HttpClient.           
> {code:title=HTTPUtil.java|borderstyle=solid}
>  final Registry<ConnectionSocketFactory> registry = RegistryBuilder.<ConnectionSocketFactory>create()
>    .register("http", PlainConnectionSocketFactory.getSocketFactory())
>    .register("https", SSLConnectionSocketFactory.getSocketFactory())
>    .build();
> {code}
> currently the "https" line is commented out



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)