Java application reads mssql table data (unicode data) and forward to
servlet. This scenario works fine when I run application in Ubuntu. But performance changes for these following scenarios:
secnario1: i move java application to windows which forwards database data to servlet running in ubuntu. Output in java app shows question marks (unicode issue) but servlet shows them correctly.
Scenario2: move both java app and servlet to windows, now both modules displaying question marks.
What I think - it should not be problem with database data since
jdbc driver in linux works fine. But when I read data from windows (using same driver, later different versions of jdbc driver), though it shows ?? but servlet in linux could manage to get unicode data. What could be the problem and what should I do?
Thank you in advance.