Re: [Resteasy-users] Client read timeouts on a call-by-call basis

2014-05-07 Thread Bill Burke
You would have to create a new ResteasyClient each time.  We use Apache 
HttpClient under the covers, IIRC, you could only set it at socket 
creation time, not per request.  I could be wrong though.

On 5/6/2014 12:34 PM, David R Robison wrote:
 I am using the resteasy client to communicate with a digital camera.
 Most of the commands finish in about 300ms but some take over 2s. Is
 there a way to specify the read timeout for individual calls? I know I
 can set a global SO_TIMEOUT value but can I change it with wach call I make?
 Thanks, David


-- 
Bill Burke
JBoss, a division of Red Hat
http://bill.burkecentral.com

--
Is your legacy SCM system holding you back? Join Perforce May 7 to find out:
#149; 3 signs your SCM is hindering your productivity
#149; Requirements for releasing software faster
#149; Expert tips and advice for migrating your SCM now
http://p.sf.net/sfu/perforce
___
Resteasy-users mailing list
Resteasy-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/resteasy-users


Re: [Resteasy-users] Client read timeouts on a call-by-call basis

2014-05-07 Thread Bill Burke
I assume you're using the old deprecated client api?

ProxyFactory allows you to pass in a ClientExecutor.  Create one of 
those, and pass it in.  Then you have a reference to it.

ApacheHttpClient4Executor executor = new ApacheHttpclient4Executor(...);

MyInterface proxy = ProxyFactory.create(MyInterface.class, http:/base, 
executor);



On 5/7/2014 8:47 AM, David R Robison wrote:
 Thanks, if I am creating a new client each time (I'm using the
 ProxyFactory) then what is the proper way to release a proxy created by
 ProxyFactory? David

 David R Robison
 Open Roads Consulting, Inc.
 103 Watson Road, Chesapeake, VA 23320
 phone: (757) 546-3401
 e-mail: drrobi...@openroadsconsulting.com
 web: http://openroadsconsulting.com
 blog: http://therobe.blogspot.com
 book: http://www.xulonpress.com/bookstore/bookdetail.php?PB_ISBN=9781597816526

 On 5/7/2014 8:42 AM, Bill Burke wrote:
 You would have to create a new ResteasyClient each time.  We use Apache
 HttpClient under the covers, IIRC, you could only set it at socket
 creation time, not per request.  I could be wrong though.

 On 5/6/2014 12:34 PM, David R Robison wrote:
 I am using the resteasy client to communicate with a digital camera.
 Most of the commands finish in about 300ms but some take over 2s. Is
 there a way to specify the read timeout for individual calls? I know I
 can set a global SO_TIMEOUT value but can I change it with wach call I make?
 Thanks, David




 This email communication (including any attachments) may contain confidential 
 and/or privileged material intended solely for the individual or entity to 
 which it is addressed.
 If you are not the intended recipient, please delete this email immediately.


-- 
Bill Burke
JBoss, a division of Red Hat
http://bill.burkecentral.com

--
Is your legacy SCM system holding you back? Join Perforce May 7 to find out:
#149; 3 signs your SCM is hindering your productivity
#149; Requirements for releasing software faster
#149; Expert tips and advice for migrating your SCM now
http://p.sf.net/sfu/perforce
___
Resteasy-users mailing list
Resteasy-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/resteasy-users


Re: [Resteasy-users] Client read timeouts on a call-by-call basis

2014-05-07 Thread David R Robison
Thanks, if I am creating a new client each time (I'm using the 
ProxyFactory) then what is the proper way to release a proxy created by 
ProxyFactory? David

David R Robison
Open Roads Consulting, Inc.
103 Watson Road, Chesapeake, VA 23320
phone: (757) 546-3401
e-mail: drrobi...@openroadsconsulting.com
web: http://openroadsconsulting.com
blog: http://therobe.blogspot.com
book: http://www.xulonpress.com/bookstore/bookdetail.php?PB_ISBN=9781597816526

On 5/7/2014 8:42 AM, Bill Burke wrote:
 You would have to create a new ResteasyClient each time.  We use Apache
 HttpClient under the covers, IIRC, you could only set it at socket
 creation time, not per request.  I could be wrong though.

 On 5/6/2014 12:34 PM, David R Robison wrote:
 I am using the resteasy client to communicate with a digital camera.
 Most of the commands finish in about 300ms but some take over 2s. Is
 there a way to specify the read timeout for individual calls? I know I
 can set a global SO_TIMEOUT value but can I change it with wach call I make?
 Thanks, David




This email communication (including any attachments) may contain confidential 
and/or privileged material intended solely for the individual or entity to 
which it is addressed.
If you are not the intended recipient, please delete this email immediately.


--
Is your legacy SCM system holding you back? Join Perforce May 7 to find out:
#149; 3 signs your SCM is hindering your productivity
#149; Requirements for releasing software faster
#149; Expert tips and advice for migrating your SCM now
http://p.sf.net/sfu/perforce
___
Resteasy-users mailing list
Resteasy-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/resteasy-users