Open GoogleCodeExporter opened 9 years ago
Note: It only happens in requests. Responses are shown correctly.
Original comment by knex...@gmail.com
on 26 Jul 2012 at 3:10
Yes, I'm dealing with the same issue.
Did you got a solution?
Original comment by iscrober...@gmail.com
on 26 Aug 2013 at 8:53
Ok, I have a fix for this:
If the owner allows me to commit the fix, I'll do it.
If not, just compile the jar and do this changes:
in the org.jinouts.transport.HttpTransportUtil change the following line:
post.setEntity ( new StringEntity ( reqXMLString ) );
to this one:
post.setEntity ( new StringEntity ( reqXMLString, HTTP.UTF_8 ) );
You might want to add the proper import:
import org.apache.http.protocol.HTTP;
That would fix the issue.
Original comment by iscrober...@gmail.com
on 26 Aug 2013 at 11:05
Attachments:
Original issue reported on code.google.com by
knex...@gmail.com
on 26 Jul 2012 at 3:00