On 5/5/2004 8:31 PM, Edson Alves Pereira wrote:
Take care with URL encoding, you must convert your values based on
correct URL encoding, for example: space is %20, � is %FC, it�s just hex
based numbers.
This page can show you more information about it:
http://www.blooberry.com/indexdot/html/topics/urlencoding.htm
----------
De: alex[SMTP:[EMAIL PROTECTED]
Responder: Tomcat Users List
Enviada: quarta-feira, 5 de maio de 2004 5:35
Para: [EMAIL PROTECTED]
Assunto: links encoding issue
Hi, guys.
the problem that freaks me out.
I got a couple of thousand xml files that are processed by cocoon, firstly
receiving requests by tomcat 5.0.18.
Some of them (files) contain german specific symbols that are out of
standard encoding (I mean out of [a-zA-Z]).
And whatever I tried to get tomcat catch the file name it doesn't work.
for example this one doesn't work:
<a href="de.v.f_hren.1.xml">de.v.f_hren.1.xml</a>
and there's this line at the beginning too:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
gentoo linux, I assume tomcat uses utf-8.
Is there a specific option for that thing, or tomcat uses JRE settings?
Anyway, does someone got on with a problem like this one?
I can't rename the file names as that's a part of a project that I'm not
the one who can do such modifications.
any issues would be appreciated.
best regards,
alex.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
I guess you can use
<c:url value="yourlink.jsp" var="varUrl">
<c:param name="anyparam" value="anyparamvalue"/>
</c:url>
<a href="${varUrl}" >your link name</a>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]