Hi All,
First of all let me clear your doubt when i am installing java component on linux machine its working fine but its not working Window xp(SP-2).Hebrew and russian languages and fonts are installed on my XP system.
Even i tried "Daniel Chemko" code but its not working.
have a look on this java code this will help you understanding the problem
OutputStream os = getResponseStream();
String outbytesStr = null;
if(os != null)
{
try
{
try {
byte [] resStr = os.toString().getBytes("UTF-8");
outbytesStr = new String(resStr,"UTF-8");
} catch (Exception e) {
e.printStackTrace();
}
response = outbytesStr;
this response is of string type and i am sending response as xml to C#
application .
One thing more my C# ,Java component and Oracle 10g are interacting through
SOAP calls.
Hope this time am able to expalin my problem.
Looking forward for your reply..