you may want to try InputStreamReader/ByteInputStream to read the incoming xml, and there you have the possibility to specify the encoding
I guess the default encoding in websphere is not UTF-8 and that is why you see all those junk characters.
try reading the message as bytes and then convert it to required encoding
also when using System.out.println(), do not forget to specify the encoding