RE: Webdav issue with non ASCII characters

2005-04-11 Thread Fernando Salazar de Paz
Internet Explorer uses UTF-8 to encode URLs and Tomcat tries ISO-8859-1 in decoding. The result is a wrong filename. String fileName = URLEncoder.encode(manualĂ­n.pdf, ISO-8859-1); *1 System.out.println(fileName+ produce +URLDecoder.decode(fileName, UTF-8)); fileName =

RE: Webdav issue with non ASCII characters

2005-04-11 Thread Fernando Salazar de Paz
-Mensaje original- De: Fernando Salazar de Paz [mailto:[EMAIL PROTECTED] Enviado el: lunes, 11 de abril de 2005 14:36 Para: 'Tomcat Users List' Asunto: RE: Webdav issue with non ASCII characters Internet Explorer uses UTF-8 to encode URLs and Tomcat tries ISO-8859-1

RE: Webdav issue with non ASCII characters

2005-04-11 Thread Fernando Salazar de Paz
Paz [mailto:[EMAIL PROTECTED] Enviado el: lunes, 11 de abril de 2005 16:41 Para: 'Tomcat Users List' Asunto: RE: Webdav issue with non ASCII characters Using URIEncoding parameter, at Server.xml, PUT and DELETE methods works ok. I am still having trouble with GET method. !-- Define a non-SSL

RE: Webdav issue with non ASCII characters

2005-04-11 Thread Peter Crowther
From: Fernando Salazar de Paz [mailto:[EMAIL PROTECTED] when I request a PDF file a new (second) request is made by Acrobat Reader. Acrobat Reader uses ISO-8859-1 and Tomcat will not be able to decode the uri properly. What is the reason for the second request ? The Acrobat reader IE