[Resteasy-users] Proxy Client Framework - Fixed query parameter

2013-12-04 Thread Gunnar Morling
Hi, I'm using the Resteasy Proxy Framework [1] and want to invoke a service with an URL, which contains a specific query parameter with a fixed value. So I tried to do the following: public interface MyClient { @GET @Path(http://server/foo?myParam=true;) int

Re: [Resteasy-users] too much validation.xml loading?

2013-12-21 Thread Gunnar Morling
Hi, Can you give some more details about the environment and project versions you're using? Are you by any chance declaring a producer method for j.v.Validator? The Validator bean contributed by Seam Validation (which you seem to be using) is application scoped, so the validator should only be

[Resteasy-users] RestEasy client in a multi-threaded invironment

2014-01-29 Thread Gunnar Morling
Hi, I'm working with a RestEasy client (proxy) which should be accessible from several threads in parallel. From the reference guide [1] I learned that I need to configure a custom ApacheHttpClient4Engine instance so it uses a thread-safe HTTP client connection manager. This works as expected