I've some issues with my Java Servlet if it's called with special chars (like Æ, Ø og Å) in the GET-parameters: http://localhost:8080/WebService/MyService?test=Øst.
I than have this code in my doGet
:
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
System.out.println(request.getParameterValues("test")[0]);
}
The messages printed in the console is: Ã?st.
The Web Service should be able to handle calls like this. How can I encode the parameter values in a proper way?