in order to 'feed' a .NET web service from java I do pass xml strings via a direct socket connection over to the server.
Everything works wunderbar as long as I don't include any 'wierd' characters in my xml strings. Ä or ß for examples sake.
I scripted around and figured that in php5 the problem is solved by
utf8_encode(myXmlString). Sadly
retString = new String (retString.getBytes(),"UTF-8");
does not work out.
Any hints would be appreciated.
thx in advance
A