Re: Need information

2018-07-24 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Francesco, On 7/24/18 12:39 PM, Francesco Viscomi wrote: > Ok thanks, i need to know for Tomcat 7 You want "context aliases": https://tomcat.apache.org/tomcat-7.0-doc/config/context.html#Standard_Im plementation Search for the "aliases" attribute

Re: Need information

2018-07-24 Thread Francesco Viscomi
Ok thanks, i need to know for Tomcat 7 And Tomcat 8.5 Thanks Il mar 24 lug 2018, 18:20 Christopher Schultz ha scritto: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Francesco, > > On 7/24/18 2:26 AM, Francesco Viscomi wrote: > > Ok thanks, anyway is there a way to add a resource to the

Re: Need information

2018-07-24 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Francesco, On 7/24/18 2:26 AM, Francesco Viscomi wrote: > Ok thanks, anyway is there a way to add a resource to the tomcat > classpath, i know that it is possibile because in my previous job i > 've used that :) Yes, this is possible, but the answe

Re: Need information

2018-07-23 Thread Francesco Viscomi
Ok thanks, anyway is there a way to add a resource to the tomcat classpath, i know that it is possibile because in my previous job i 've used that :) Il mar 24 lug 2018, 00:00 M. Manna ha scritto: > This is not relevant to tomcat. you have to read how to configure spring > application environmen

Re: Need information

2018-07-23 Thread M. Manna
This is not relevant to tomcat. you have to read how to configure spring application environment variables and classpath. Below are some examples, which you can read and configure yourself. https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html https://do

Re: Need information

2018-07-23 Thread Francesco Viscomi
Hi Christopher, indeed i need to have that file externaly from the war; I will not forget to modify catalina.properties, because this operation will be done only one time. So i need to adding tha resource in the classpath of tomcat. 2018-07-23 23:33 GMT+02:00 Christopher Schultz : > -BEGIN PG

Re: Need information

2018-07-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Francesco, On 7/23/18 4:58 PM, Francesco Viscomi wrote: > Because I need to add a folder (properties) under the tomcat > installation in order to read the properties in a file with the > following annotation (using spring) > @PropertySource("clas

Re: Need information

2018-07-23 Thread Francesco Viscomi
Because I need to add a folder (properties) under the tomcat installation in order to read the properties in a file with the following annotation (using spring) @PropertySource("classpath:properties/application.properties"); 2018-07-23 22:21 GMT+02:00 M. Manna : > You should never modify them

Re: Need information

2018-07-23 Thread M. Manna
You should never modify them, unless you know precisely what you're doing it, and why. What ia your reason to modify them? What would you like to do? On Mon, 23 Jul 2018, 20:30 Francesco Viscomi, wrote: > Sir Manna you're right, but at the moment I cannot go through debug; > So if there is an e

Re: Need information

2018-07-23 Thread Francesco Viscomi
Sir Manna you're right, but at the moment I cannot go through debug; So if there is an explanation and why i should modify them, it will be very important to me. thanks 2018-07-23 18:06 GMT+02:00 M. Manna : > http://tomcat.apache.org/tomcat-8.5-doc/class-loader- > howto.html#Class_Loader_Definit

Re: Need information

2018-07-23 Thread M. Manna
http://tomcat.apache.org/tomcat-8.5-doc/class-loader-howto.html#Class_Loader_Definitions Also, you should try and pay attention to Bootstrap.java file and debug through the execution to understand how it's working. On 23 July 2018 at 17:03, Francesco Viscomi wrote: > hi all > In catalina.prope

Need information

2018-07-23 Thread Francesco Viscomi
hi all In catalina.properties i find : common.loaders serverr.loaders shared.loaders And i wasn t able to find out the meaning of that variables, some one can tell to me and if possibile also a link to the documentation in wich these variable are treated Thanks

RE: need information of tomcat support

2014-10-28 Thread Hareshbhai Desai,Vinaykumar (Vinaykumar)
Thanks Marks for quick response with requested information. Regards, Vinay -Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: Tuesday, October 28, 2014 8:22 PM To: Tomcat Users List Subject: Re: need information of tomcat support On 28/10/2014 13:00, Hareshbhai Desai

Re: need information of tomcat support

2014-10-28 Thread Mark Thomas
On 28/10/2014 13:00, Hareshbhai Desai,Vinaykumar (Vinaykumar) wrote: > Hi team, > > I need some information about the tomcat support. We are using tomcat > 3.2.2 and tomcat 6.0.37 in our product. 3.2.2 is 11+ years old. 6.0.37 is ~18 months old. > If we are not upgrade the tomcat latest version

Re: need information of tomcat support

2014-10-28 Thread Leo Donahue
On Tue, Oct 28, 2014 at 8:00 AM, Hareshbhai Desai,Vinaykumar (Vinaykumar) < desa...@avaya.com> wrote: > Hi team, > > I need some information about the tomcat support. We are using tomcat > 3.2.2 and tomcat 6.0.37 in our product. If we are not upgrade the tomcat > latest version then shall we get t

need information of tomcat support

2014-10-28 Thread Hareshbhai Desai,Vinaykumar (Vinaykumar)
Hi team, I need some information about the tomcat support. We are using tomcat 3.2.2 and tomcat 6.0.37 in our product. If we are not upgrade the tomcat latest version then shall we get the support from apache for both tomcat release 3.3.2 /6.0.37? If yes is it free or paid support? How quickly

Re: Need Information regarding Apache Webserver static file configuration

2013-12-09 Thread André Warnier
Tapajyoti Roybarman wrote: Hi Andre, Finally it worked!!! Thanks a ton. Below is the setting that I used. ProxyPassMatch ^/.*\.(gif|jpg|css|png)$! http://localhost:8080/ ProxyPassMatch ^/(.*/servlet/.*)$ http://localhost:8080/$1 ProxyPassMatch ^/(.*\.jsp)$ http://localhost:8080

Re: Need Information regarding Apache Webserver static file configuration

2013-12-09 Thread Tapajyoti Roybarman
Hi Andre, Finally it worked!!! Thanks a ton. Below is the setting that I used. ProxyPassMatch ^/.*\.(gif|jpg|css|png)$! http://localhost:8080/ ProxyPassMatch ^/(.*/servlet/.*)$ http://localhost:8080/$1 ProxyPassMatch ^/(.*\.jsp)$ http://localhost:8080/$1 Now, One final question.

Re: Need Information regarding Apache Webserver static file configuration

2013-12-06 Thread Tapajyoti Roybarman
Hi Andre, Finally it worked!!! Thanks a ton. Below is the setting that I used. ProxyPassMatch ^/.*\.(gif|jpg|css|png)$! http://localhost:8080/ ProxyPassMatch ^/(.*/servlet/.*)$ http://localhost:8080/$1 ProxyPassMatch ^/(.*\.jsp)$ http://localhost:8080/$1 Now, One final question.

Re: Need Information regarding Apache Webserver static file configuration

2013-12-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 David, On 12/5/13, 1:33 PM, David kerber wrote: > On 12/5/2013 5:37 AM, Tapajyoti Roybarman wrote: >> Hi Andre, >> >> I apologize for not following the mailing rule. Actually this is >> the first time that I am taking the help of such a forum. >>

Re: Need Information regarding Apache Webserver static file configuration

2013-12-05 Thread David kerber
On 12/5/2013 5:37 AM, Tapajyoti Roybarman wrote: Hi Andre, I apologize for not following the mailing rule. Actually this is the first time that I am taking the help of such a forum. Before I begin asking you anything I want to thank you for such a detailed explanation. To begin with, answer to

Re: Need Information regarding Apache Webserver static file configuration

2013-12-05 Thread André Warnier
Tapajyoti Roybarman wrote: Hi Andre, I apologize for not following the mailing rule. Actually this is the first time that I am taking the help of such a forum. Before I begin asking you anything I want to thank you for such a detailed explanation. To begin with, answer to your question - "

Re: Need Information regarding Apache Webserver static file configuration

2013-12-05 Thread Tapajyoti Roybarman
Hi Andre, I apologize for not following the mailing rule. Actually this is the first time that I am taking the help of such a forum. Before I begin asking you anything I want to thank you for such a detailed explanation. To begin with, answer to your question - "why do you want to serve these

Re: [OT] Need Information regarding Apache Webserver static file configuration

2013-12-04 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 André, On 12/4/13, 8:14 AM, André Warnier wrote: > It reminds me a bit of the story about a sculptor, who was aked how > he sculpted a horse from a big block of stone. He answered that it > was very easy : you just remove from the stone everything

Re: Need Information regarding Apache Webserver static file configuration

2013-12-04 Thread André Warnier
Hi. First, respond only to the list, do not copy people extra. I get every message to the list anyway, and if you copy me I get an extra copy which I do not need. Second, on this list, it is preferred to send responses in the text of the original message, not on top. See : http://tomcat.apach

Re: Need Information regarding Apache Webserver static file configuration

2013-12-04 Thread Daniel Mikusa
Consulting > ____ > > > > From: > André Warnier > To: > Tomcat Users List > Date: > 12/04/2013 06:45 PM > Subject: > Re: Need Information regarding Apache Webserver static file configuration > > > > Tapaj

Re: Need Information regarding Apache Webserver static file configuration

2013-12-04 Thread Tapajyoti Roybarman
Experience certainty. IT Services Business Solutions Consulting From: André Warnier To: Tomcat Users List Date: 12/04/2013 06:45 PM Subject: Re: Need Information

Re: Need Information regarding Apache Webserver static file configuration

2013-12-04 Thread André Warnier
Tapajyoti Roybarman wrote: Hi, Could you please let me know that how can I serve static content like image files, css files through Apache Webserver instead of Tomcat? That is the normal thing that an Apache httpd webserver does. Please let me know about all the required configurations in

Need Information regarding Apache Webserver static file configuration

2013-12-04 Thread Tapajyoti Roybarman
Hi, Could you please let me know that how can I serve static content like image files, css files through Apache Webserver instead of Tomcat? Please let me know about all the required configurations in detail. I am connecting Apache webserver and Tomcat using mod_proxy_http module. Also, please