Re: JSP in Static Resources

2013-07-13 Thread Alireza Fattahi
Guys please concentrate on the main issue !! I ask again: When you set jsp servlet to process the css files by adding:     jsp     *.css The tomcat does not set the CSS file extension mime type to text/css. Although below line is set in localhost-config/web.xml         css     text

tomcat 5.5.34

2013-07-13 Thread Christopher Valerio
Hi , I have an instance of tomcat that I need to clone, for developing purpose. I change connectors port, I added a new Service with the command Tomcat5.exe //IS// and I added --Environment option to change CATALINA_BASE and CATALINA_HOME variables. I'm using windows server 2008 and isapi redi

Re: JSP in Static Resources

2013-07-13 Thread André Warnier
Terence M. Bandoian wrote: On 7/13/2013 9:29 AM, André Warnier wrote: Alireza Fattahi wrote: Hi, My situation is this: The site which i work should work in RTL and LTR modes ( I am using YAML for layout) The site.css should have this for LTR: @import url(../yaml/navigation/hlist.css); @impor

Re: ClassNotFoundException org.apache.juli.FileHandler in Tomcat 7.0.42 / OpenJDK 6 b27 (FreeBSD)

2013-07-13 Thread Mark Thomas
On 13/07/2013 20:39, Martin Gainty wrote: > Matthias You may have already realised it but it is generally best to ignore any posts by Martin Gainty. They are rarely helpful, often confusing and sometimes completely irrelevant. Mark ---

RE: ClassNotFoundException org.apache.juli.FileHandler in Tomcat 7.0.42 / OpenJDK 6 b27 (FreeBSD)

2013-07-13 Thread Martin Gainty
Matthias MG>this is what $CATALINA_HOME/conf/logging.properties is SUPPOSED to look like # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownershi

Re: JSP in Static Resources

2013-07-13 Thread Terence M. Bandoian
On 7/13/2013 9:29 AM, André Warnier wrote: > Alireza Fattahi wrote: >> Hi, >> >> My situation is this: >> The site which i work should work in RTL and LTR modes ( I am using >> YAML for layout) >> >> The site.css should have this for LTR: >> >> @import url(../yaml/navigation/hlist.css); >> @import

Re: ClassNotFoundException org.apache.juli.FileHandler in Tomcat 7.0.42 / OpenJDK 6 b27 (FreeBSD)

2013-07-13 Thread Matthias Petermann
Am 13.07.2013 16:07, schrieb Konstantin Kolinko: 2013/7/13 Konstantin Kolinko : 2013/7/13 Matthias Petermann : Hello, when I try to start Tomcat 7.0.42 with OpenJDK 6 b27, it complains about not finding classes for the logging handlers. I created a minimal logging.properties to narrow down the

Re: Moving Tomcat to work externally.

2013-07-13 Thread Terence M. Bandoian
On 7/12/2013 10:52 AM, Terence M. Bandoian wrote: > On 7/11/2013 6:46 PM, Mark Eggers wrote: >> Comments mostly inline. >> >> Lots at the end - channeling James Fenimore Cooper. >> >> On 7/11/2013 3:26 PM, Mark Eggers wrote: >>> On 7/11/2013 3:06 PM, Caldarale, Charles R wrote: > From: john Mat

Re: JSP in Static Resources

2013-07-13 Thread André Warnier
Alireza Fattahi wrote: Hi, My situation is this: The site which i work should work in RTL and LTR modes ( I am using YAML for layout) The site.css should have this for LTR: @import url(../yaml/navigation/hlist.css); @import url(../yaml/forms/gray-theme.css); @import url(../yaml/screen/typogra

Re: ClassNotFoundException org.apache.juli.FileHandler in Tomcat 7.0.42 / OpenJDK 6 b27 (FreeBSD)

2013-07-13 Thread Konstantin Kolinko
2013/7/13 Konstantin Kolinko : > 2013/7/13 Matthias Petermann : >> Hello, >> >> when I try to start Tomcat 7.0.42 with OpenJDK 6 b27, it complains about not >> finding classes for the logging handlers. I created a minimal >> logging.properties to narrow down the problem: >> >> handlers = 1catal

Re: ClassNotFoundException org.apache.juli.FileHandler in Tomcat 7.0.42 / OpenJDK 6 b27 (FreeBSD)

2013-07-13 Thread Konstantin Kolinko
2013/7/13 Matthias Petermann : > Hello, > > when I try to start Tomcat 7.0.42 with OpenJDK 6 b27, it complains about not > finding classes for the logging handlers. I created a minimal > logging.properties to narrow down the problem: > > handlers = 1catalina.org.apache.juli.FileHandler, > java.

Re: JSP in Static Resources

2013-07-13 Thread Konstantin Kolinko
2013/7/13 Alireza Fattahi : > Hi, > > > I copied below in my web.xml > > > > *.css > text/css > > > > It did not helped ?! Is it a config for tomcat 7. I am using tomcat 6. > The eclipse says that is invalid. > Yes, it is from JSP 2.2 which requires Servl

ClassNotFoundException org.apache.juli.FileHandler in Tomcat 7.0.42 / OpenJDK 6 b27 (FreeBSD)

2013-07-13 Thread Matthias Petermann
Hello, when I try to start Tomcat 7.0.42 with OpenJDK 6 b27, it complains about not finding classes for the logging handlers. I created a minimal logging.properties to narrow down the problem: handlers = 1catalina.org.apache.juli.FileHandler, java.util.logging.ConsoleHandler .handle

Re: JSP in Static Resources

2013-07-13 Thread Konstantin Kolinko
2013/7/13 Alireza Fattahi : > Hi, > > My situation is this: > The site which i work should work in RTL and LTR modes ( I am using YAML for > layout) > > The site.css should have this for LTR: > > @import url(../yaml/navigation/hlist.css); > @import url(../yaml/forms/gray-theme.css); > @import url(

Re: JSP in Static Resources

2013-07-13 Thread Alireza Fattahi
Hi, My situation is this: The site which i work should work in RTL and LTR modes ( I am using YAML for layout) The site.css should have this for LTR: @import url(../yaml/navigation/hlist.css); @import url(../yaml/forms/gray-theme.css); @import url(../yaml/screen/typography.css); @import url(../

Re: JSP in Static Resources

2013-07-13 Thread André Warnier
Alireza Fattahi wrote: Hi, I want to add some jsp code in to my site.css. Maybe it is just me, but that does not seem to make any sense. Usually, it would be the other way around. Can you explain why you want to do this ? The idea of JSP is to have Java code which in the end produces a HTML p

JSP in Static Resources

2013-07-13 Thread Alireza Fattahi
Hi, I want to add some jsp code in to my site.css. So, as this is a static resource I add below to my web.xml and ask tomcat to compile it as a jsp.         jsp     *.css     When I view the site in firefox it shows an error which says: [11:46:41.547] The stylesheet site.css was not