We have a character stored in textfield in our DB (Orcale 9i Rel. 2).The character has hex value of 93 or decimal 147 as per a hex editor.Casting to int to get the unicode gives 8220.When this data is passed in a response to webservice call,it gives the error invalid xml charcater 0x1C .ie. decimal 28(As a matter of fact ,if we cast the 8220 to byte we get value decimal 28).Encoding of response as per xml directive is UTF-8 which i think is default for WAS 5.0.2.What should we do?Is 0x93 not valid xml char.how to
remove all invalid xml chars from a string (where is the list)?
thanks in advance.