Joshua Hendrickson created HTTPCORE-418:
-------------------------------------------

             Summary: HttpHost should have a constructor for hostname and scheme
                 Key: HTTPCORE-418
                 URL: https://issues.apache.org/jira/browse/HTTPCORE-418
             Project: HttpComponents HttpCore
          Issue Type: Improvement
          Components: HttpCore
            Reporter: Joshua Hendrickson
            Priority: Minor


org.apache.http.HttpHost provides a (String, int, String) constructor to let 
you specify an https configuration. However, in order to not have it include 
":443" at the end of its string representation, you need to know to pass -1 for 
the port parameter. For those not familiar with the class, having a (String, 
String) constructor like the one below would be easier to grok:

new HttpHost("www.example.com", "https");

compared with what you have to do today:

new HttpHost("www.example.com", -1, "https");



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to