Re: Checking validity of URL at other end without downloading any contents

2015-09-24 Thread Ryan Fulghum
HTTP Head requests achieve what you are looking for; On Sep 24, 2015 21:12, "Karl Wettin" wrote: > Hi all, > > I want to send a request that download headers but no actual content. Is > that possible? What I'm trying to solve is to check if any URLs in a list > of kazillion are broken in some way

OAuth token request with httpclient

2015-09-15 Thread Ryan Fulghum
We are implementing Oauth Authorization code grant flow in our Android app. Note that while registering our application with remote service we got client ID, secret key and redirect URIs. Implementation : We open login page for the service in a browser and let the user supply their credentials. B

Re: Input on solution for "Could not generate DH keypair" error w/SSL connection

2015-09-08 Thread Ryan Fulghum
We did the same thing in our Android app to remove unwanted Ciphers. We queried for enabled cipher suites in prepareSocket() and evicted the unwanted. On Sep 8, 2015 09:36, "Stefan Magnus Landrø" wrote: > I fully agree. Hardening ssl config both client and server side makes a lot > of sense. Most

Re: HTTPClient 4.3.6 : SSL Session reuse

2015-04-25 Thread Ryan Fulghum
android app in an emulator on > your own computer to capture a tcpdump? > > Sendt fra min iPhone > > > Den 16. apr. 2015 kl. 15.40 skrev Ryan Fulghum >: > > > > Thanks for your inputs. I'll inspect the HttpContext /connection logs. > > > > Not sure if

Re: HTTPClient 4.3.6 : SSL Session reuse

2015-04-16 Thread Ryan Fulghum
5. apr. 2015 kl. 19.48 skrev Oleg Kalnichevski : > > > > On Wed, 2015-04-15 at 13:38 -0400, Ryan Fulghum wrote: > >>> Are you using mutual SSL authentication by any chance? > >> > >> I don't think so. This is an Android client relying on root certifi

Re: HTTPClient 4.3.6 : SSL Session reuse

2015-04-15 Thread Ryan Fulghum
> What's the benefit of performing this in parallell? > > 2015-04-15 17:22 GMT+02:00 Oleg Kalnichevski : > > > On Wed, 2015-04-15 at 10:30 -0400, Ryan Fulghum wrote: > > > Apologies for not being clear. > > > > > > For multipart upload, we break the files

Re: HTTPClient 4.3.6 : SSL Session reuse

2015-04-15 Thread Ryan Fulghum
+ 10 part upload + end upload request)so a total of 12 connections. We are looking to reuse same SSL context for these 12 requests. Thank you. On Apr 15, 2015 10:12 AM, "Stefan Magnus Landrø" wrote: > 2015-04-15 15:40 GMT+02:00 Ryan Fulghum : > > > We are using HTTPClient 4.3.

HTTPClient 4.3.6 : SSL Session reuse

2015-04-15 Thread Ryan Fulghum
We are using HTTPClient 4.3.6 to conduct Multipart File uploads over HTTPs. As the file size grows bigger the upload operation becomes chatty. Lot of connections (contextually related) are established in short span of time. In a bid to reduce the time taken for SSL handshake for these request we w