[Resteasy-users] How can I change the charset for decoding parts in MultipartFormDataInput?

2012-06-26 Thread Adrian Rodriguez
We have an iOS application that is sending multipart/form-data requests. Two of the strings in the payload don't contain a character set so by the time it gets to my @POST method, the values are garbled up. I looked at the input part to see what was going on. The charset is set to us-ascii. Is ther

Re: [Resteasy-users] How can I change the charset for decoding parts in MultipartFormDataInput?

2012-06-26 Thread Bill Burke
Can you specify your method signature? Maybe this helps? http://docs.jboss.org/resteasy/docs/2.3.4.Final/javadocs/org/jboss/resteasy/plugins/providers/multipart/InputPart.html#DEFAULT_CONTENT_TYPE_PROPERTY On 6/26/12 3:14 PM, Adrian Rodriguez wrote: > We have an iOS application that is sending

Re: [Resteasy-users] How can I change the charset for decoding parts in MultipartFormDataInput?

2012-06-26 Thread Adrian Rodriguez
Bill, Thanks for pointing that out. I actually found it while I was digging through a bunch of the code. I finally figured out what the problem was. The default setting for that piece works great and I was able to override it. However, the garbled text actually comes up at the point where mime4