Nov 06
I’ve written a small servlet that communicates with a Jacob Application through CommandEntry Points. Not the most elegant solution for sure but _very_ flexible.
When the servlet calls the entry point’s Url then we have everything UTF-8 encoded and additionally used URLEncoder.encode(URL).
On the jacob side the Data arrives as ISO8859-1 although everything in Jacob appears to be UTF-8. But a simple
String data1= new String(properties.getProperty("data1").getBytes("ISO8859-1"),"UTF-8");
does the job.
