Merge r1025535 TUSCANY-3734: Fix incorrect rendering of non-ASCII characters
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1027641 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8a6cedf72e
commit
d29f954909
1 changed files with 4 additions and 5 deletions
|
@ -21,7 +21,6 @@ package org.apache.tuscany.sca.binding.atom.provider;
|
|||
import static org.apache.tuscany.sca.binding.atom.provider.AtomBindingUtil.entry;
|
||||
import static org.apache.tuscany.sca.binding.atom.provider.AtomBindingUtil.feedEntry;
|
||||
|
||||
import java.io.InputStreamReader;
|
||||
import java.io.StringWriter;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
@ -106,7 +105,7 @@ class AtomBindingInvoker implements Invoker, DataExchangeSemantics {
|
|||
// Read the Atom entry
|
||||
if (status == 200) {
|
||||
Document<org.apache.abdera.model.Entry> doc =
|
||||
abderaParser.parse(new InputStreamReader(getMethod.getResponseBodyAsStream()));
|
||||
abderaParser.parse(getMethod.getResponseBodyAsStream());
|
||||
parsing = true;
|
||||
org.apache.abdera.model.Entry feedEntry = doc.getRoot();
|
||||
|
||||
|
@ -190,7 +189,7 @@ class AtomBindingInvoker implements Invoker, DataExchangeSemantics {
|
|||
|
||||
// Read the Atom entry
|
||||
if (status == 200 || status == 201) {
|
||||
Document<org.apache.abdera.model.Entry> doc = abderaParser.parse(new InputStreamReader(postMethod.getResponseBodyAsStream()));
|
||||
Document<org.apache.abdera.model.Entry> doc = abderaParser.parse(postMethod.getResponseBodyAsStream());
|
||||
parsing = true;
|
||||
org.apache.abdera.model.Entry createdEntry = doc.getRoot();
|
||||
|
||||
|
@ -361,7 +360,7 @@ class AtomBindingInvoker implements Invoker, DataExchangeSemantics {
|
|||
|
||||
// Read the Atom feed
|
||||
if (status == 200) {
|
||||
Document<Feed> doc = abderaParser.parse(new InputStreamReader(getMethod.getResponseBodyAsStream()));
|
||||
Document<Feed> doc = abderaParser.parse(getMethod.getResponseBodyAsStream());
|
||||
parsing = true;
|
||||
|
||||
Feed feed = null;
|
||||
|
@ -437,7 +436,7 @@ class AtomBindingInvoker implements Invoker, DataExchangeSemantics {
|
|||
|
||||
// Read the Atom feed
|
||||
if (status == 200) {
|
||||
Document<Feed> doc = abderaParser.parse(new InputStreamReader(getMethod.getResponseBodyAsStream()));
|
||||
Document<Feed> doc = abderaParser.parse(getMethod.getResponseBodyAsStream());
|
||||
parsing = true;
|
||||
Feed feed = doc.getRoot();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue