Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/org/mitre/taxii/client/HttpClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ public Object callTaxiiService(final URI uri, final Object message, HttpClientCo
String requestStr = sw.toString();

// Put the XML string in an entiny for the Request.
StringEntity reqEntity = new StringEntity(requestStr);
StringEntity reqEntity = new StringEntity(requestStr, "UTF-8");
postRequest.setEntity(reqEntity);

// Do the request
Expand Down