Re: httpcomponents-core git commit: [HTTPCORE-514] Exceptions defined by HttpCore should clean message strings when built to replace non-printable characters with hex values.

2018-02-24 Thread Gary Gregory
On Sat, Feb 24, 2018 at 6:48 PM, Bindul Bhowmik wrote: > On Sat, Feb 24, 2018 at 8:46 AM, wrote: > > Repository: httpcomponents-core > > Updated Branches: > > refs/heads/master 286ec375d -> 458d7c628 > > > > > > [HTTPCORE-514] Exceptions defined

Re: httpcomponents-core git commit: [HTTPCORE-514] Exceptions defined by HttpCore should clean message strings when built to replace non-printable characters with hex values.

2018-02-24 Thread Bindul Bhowmik
On Sat, Feb 24, 2018 at 8:46 AM, wrote: > Repository: httpcomponents-core > Updated Branches: > refs/heads/master 286ec375d -> 458d7c628 > > > [HTTPCORE-514] Exceptions defined by HttpCore should clean message > strings when built to replace non-printable characters with

Re: Logging messages and arrows

2018-02-24 Thread Gary Gregory
On Sat, Feb 24, 2018 at 5:44 PM, Bindul Bhowmik wrote: > On Sat, Feb 24, 2018 at 2:40 PM, Gary Gregory > wrote: > > Hi All: > > > > This is a detail so you might not care. > > > > In my apps in library, instead of using arrows made from

Re: Logging messages and arrows

2018-02-24 Thread Bindul Bhowmik
On Sat, Feb 24, 2018 at 2:40 PM, Gary Gregory wrote: > Hi All: > > This is a detail so you might not care. > > In my apps in library, instead of using arrows made from characters like > "->" I use the proper Unicode character for that arrow like "→". > > Any thoughts on

Logging messages and arrows

2018-02-24 Thread Gary Gregory
Hi All: This is a detail so you might not care. In my apps in library, instead of using arrows made from characters like "->" I use the proper Unicode character for that arrow like "→". Any thoughts on updating our logging in HttpCore to do this? Gary

Core 5 and Java 8

2018-02-24 Thread Gary Gregory
Hi All: We started to talk about Java 8 a while back and I am now wondering what we should do. I see the neat stuff we did with creating abstractions with the new TimeValue and Timeout classes. With Java 8, I imagine that the TimeValue class would be replaced by Java 8's Duration. I still like

[jira] [Commented] (HTTPCORE-514) Exceptions defined by HttpCore should clean message strings when built to replace non-printable characters with hex values

2018-02-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/HTTPCORE-514?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16375620#comment-16375620 ] ASF subversion and git services commented on HTTPCORE-514: -- Commit

Re: Core 4.x and custom HttpRequestFactory

2018-02-24 Thread Gary Gregory
On Sat, Feb 24, 2018 at 3:52 AM, Oleg Kalnichevski wrote: > On Fri, 2018-02-23 at 21:13 -0700, Gary Gregory wrote: > > Hi All, > > > > In my proxy, I use: > > > > DefaultHttpServerIODispatch.create(serviceHandler, serverSslContext, > > serverConnectionConfig) > > > > In order

Re: A better message for an "Invalid request line"

2018-02-24 Thread Gary Gregory
On Sat, Feb 24, 2018 at 8:26 AM, Gary Gregory wrote: > > > On Wed, Feb 21, 2018 at 2:43 AM, Oleg Kalnichevski > wrote: > >> On Tue, 2018-02-20 at 12:55 -0700, Gary Gregory wrote: >> > Hi All: >> > >> > I am debugging a use case where my HTTP server

[jira] [Closed] (HTTPCORE-514) Exceptions defined by HttpCore should clean message strings when built to replace non-printable characters with hex values

2018-02-24 Thread Gary Gregory (JIRA)
[ https://issues.apache.org/jira/browse/HTTPCORE-514?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gary Gregory closed HTTPCORE-514. - Resolution: Fixed Fix Version/s: 5.0-beta3 In git master and 4.4.x. > Exceptions

[jira] [Commented] (HTTPCORE-514) Exceptions defined by HttpCore should clean message strings when built to replace non-printable characters with hex values

2018-02-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/HTTPCORE-514?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16375615#comment-16375615 ] ASF subversion and git services commented on HTTPCORE-514: -- Commit

[jira] [Commented] (HTTPCORE-514) Exceptions defined by HttpCore should clean message strings when built to replace non-printable characters with hex values

2018-02-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/HTTPCORE-514?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16375614#comment-16375614 ] ASF subversion and git services commented on HTTPCORE-514: -- Commit

[jira] [Updated] (HTTPCORE-514) Exceptions defined by HttpCore should clean message strings when built to replace non-printable characters with hex values

2018-02-24 Thread Gary Gregory (JIRA)
[ https://issues.apache.org/jira/browse/HTTPCORE-514?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gary Gregory updated HTTPCORE-514: -- Summary: Exceptions defined by HttpCore should clean message strings when built to replace

Re: A better message for an "Invalid request line"

2018-02-24 Thread Gary Gregory
On Wed, Feb 21, 2018 at 2:43 AM, Oleg Kalnichevski wrote: > On Tue, 2018-02-20 at 12:55 -0700, Gary Gregory wrote: > > Hi All: > > > > I am debugging a use case where my HTTP server receives junk it > > seems: > > > > org.apache.http.ProtocolException: Invalid request line: 4

[jira] [Created] (HTTPCORE-514) HttpExceptions should clean message strings when built to replace non-printable characters with hex values

2018-02-24 Thread Gary Gregory (JIRA)
Gary Gregory created HTTPCORE-514: - Summary: HttpExceptions should clean message strings when built to replace non-printable characters with hex values Key: HTTPCORE-514 URL:

Re: Core 4.x and custom HttpRequestFactory

2018-02-24 Thread Oleg Kalnichevski
On Fri, 2018-02-23 at 21:13 -0700, Gary Gregory wrote: > Hi All, > > In my proxy, I use: > > DefaultHttpServerIODispatch.create(serviceHandler, serverSslContext, > serverConnectionConfig) > > In order to support HTTP DELETE with a message body (I know, I know), > I've > created a custom