On 14 Feb 2008, at 10:42, Thomas Pawlitzki wrote:

When i now call the service method of the stub to send the message to
the webservice the httpclient logs the follwowing:

...
<ns1:Vereinigung>
 <ns1:NatuerlichePerson>
   <ns1:Nachname>Duck[0xd6]</ns1:Nachname>
   <ns1:Vorname>Daisy</ns1:Vorname>
....

Here you can see that the httpclient encodes the Ö into [0xd6].

HttpClient *logs* it like that. Indeed, all characters outside of the range 32..127 are transformed like that. You can see this from the code here:

http://svn.apache.org/viewvc/httpcomponents/oac.hc3x/trunk/src/java/org/apache/commons/httpclient/Wire.java?view=markup

However, that doesn't mean that HttpClient *sends* the message like that.

Andreas


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to