Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-05-18 Thread Hassan Khan
You are right.. Thanks.. It was kinda of a wrong question to ask ... On Thu, May 18, 2017 at 3:35 AM, Oleg Kalnichevski wrote: > On Wed, 2017-05-17 at 12:55 -0400, Hassan Khan wrote: > > Thank oleg for the tip.. > > > > I did not change the connector till now.. but with APR

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-05-18 Thread Oleg Kalnichevski
On Wed, 2017-05-17 at 12:55 -0400, Hassan Khan wrote: > Thank oleg for the tip.. > > I did not change the connector till now.. but with APR itself I > starting > using the prod CA certificate that our company has... instead of the > self > signed certificate... > > With httpClient 3.1 all

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-05-17 Thread Hassan Khan
Thank oleg for the tip.. I did not change the connector till now.. but with APR itself I starting using the prod CA certificate that our company has... instead of the self signed certificate... With httpClient 3.1 all communication work fine. But when I upgraded prod to use the new code having

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-05-06 Thread Oleg Kalnichevski
On Fri, 2017-05-05 at 09:49 -0400, Hassan Khan wrote: > Hi, > > Finally I could solve the issue... the problem was using NIO > connector with > httpclient 4.5 > > once I changed the connector to APR the problem went away. > The right setting is: >

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-05-05 Thread Hassan Khan
is socket level setting i am missing >> Note : evey 20 secs we are pinging a servlet to get data from the >> server... >> >> Any ideas let me know. >> >> Thanks >> Hassan >> >> On Wed, Apr 26, 2017 at 6:53 PM, Bernd Eckenfels <e...@z

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-05-04 Thread Hassan Khan
content, there is no point to put an >> input stream on top of it to feed the entity. >> >> Gruss >> Bernd >> -- >> http://bernd.eckenfels.net >> >> From: Hassan Khan <hassankhan...@gmail.com> >> Sent: Wed

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-05-03 Thread Hassan Khan
nt, there is no point to put an > input stream on top of it to feed the entity. > > Gruss > Bernd > -- > http://bernd.eckenfels.net > > From: Hassan Khan <hassankhan...@gmail.com> > Sent: Wednesday, April 26, 2017 10:17:44 PM > To: Htt

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-04-26 Thread Bernd Eckenfels
<hassankhan...@gmail.com> Sent: Wednesday, April 26, 2017 10:17:44 PM To: HttpClient User Discussion Subject: Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding Hi , Wanted to know if some one can answer top of their head if OutputObjectStreams are supported in 4.5 (3.0 does). A

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-04-26 Thread Hassan Khan
Hi , Wanted to know if some one can answer top of their head if OutputObjectStreams are supported in 4.5 (3.0 does). All our objects are marked as serializable. we are using it like below to send a ObjectOutputStream to the post method: ByteArrayOutputStream baos = new ByteArrayOutputStream();

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-04-25 Thread Hassan Khan
Hi All, I have been trying to solve the below issue that show up in logs and unable to solve it from 2 weeks: 04/25/2017 15:37:30:513FINEST: Invoking post method: https://localhost/localTomcat8_Rendezvous/comm/sendPayload[Thread-23: Downloader for default channel (C:\Program

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-04-22 Thread Hassan Khan
Hi Oleg, Thanks for answering ... very excited (and humbled) to hear from you... Thanks Hassan On Sat, Apr 22, 2017 at 12:26 PM, Oleg Kalnichevski wrote: > On Fri, 2017-04-21 at 10:21 -0400, Hassan Khan wrote: > > Hi all, > > > > We have pinpointed the issue and looks

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-04-22 Thread Oleg Kalnichevski
On Fri, 2017-04-21 at 10:21 -0400, Hassan Khan wrote: > Hi all, > >   We have pinpointed the issue and looks like the code that deals > with > streaming a object from the client to the server. >   With the old code (Httpclient 3.1) we would stream the object > through a > ObjectOutputStream and

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-04-18 Thread Hassan Khan
Hi , Sorry the log images was filtered out. you can look at the uploaded image. http://imgur.com/a/Nxpcw in text the logs say: I/O read timed out. Thanks Hassan On Mon, Apr 17, 2017 at 1:35 PM, Gary Gregory wrote: > Hassan, > > Your attachments were filtered out. You

Re: Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-04-17 Thread Gary Gregory
Hassan, Your attachments were filtered out. You might want to try an image sharing site. Gary On Mon, Apr 17, 2017 at 6:16 AM, Hassan Khan wrote: > + >> > > >> Hi All, >> >> >> >>We are upgrading the httpclient in our software from 3.1 to 4.5 (we >> are adding

Upgrading from Httpclient 3.1 to 4.5 - localhost:443 not responding

2017-04-17 Thread Hassan Khan
> > + > > Hi All, > > > >We are upgrading the httpclient in our software from 3.1 to 4.5 (we are > adding both core and client). But we are having some issues in the client > and server communications. We are using the below client code (simplified > the code ) to make a call every 60 secs