Hello! I am trying to send russian text from MS VC program (client) to Java (server) using axis-c and axis-j respectively. The problem is that I do not know how to correctly encode CString with cyrillic symbols into UTF8. When I do it the same way as I do it for english params
char* lastNameAnsi = new char[100]; wcstombs(lastNameAnsi, mLastName.GetString(), 100); I get: "invalid byte 2 of 2-byte utf-8 sequence axis" SAXException And as I see the stubs generated by wsdl2ws have char* (not wchar_t* or smth) for string parameters. What should I do to send unicode using axis-c? Thank you in advance! --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
