DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=19327>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=19327 Character entities are escaped to aggressively [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED ------- Additional Comments From [EMAIL PROTECTED] 2003-06-29 14:29 ------- Here's a test against http://dietrich.ganx4.com/nusoap/testbed/round2_base.wsdl....Works Fine. Closing this bug again. -- dims ============================================================================= import java.io.*; public class Main { public static void main(String[] args) throws Exception { org.soapinterop.InteropLabLocator locator = new org.soapinterop.InteropLabLocator(); String s1 = new String("\u00dc\u00cb\u00cf\u00d6O\u00e4\u00eb\u00ef\u00f6\u00fc\u00ff"); org.soapinterop.InteropTestPortType port = locator.getinteropTestPort(); PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out, "CP850")),true); out.println(s1); String s = port.echoString(s1); out.println(s); } } =============================================================================
