1 Reply Latest reply on Feb 10, 2004 10:01 AM by thl-mot

    servlets with url that contains special-characters (tomcat 4

    thl-mot

      Hi,
      I have a problem with tomcat.
      I call a url-encoded url that contains special-characters like ä ( = %e4 ).
      The Mapping is like /servlet/test.
      If I call /application/servlet/test/K%e4lte from the browser I do not get the correct String with getPathInfo in my servlet.
      Each special character is replaced by a '?', so request.getPathInfo() gives me /K?lte instead of /Kälte.
      With Jetty I didn't have this problem.

      How can I fix that problem?