Re: Websocket support??

2015-05-08 Thread Tony Anecito
Thanks Oleg for your prompt response and good to hear you are working on http2 support. -Tony On Friday, May 8, 2015 2:12 AM, Oleg Kalnichevski wrote: On Thu, 2015-05-07 at 20:21 +, Tony Anecito wrote: > Hi All,Does httpclient support websockets? I want to try websockets

Websocket support??

2015-05-07 Thread Tony Anecito
Hi All,Does httpclient support websockets? I want to try websockets out and I am hoping httpclient might support and saw some emails from 2010 talking about it.I am willing to use another package if needed. Regards,-Tony

Re: Support for http 2.0

2015-02-24 Thread Tony Anecito
ring. > On 25 Feb 2015, at 11:43, Tony Anecito wrote: > > Good question. Simpler means no frameworks without all the features and focus > on simple url type calls to take advantage of the performance to begin > with.http 2.0 is mostly about performance. The question is what w

Re: Support for http 2.0

2015-02-24 Thread Tony Anecito
ony Anecito : > > My guess is IT and developers will be pushed to quickly use the new standard > and bypass HC to use a simpler solution in the interim. > Regards,-Tony > > >    On Tuesday, February 24, 2015 12:39 PM, Tony Anecito > wrote: > > > Thanks Gary look

Re: Support for http 2.0

2015-02-24 Thread Tony Anecito
My guess is IT and developers will be pushed to quickly use the new standard and bypass HC to use a simpler solution in the interim. Regards,-Tony On Tuesday, February 24, 2015 12:39 PM, Tony Anecito wrote: Thanks Gary looks like discussions are happening but nothing is ever vary

Re: Support for http 2.0

2015-02-24 Thread Tony Anecito
Thanks Gary looks like discussions are happening but nothing is ever vary fast. -Tony On Tuesday, February 24, 2015 12:08 PM, Gary Gregory wrote: Please see https://marc.info/?l=httpclient-commons-dev&m=142434644830689&w=2 Gary On Tue, Feb 24, 2015 at 10:56 AM, Tony

Support for http 2.0

2015-02-24 Thread Tony Anecito
Hi All, Is there plans by Apache http components to support http 2.0? Thanks,-Tony

Upgrade to latest httpclient and now getting timeouts

2014-04-15 Thread Tony Anecito
Hi All, I just upgraded to 4.3.3 of Httpclient and now getting connection timeouts when using from internet. The older version worked just fine and all I did was change code to use provider and newer connection manager. Anyone have any ideas what might be wrong? Thanks!

Re: [ANNOUNCEMENT] HttpComponents HttpClient 4.3.2 Released

2014-01-21 Thread Tony Anecito
Thanks Gary there was nothing about performance improvements at least what I noticed. Just wanted to be sure. -Tony On Tuesday, January 21, 2014 9:33 AM, Tony Anecito wrote: I am using 4.2.5. Have there been any performance improvements since then? Great job on the updates! -Tony

Re: [ANNOUNCEMENT] HttpComponents HttpClient 4.3.2 Released

2014-01-21 Thread Tony Anecito
I am using 4.2.5. Have there been any performance improvements since then? Great job on the updates! -Tony On Tuesday, January 21, 2014 1:29 AM, Gary Gregory wrote: The Apache HttpComponents project is pleased to announce 4.3.2 GA release of HttpComponents HttpClient. [Sorry for the rese

Re: [POLL] Minimal JRE level as of HttpClient 4.4

2013-09-16 Thread Tony Anecito
Real world still using 1.6. Until it is gone from the public if this compiled to 1.7 byte code it will break in clients using 1.6 jre. I want to switch to 1.7 but too many open source projects still using 1.6 bytecode also. --- [ ] keep Java 1.5 compatibility: no good reason to u

Re: Truning off Chunked Encoding...

2013-05-22 Thread Tony Anecito
se); > >  method.setEntity(reqEntity); > resp = cli.execute(method); > > Alternatively, one can make HttpClient use HTTP/1.0, which will automatically disable chunk content coding. Oleg > On Sun, May 19, 2013 at 5:19 PM, Tony Anecito wrote: > > > Hi All, > >

Re: Turning off Chunked Encoding...

2013-05-20 Thread Tony Anecito
Thanks David, I am curious does anyone know if chunked encoding by default was enabled in httpclient sometime after httpclient 3.1? I see hints of it when I google. Thanks, -Tony From: David Motes To: HttpClient User Discussion ; Tony Anecito Sent

Truning off Chunked Encoding...

2013-05-19 Thread Tony Anecito
Hi All,   I recently upgraded from http client 3.1 to 4.2.5 and discovered that some http proxies (earlier version squid proxy does not supported it) will not work with 4.2.5 due to not supporting chunked encoding.   So for now how do I tell 4.2.5 not to use chunked encoding? I do not have contr

Re: [ANNOUNCEMENT] HttpComponents HttpCore 4.3-beta1 Released

2013-03-27 Thread Tony Anecito
Hi Oleg, I googled for examples of Restful web service request/response and found maybe one or two references that may work. Seems having the headers of the request setup correctly is important which makes sense. I will look some more before I try coding something. Regards, -Tony Anecito

Re: [ANNOUNCEMENT] HttpComponents HttpCore 4.3-beta1 Released

2013-03-26 Thread Tony Anecito
Hi Oleg, Looks like I can not use this. I use Jersey for Rest web services and do not see a way to use what you have. Maybe I am wrong? Thanks, -Tony From: Oleg Kalnichevski To: Tony Anecito Cc: HttpClient User Discussion Sent: Tuesday, March 26, 2013

Re: [ANNOUNCEMENT] HttpComponents HttpCore 4.3-beta1 Released

2013-03-26 Thread Tony Anecito
Hi Oleg, I am using commons-httpclient-3.1.jar. Is that needed for your example for 4.3-beta 1? Regards, -Tony From: Oleg Kalnichevski To: Tony Anecito Cc: HttpClient User Discussion Sent: Monday, March 25, 2013 2:05 PM Subject: Re: [ANNOUNCEMENT

Re: [ANNOUNCEMENT] HttpComponents HttpCore 4.3-beta1 Released

2013-03-25 Thread Tony Anecito
Hi, I have a couple of questions that center around migration to 4.3 beta 1. 1. Can I use a httpclient 4.1 front end with a 4.3 beta 1 server side code? 2. I am using http commons and wondering if I need to use that with this 4.3 beta release. 3. What version of jackson JSON works with this 4.3

Re: Almost there just need a little more help...

2013-01-01 Thread Tony Anecito
Problem solved. It turned out I needed to supply proxy name and port.   Regards, -Tony --- On Tue, 1/1/13, Tony Anecito wrote: From: Tony Anecito Subject: Re: Almost there just need a little more help... To: "HttpClient User Discussion" Date: Tuesday, January 1, 2013, 1:18 AM Ok

Re: Almost there just need a little more help...

2013-01-01 Thread Tony Anecito
connection manager but the examples I have found seem to want only DefaultHttpClient.   Any suggestions?   Thks, Tony --- On Mon, 12/31/12, Tony Anecito wrote: From: Tony Anecito Subject: Re: Almost there just need a little more help... To: "HttpClient User Discussion" Date: Monday

Re: Almost there just need a little more help...

2012-12-31 Thread Tony Anecito
UsernamePasswordCredentials(user.getUsername(), user.getPassword())); I will keep looking. -Tony --- On Mon, 12/31/12, Tony Anecito wrote: From: Tony Anecito Subject: Re: Almost there just need a little more help... To: "HttpClient User Discussion" Date: Monday, December 31, 2012, 8:58

Re: Almost there just need a little more help...

2012-12-31 Thread Tony Anecito
the call httpclient.getCredentialsProvider().setCredentials().   Thanks for the advice. -Tony --- On Mon, 12/31/12, Tony Anecito wrote: From: Tony Anecito Subject: Almost there just need a little more help... To: httpclient-users@hc.apache.org Date: Monday, December 31, 2012, 8:47 PM Hi All

Almost there just need a little more help...

2012-12-31 Thread Tony Anecito
Hi All,   I am currently using JAX-WS and have been working on using JAX-RS using Jersey and Apache Http Client. I have gotten requests to work between between my client and jax-rs service. When I tried in an environment where NTLM is used I could not get my http requests to go through the netwo

ApacheHttp and Tomcat 7 tests...

2011-03-05 Thread Tony Anecito
: Tony Anecito To: HttpClient User Discussion Sent: Thu, March 3, 2011 10:49:53 PM Subject: Re: Slowness of 4.1 Hi Oleg, Here is some numbers when running TestHttpClient4. I am running from Eclipse using jdk 1. 6.0.22 and a Aspire 5670 which has Intel Core Duo T2300 (1.66 GHz, 667 MHz FSB, 2MB L2

Re: Slowness of 4.1

2011-03-03 Thread Tony Anecito
around 400microseconds. The CPU utilization is between 50-60% on the laptop and around 5-7% on my 6 core server with Tomcat 7. Tommow I will setup the test to run from a faster client and see the results. - Original Message From: Tony Anecito To: HttpClient User Discussion Sent

Re: Slowness of 4.1

2011-03-03 Thread Tony Anecito
all those suggestions might fit your testing goals. Regards, -Tony - Original Message From: Oleg Kalnichevski To: HttpClient User Discussion Sent: Thu, March 3, 2011 1:52:37 PM Subject: Re: Slowness of 4.1 On Thu, 2011-03-03 at 09:20 -0800, Tony Anecito wrote: > Hi, > > W

Re: Slowness of 4.1

2011-03-03 Thread Tony Anecito
- Original Message From: Tony Anecito To: HttpClient User Discussion Sent: Thu, March 3, 2011 10:20:18 AM Subject: Re: Slowness of 4.1 Hi, Where can I find the client side code for this test? I think I found it once before and discovered the way the response times were calculated were incorrect

Re: Slowness of 4.1

2011-03-03 Thread Tony Anecito
soemwhere and compare it to what I have unless you have a link to it. Thanks, -Tony - Original Message From: Oleg Kalnichevski To: HttpClient User Discussion Sent: Thu, March 3, 2011 2:46:03 AM Subject: Re: Slowness of 4.1 On Thu, 2011-03-03 at 01:38 -0800, Tony Anecito wrote: > Hi

Slowness of 4.1

2011-03-03 Thread Tony Anecito
Hi All, I downloaded httpclient 4.1 and noticed it is significantly slower than 3.1. I even used the threadsafe connection manager hoping for better performance. I used to get below 3msec and now it is above 150msec. Is keepalive used by default? If not where can I find an example that sets it