hello, i'm sending a serialized xml doc via an RPC-SOAP call with a signature something like:
String sendDocument(String myXmlString); when i use one of the examples to send something i see that it automatically encodes by xml-document so it fits in the envelope. (meaning < get replaced by < etc.. ). it all seems to work so the axis server must decode it back when i get it whithout me having to do anything about it. my questions: 1) what encoding is used for a normal (java?)String parameter in RPC-SOAP ? 2) is this in the SOAP specification ? any feedback welcome. thanks, tom ps: the reason i'm asking is that one of the users of the webservice is convinced that you don't need to encode strings. but that would seem silly to because it would make the protocol non-transparent. it would break whenever someone tries to send a </envelope> string. or am i mistaken ?
