• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

SOAP XML encoding

 
Ranch Hand
Posts: 53
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does anybody know how to set the encoding of the SOAP result xml.

I have the following scenario:

I am getting an XML as a result String from a webservice which needs to have UTF-8 encoding. But the SOAP Response shows junk characters in the body(the XML String). How to resolve this issue?

I am using XFire 1.2 with Myeclipse and running it on websphere.
 
Ranch Hand
Posts: 55
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
Padmanabh Sahasrabudhe
Ranch Hand
Posts: 53
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Faraz. The issue got resolved. It was insertion of beginning of file characters in the XML which was first getting saved. I am removing those characters and now it is working. Thanks for the input.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic