I try something wierd. I wanted to show a URL that represent a filename on
disk. I'm on windows.
my filename is :
c:\music\10 Years - Beautiful.mp3
I used URLEncoder.encode(audioFilename, "UTF-8")
and received : c%3A%5Cmusic%5C10+Years+-+Beautiful.mp3
I wanted to call this URL :
http://localhost:8080/c%3A%5Cmusic%5C10+Years+-+Beautiful.mp3
but the servlet is never called. if I use
http://localhost:8080/c%3A it
will works.
I try with Firefox. When I enter the URL.. the result in the URL is changed
to
http://localhost:8080/c%3A\music\10+Years+-+Beautiful.mp3
but in IE.. it stay
http://localhost:8080/c%3A%5Cmusic%5C10+Years+-+Beautiful.mp3
I try with many combination for mapping.. but the result is always the same.
ServletAdapter sa = new ServletAdapter();
Servlet servlet =
(Servlet)ClassLoaderUtil.load("helloworldServlet");
sa.setContextPath("/");
sa.setServletPath("");
sa.setServletInstance(servlet);
ws.addGrizzlyAdapter(sa, new String[]{"*"});
the result expected is "hello world!"