You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Stojce Dimski (JIRA)" <ji...@apache.org> on 2009/03/30 16:36:50 UTC

[jira] Created: (HTTPCLIENT-838) HttpClientConfigurator: configuration code for httpClient instance

HttpClientConfigurator: configuration code for httpClient instance
------------------------------------------------------------------

                 Key: HTTPCLIENT-838
                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-838
             Project: HttpComponents HttpClient
          Issue Type: Improvement
          Components: HttpClient
            Reporter: Stojce Dimski
         Attachments: config.zip

provide and interface and some sample implementation for the concept of HttpClient configurator. This component should contain configuration code for already created httpClient instance. For example: registering ntlm authentication scheme, configuration involved in ssl scenarios... This way httpClient instance is decoupled from configuration code... (see attachements :-)

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org


[jira] Commented: (HTTPCLIENT-838) HttpClientConfigurator: configuration code for httpClient instance

Posted by "Oleg Kalnichevski (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HTTPCLIENT-838?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12694274#action_12694274 ] 

Oleg Kalnichevski commented on HTTPCLIENT-838:
----------------------------------------------

Stojce,

I think the code is good to be included into 4.1 release. Could you please add some javadocs for these new interfaces / classes, as well as ASL headers, though? 

Oleg

> HttpClientConfigurator: configuration code for httpClient instance
> ------------------------------------------------------------------
>
>                 Key: HTTPCLIENT-838
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-838
>             Project: HttpComponents HttpClient
>          Issue Type: Improvement
>          Components: HttpClient
>            Reporter: Stojce Dimski
>             Fix For: 4.1.0
>
>         Attachments: config.zip
>
>
> provide and interface and some sample implementation for the concept of HttpClient configurator. This component should contain configuration code for already created httpClient instance. For example: registering ntlm authentication scheme, configuration involved in ssl scenarios... This way httpClient instance is decoupled from configuration code... (see attachements :-)

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org


[jira] Commented: (HTTPCLIENT-838) HttpClientConfigurator: configuration code for httpClient instance

Posted by "Stojce Dimski (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HTTPCLIENT-838?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12695039#action_12695039 ] 

Stojce Dimski commented on HTTPCLIENT-838:
------------------------------------------

Oleg,
In the meantime I reworked it a little:
- removed 'Nop' and 'NTLM'  configurers
- added generic 'Authentication' and 'SSL' configurers
- concrete implementations have Client and not HttpClient suffix
- added headers
take a look and tell me what do you think... maybe is better to eliminate generic type <T> and just use 'AbstractHttpClient' as a type ?
if it is ok, in the next weeks I can add also javadoc and unit tests...

> HttpClientConfigurator: configuration code for httpClient instance
> ------------------------------------------------------------------
>
>                 Key: HTTPCLIENT-838
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-838
>             Project: HttpComponents HttpClient
>          Issue Type: Improvement
>          Components: HttpClient
>            Reporter: Stojce Dimski
>             Fix For: 4.1.0
>
>         Attachments: config.zip, config2.zip
>
>
> provide and interface and some sample implementation for the concept of HttpClient configurator. This component should contain configuration code for already created httpClient instance. For example: registering ntlm authentication scheme, configuration involved in ssl scenarios... This way httpClient instance is decoupled from configuration code... (see attachements :-)

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org


[jira] Commented: (HTTPCLIENT-838) HttpClientConfigurator: configuration code for httpClient instance

Posted by "Oleg Kalnichevski (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HTTPCLIENT-838?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12695708#action_12695708 ] 

Oleg Kalnichevski commented on HTTPCLIENT-838:
----------------------------------------------

I think the use of generics in this case is all right, but I leave it up to you. Code looks good to me.

Oleg

> HttpClientConfigurator: configuration code for httpClient instance
> ------------------------------------------------------------------
>
>                 Key: HTTPCLIENT-838
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-838
>             Project: HttpComponents HttpClient
>          Issue Type: Improvement
>          Components: HttpClient
>            Reporter: Stojce Dimski
>             Fix For: 4.1.0
>
>         Attachments: config.zip, config2.zip
>
>
> provide and interface and some sample implementation for the concept of HttpClient configurator. This component should contain configuration code for already created httpClient instance. For example: registering ntlm authentication scheme, configuration involved in ssl scenarios... This way httpClient instance is decoupled from configuration code... (see attachements :-)

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org


[jira] Updated: (HTTPCLIENT-838) HttpClientConfigurator: configuration code for httpClient instance

Posted by "Stojce Dimski (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HTTPCLIENT-838?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stojce Dimski updated HTTPCLIENT-838:
-------------------------------------

    Attachment: config.zip

> HttpClientConfigurator: configuration code for httpClient instance
> ------------------------------------------------------------------
>
>                 Key: HTTPCLIENT-838
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-838
>             Project: HttpComponents HttpClient
>          Issue Type: Improvement
>          Components: HttpClient
>            Reporter: Stojce Dimski
>         Attachments: config.zip
>
>
> provide and interface and some sample implementation for the concept of HttpClient configurator. This component should contain configuration code for already created httpClient instance. For example: registering ntlm authentication scheme, configuration involved in ssl scenarios... This way httpClient instance is decoupled from configuration code... (see attachements :-)

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org


[jira] Updated: (HTTPCLIENT-838) HttpClientConfigurator: configuration code for httpClient instance

Posted by "Oleg Kalnichevski (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HTTPCLIENT-838?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Oleg Kalnichevski updated HTTPCLIENT-838:
-----------------------------------------

    Fix Version/s: 4.1.0

> HttpClientConfigurator: configuration code for httpClient instance
> ------------------------------------------------------------------
>
>                 Key: HTTPCLIENT-838
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-838
>             Project: HttpComponents HttpClient
>          Issue Type: Improvement
>          Components: HttpClient
>            Reporter: Stojce Dimski
>             Fix For: 4.1.0
>
>         Attachments: config.zip
>
>
> provide and interface and some sample implementation for the concept of HttpClient configurator. This component should contain configuration code for already created httpClient instance. For example: registering ntlm authentication scheme, configuration involved in ssl scenarios... This way httpClient instance is decoupled from configuration code... (see attachements :-)

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org


[jira] Updated: (HTTPCLIENT-838) HttpClientConfigurator: configuration code for httpClient instance

Posted by "Stojce Dimski (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HTTPCLIENT-838?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stojce Dimski updated HTTPCLIENT-838:
-------------------------------------

    Attachment: config2.zip

> HttpClientConfigurator: configuration code for httpClient instance
> ------------------------------------------------------------------
>
>                 Key: HTTPCLIENT-838
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-838
>             Project: HttpComponents HttpClient
>          Issue Type: Improvement
>          Components: HttpClient
>            Reporter: Stojce Dimski
>             Fix For: 4.1.0
>
>         Attachments: config.zip, config2.zip
>
>
> provide and interface and some sample implementation for the concept of HttpClient configurator. This component should contain configuration code for already created httpClient instance. For example: registering ntlm authentication scheme, configuration involved in ssl scenarios... This way httpClient instance is decoupled from configuration code... (see attachements :-)

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org


[jira] Resolved: (HTTPCLIENT-838) HttpClientConfigurator: configuration code for httpClient instance

Posted by "Oleg Kalnichevski (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HTTPCLIENT-838?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Oleg Kalnichevski resolved HTTPCLIENT-838.
------------------------------------------

       Resolution: Won't Fix
    Fix Version/s:     (was: 4.1 Alpha2)

It's been almost a year since the last comment. Closing as WONTFIX.

Oleg 

> HttpClientConfigurator: configuration code for httpClient instance
> ------------------------------------------------------------------
>
>                 Key: HTTPCLIENT-838
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-838
>             Project: HttpComponents HttpClient
>          Issue Type: Improvement
>          Components: HttpClient
>            Reporter: Stojce Dimski
>         Attachments: config.zip, config2.zip
>
>
> provide and interface and some sample implementation for the concept of HttpClient configurator. This component should contain configuration code for already created httpClient instance. For example: registering ntlm authentication scheme, configuration involved in ssl scenarios... This way httpClient instance is decoupled from configuration code... (see attachements :-)

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org