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=15133>.
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=15133

Problems serializing german umlauts





------- Additional Comments From [EMAIL PROTECTED]  2003-06-12 13:10 -------
Just tried the echo service under samples/echo/ and was able to send and receive
a string with umlaut's....So where is the problem? 

Thanks,
dims

=============================================================================
import org.soapinterop.InteropTestSoapBindingImplServiceLocator;

public class Main {
    public static void main(String[] args) throws Exception {
        String s1 = new
String("\u00dc\u00cb\u00cf\u00d6O\u00e4\u00eb\u00ef\u00f6\u00fc\u00ff");
        System.out.println("Send[" + s1 + "]");
        InteropTestSoapBindingImplServiceLocator locator = new
InteropTestSoapBindingImplServiceLocator();
        org.soapinterop.InteropTestSoapBindingImpl impl = locator.getecho();
        String s2 = impl.echoString(s1);
        System.out.println("Receive[" + s2 + "]");
    }
}
=============================================================================

Reply via email to