Hi,
I have a question on sending XML as string in a Webservice. One of our providers has developed a webservice that we should use. Their webservice is basically just a transport mechanism for their own request/response messages, e.g. class MyRequest is serialized to an XML string using JAXB passed to a setRequest method in their webservice, probably because it was the easiest way for them or maybe because they wanted high transparency in their application... well I don't know.
Anyhow. Here is my question.
If I have a webservice that has character encoding ISO_8859-1 but the serialized XML has a character encoding UTF-8 (or any other encoding supporting more characters than ISO_8859-1) will these always be serialized and deserialized correctly? Or will I have to send information about the content of the string? And if so, how can I do that?
The server side of the webservice is written in .NET. How is the compability between Java and .NET? Are there encodings in .NET that isn't supported in Java or vice versa?
/ Andreas