DO NOT REPLY [Bug 47049] New: TOMCAT MANAGER appears in Spanish, tildes/accents are not resolved.

2009-04-18 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47049

   Summary: TOMCAT MANAGER appears in Spanish, tildes/accents are
not resolved.
   Product: Tomcat 6
   Version: 6.0.18
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: minor
  Priority: P2
 Component: Manager application
AssignedTo: dev@tomcat.apache.org
ReportedBy: max...@hotmail.com


Created an attachment (id=23510)
 -- (https://issues.apache.org/bugzilla/attachment.cgi?id=23510)
image of the manager

Ejecut�ndose should be Ejecutándose
Informaci�n de Servidor should be Información de Servidor

I have downloaded the file apache-tomcat-6.0.18.zip from two different
locations and the result is the same.

This was the default mirror information :

You are currently using http://ftp.udc.es/apache-dist. 

Which is a University in SPAIN.

I found some other ftp:
ftp://ftp.ntu.edu.tw/Apache/tomcat/tomcat-6/v6.0.18/bin/

Which is not in Spain and the result is the same... So I guess that my computer
configuration must be involved.
Anyways..  the issue is that the application do not manage to write the right
words when accents are involved.

Plus, I can access to any Spanish news webpage and the accents appear alright.

How can I get the Manager in English?

Thanks 

Maxi Moscardi

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: DO NOT REPLY [Bug 47049] New: TOMCAT MANAGER appears in Spanish, tildes/accents are not resolved.

2009-04-18 Thread Ian Darwin

Is there a policy on how we store localized files?

The file java/org/apache/catalina/manager/LocalStrings_es.properties
appears mostly to be ASCII characters but it has a few 16-bit unicode 
chars stuck
in it, which then get interpreted as 2 8-bit chars because there is no 
Unicode

mark at the top of the file.

For example the file contains, on line 33, the Spanish word for 
configuration as


Configuraci\u00F3n - 14 characters including a null byte

It should be

Configuración -- 13 chars, hopefully you have the fonts to see this and 
no mailer wrecks it


that is, the f3 character is in as a single byte.

I believe that Eclipse wrecks properties files in just this way if you 
make the mistake

of editing them in Eclipse, but I don't know if that's what happened here.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Tomcat Wiki] Update of TitleIndex by Sharmistha Jat

2009-04-18 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Tomcat Wiki for change 
notification.

The following page has been changed by Sharmistha Jat:
http://wiki.apache.org/tomcat/TitleIndex

--
  
  
  [[TitleIndex]]
+ ServletProxy
  

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Tomcat Wiki] Update of ServletProxy by Sharmistha Jat

2009-04-18 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Tomcat Wiki for change 
notification.

The following page has been changed by Sharmistha Jat:
http://wiki.apache.org/tomcat/ServletProxy

New page:
= Existing Servlet Proxy for J2EE engine [ like tomcat ] =

' 1) J2EP ' :   J2EP is a reverse proxy running on a J2EE 
engine. The proxy is written in java and was originally designed with Tomcat in 
mind, but any engine should work fine. A set of basic mapping rules are 
included for reverse proxing. 
A set of servers is specified to be used as mappings between the proxy 
and WebPages. The servers all need to include a rule that is used to match any 
incoming request. The rules are there to decide what server to use for each 
request. A round robin cluster of servers is made for servicing the requests.

Link: http://sourceforge.net/projects/j2ep

' 2)Noodle ' :  Noodle is a set of Java classes for 
transparently making arbitrary changes to an HTTP request and response. You can 
use Noodle to create a servlet that, on every HTTP request, runs Java 'filters' 
that you define on the request, sends the new request off to another web 
server, and streams the resulting response through another set of filters.

Link: http://noodle.tigris.org/

' 3)Http Proxy Servlet ':a simple Java servlet 
written to allow Tomcat and Apache to both appear to occupy port 80

Link: http://edwardstx.net/wiki/Wiki.jsp?page=HttpProxyServlet

__ ''' These are only some of the existing proxies. ''' __

=== References : ===

[1] J2EP documentation.

[2] http://noodle.tigris.org/, “home page – noodle”.

[3] http://edwardstx.net/wiki/Wiki.jsp?page=HttpProxyServlet, “ Http proxy 
Servlet –  main page”.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: gsoc project - Tomcat proxy [query]

2009-04-18 Thread Sharmistha jat
 Please find my wiki page about existing servlet proxy at :
http://wiki.apache.org/tomcat/ServletProxy

 I will continue to add information to this page, please suggest any
changes if required


On Thu, Apr 16, 2009 at 8:44 AM, Sharmistha jat
sharmistha.ja...@gmail.com wrote:
 Thanks for suggestion. [:)]

 On Thu, Apr 16, 2009 at 5:50 AM, Costin Manolache cos...@gmail.com wrote:
 One suggestion: I think it would be nice to consider scalability - if you
 have one tomcat frontend forwarding to 100 backends and acting as a load
 balancer - you probably can't afford one connection per thread. Many of the
 http forwarders I know use a blocking http client library - I think this
 would be the wrong approach for tomcat.

 To do non-blocking you will need to work at coyote level, and probably make
 few enhancements to register your client connection with the same framework
 - i.e. use the same Selectors or APR poll.
 You would also need to implement a non-blocking http client - you can use
 the nio/apr as starting points as well, but the code is a bit messy ( IMHO
 ). Or you could just start from scratch - use an existing non-blocking http
 client.

 I have a small experimental async http client in sandbox, if you plan to go
 non-blocking it may be worth checking it out (I'll update it to what I have
 - it's kind-of-working ). But probably using the NIO/APR connectors would be
 a better starting point.

 Costin

 On Wed, Apr 15, 2009 at 1:18 PM, jean-frederic clere 
 jfcl...@gmail.comwrote:

 Sharmistha jat wrote:

  So, now i would try to install a tomcat cluster and make a simple
 servlet proxy [reverse] for it, then add in load-balancing logic to it


 Yep thst is the idea.

 +++ CUT +++


  I have studied a number of servlet proxies like  j2ep, noodle  Http
 Proxy
 Servlet in past days.

 Could you write a wiki on that? (Somewhere in
 http://wiki.apache.org/tomcat/).


         i guess u mean writing wiki about proxy servlet
         will give my best shot to it, but would borrow 3-4 days for the
 task.


 You looked to the j2ep, noodle etc, don't you? It would be nice to describe
 a little how they work or that least their main features and the url to
 there code if applicable. Just like a note on other existing implementation.

     Ok, will write a wiki on the existing servlet proxies, their
 approach and working [thanks]

 Cheers

 Jean-Frederic


  Cheers

 Jean-Frederic

  And was puzzled about my intent of making proxy and its designing
 thereof.

 So, please guide me a little bit about this.

 Thanks
 Sharmistha


 -
 To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
 For additional commands, e-mail: dev-h...@tomcat.apache.org




 -
 To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
 For additional commands, e-mail: dev-h...@tomcat.apache.org





-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Tomcat Wiki] Update of TitleIndex by Sharmistha Jat

2009-04-18 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Tomcat Wiki for change 
notification.

The following page has been changed by Sharmistha Jat:
http://wiki.apache.org/tomcat/TitleIndex

--
  
  
  [[TitleIndex]]
- ServletProxy
  

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Tomcat Wiki] Update of ServletProxy by Sharmistha Jat

2009-04-18 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Tomcat Wiki for change 
notification.

The following page has been changed by Sharmistha Jat:
http://wiki.apache.org/tomcat/ServletProxy

--
  = Existing Servlet Proxy for J2EE engine [ like tomcat ] =
  
  ' 1)   J2EP ' :   J2EP is a reverse proxy running on a J2EE 
engine. The proxy is written in java and was originally designed with Tomcat in 
mind, but any engine should work fine. A set of basic mapping rules are 
included for reverse proxing. 
-   A set of servers is specified to be used as mappings between the proxy 
and WebPages. The servers all need to include a rule that is used to match any 
incoming request. The rules are there to decide what server to use for each 
request. A round robin cluster of servers is made for servicing the requests.
+   A set of servers is specified to be used as mappings between the proxy 
and Webpages. The servers all need to include a rule that is used to match any 
incoming request. The rules are there to decide what server to use for each 
request. A round robin cluster of servers is made for servicing the requests.
  
  Link: http://sourceforge.net/projects/j2ep
  

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org