Re: [Resteasy-users] client for multipart/form-data

2015-01-20 Thread Tom Butt
- Original Message - From: Tom Butt tb...@redhat.com To: william fatecsjc william.fatec...@gmail.com Cc: resteasy-users@lists.sourceforge.net Sent: Friday, January 16, 2015 10:54:37 AM Subject: Re: [Resteasy-users] client for multipart/form-data So, one of the paths I was going down used

[Resteasy-users] client for multipart/form-data

2015-01-16 Thread Tom Butt
We use the ProxyFactory to create clients in resteasy and typically define interfaces as: @GET @Path(/{id}) @Produces(application/xml) ClientResponseString getDataByTitle(@PathParam(id) String id, @QueryParam(value = title) String name); or similar. I need to consume a

Re: [Resteasy-users] client for multipart/form-data

2015-01-16 Thread William Antônio Siqueira
Hello TOm, have you seems resteasy multipart test classes? https://github.com/resteasy/Resteasy/tree/RESTEASY_JAXRS_1_2_GA_CP03/providers/multipart/src/test/java/org/jboss/resteasy/test/providers/multipart I think it could help you when creating your own client -- *William Antônio Siqueira*

Re: [Resteasy-users] client for multipart/form-data

2015-01-16 Thread Tom Butt
, 2015 7:35:59 AM Subject: Re: [Resteasy-users] client for multipart/form-data Hello TOm, have you seems resteasy multipart test classes? https://github.com/resteasy/Resteasy/tree/RESTEASY_JAXRS_1_2_GA_CP03/providers/multipart/src/test/java/org/jboss/resteasy/test/providers/multipart I think