Re: HTTPClient SSL self signed cert

2016-02-16 Thread Brent Putman
On 2/15/16 12:52 PM, Matt Chambers wrote: > Hi Oleg, > > Well, I finally got it working. > > Apparently you can’t use PoolingClientConnectionManager with a custom SSL > context without registering the SSLConnectionSocket factory, like so: > > Registry socketFactoryRegistry = >

Re: HTTPClient SSL self signed cert

2016-02-15 Thread Matt Chambers
Hi Oleg, Well, I finally got it working. Apparently you can’t use PoolingClientConnectionManager with a custom SSL context without registering the SSLConnectionSocket factory, like so: Registry socketFactoryRegistry = RegistryBuilder . create().register("https",

Re: HTTPClient SSL self signed cert

2016-02-15 Thread Oleg Kalnichevski
On Mon, 2016-02-15 at 11:40 -0500, Matt Chambers wrote: > > On Feb 15, 2016, at 11:02 AM, Oleg Kalnichevski wrote: > > > > On Mon, 2016-02-15 at 10:54 -0500, Matt Chambers wrote: > >> Hi Oleg, > >> > >> Thanks for response…I don’t know if I’m seeing this up right. > >> > >>

Re: HTTPClient SSL self signed cert

2016-02-15 Thread Matt Chambers
> On Feb 15, 2016, at 11:02 AM, Oleg Kalnichevski wrote: > > On Mon, 2016-02-15 at 10:54 -0500, Matt Chambers wrote: >> Hi Oleg, >> >> Thanks for response…I don’t know if I’m seeing this up right. >> >> Does anyone have the steps handy to have a Tomcat and HttpClient

Re: HTTPClient SSL self signed cert

2016-02-15 Thread Oleg Kalnichevski
On Mon, 2016-02-15 at 10:54 -0500, Matt Chambers wrote: > Hi Oleg, > > Thanks for response…I don’t know if I’m seeing this up right. > > Does anyone have the steps handy to have a Tomcat and HttpClient communicate > with each other using self signed keys? > > -Matt > Matt, When it comes to

Re: HTTPClient SSL self signed cert

2016-02-15 Thread Matt Chambers
Hi Oleg, Thanks for response…I don’t know if I’m seeing this up right. Does anyone have the steps handy to have a Tomcat and HttpClient communicate with each other using self signed keys? -Matt > On Feb 15, 2016, at 5:47 AM, Oleg Kalnichevski wrote: > > On Fri, 2016-02-12

Re: HTTPClient SSL self signed cert

2016-02-15 Thread Matt Chambers
Hi, Thanks for response, signature alg doesn’t seem to be md5. Signature Algorithm: sha256WithRSAEncryption -Matt > On Feb 12, 2016, at 6:04 PM, Brent Putman wrote: > > > > On 2/12/16 5:53 PM, Matt Chambers wrote: >> I’m not sure if I’m daft or just missing

Re: HTTPClient SSL self signed cert

2016-02-15 Thread Oleg Kalnichevski
On Fri, 2016-02-12 at 17:53 -0500, Matt Chambers wrote: > I’m not sure if I’m daft or just missing something super obvious, but I’m > trying to setup HttpClient to connect to a Spring Boot server using a self > signed cert, pretty much all day. Works fine via Chome, Python’s ‘requests’ >

HTTPClient SSL self signed cert

2016-02-12 Thread Matt Chambers
I’m not sure if I’m daft or just missing something super obvious, but I’m trying to setup HttpClient to connect to a Spring Boot server using a self signed cert, pretty much all day. Works fine via Chome, Python’s ‘requests’ module, and Objective-C but no matter what I do, this exception

Re: HTTPClient SSL self signed cert

2016-02-12 Thread Brent Putman
On 2/12/16 5:53 PM, Matt Chambers wrote: > I’m not sure if I’m daft or just missing something super obvious, but I’m > trying to setup HttpClient to connect to a Spring Boot server using a self > signed cert, pretty much all day. Works fine via Chome, Python’s ‘requests’ > module, and