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=Øs
You could try the following code before requesting parameters:
request.setCharacterEncoding("utf-8");