Tomcat Upgrade Minor Version

2015-09-24 Thread Michele Mase'
I have to upgrade tomcat from release 7.0.26 to current 7.x release (7.0.64) I have a huge custom opencms, with a lot of custom conf files. To avoid a more complex work ie: extract tar.gz re-customize config files move the webapp Could I simply replace the modified updated jars under bin and lib

Re: what's the Bootstrap? why when I stop it, and tomcat stop running too?

2015-09-24 Thread Konstantin Kolinko
2015-09-23 21:20 GMT+03:00 Mike Guo : > > Hi. all. > > I knew it should be sent to struts2 mail list, but I feel it is very strange > . and kind of related with tomcat. > > > it is a very strange issues. > > I tried to generate dynamic check code by struts2. so, I used

Re: Parallel Deployment: Can I request a specific webapp version?

2015-09-24 Thread Linus Brimstedt
Hello, Opening an old thread here regarding controlling which version of a web app a request ends up at in a parallell deployment scenario. My use case: I would like to use parallel deployments for A/B testing. I.e, deploy new version. Send x% of visitors to the new version, the rest to the old

Re: what's the Bootstrap? why when I stop it, and tomcat stop running too?

2015-09-24 Thread Christoph Nenning
> > I tried to generate dynamic check code by struts2. so, I used > > buffered image class and javax.imageio for a ByteInputstream in > > my Action. > > > > look like the function work fine. but strange thing is: every time > > when I access that dynamic check code action. system will be

Re: what's the Bootstrap? why when I stop it, and tomcat stop running too?

2015-09-24 Thread Mike Guo
Hi, Christoph. thanks for your response, finally, I got the answer for this issue. here’s the link: http://www.oracle.com/technetwork/articles/javase/headless-136834.html it explain why and how about this thing.

Re: Tomcat Upgrade Minor Version

2015-09-24 Thread Mark Thomas
On 24/09/2015 08:15, Michele Mase' wrote: > I have to upgrade tomcat from release 7.0.26 to current 7.x release (7.0.64) > I have a huge custom opencms, with a lot of custom conf files. > To avoid a more complex work ie: > extract tar.gz > re-customize config files > move the webapp > > Could I

Re: Tomcat deployment from public_html user folder of a war application is not working

2015-09-24 Thread Konstantin Kolinko
2015-09-24 15:07 GMT+03:00 Manuel Parra : > Hello I'm trying to deploy .war application from the public_html folder at > user homes. > > I've added directive to server.xml : > > directoryName="public_html" > userClass="org.apache.catalina.startup.PasswdUserDatabase"/> > > And

Re: Tomcat deployment from public_html user folder of a war application is not working

2015-09-24 Thread ManuParra
But, each user have public_html folder at home folder, so where I configure what is the war to execute in public_html ? For instance, in: http://localhost:8080/~usertest/ Where in filesystem I have: /home/usertest/public_html/app.war , what is the configuration in Tomcat for

Re: Tomcat deployment from public_html user folder of a war application is not working

2015-09-24 Thread Aurélien Terrestris
Hi, first, you should check that the Host is configured with autoDeploy="true" 2015-09-24 14:07 GMT+02:00 Manuel Parra : > Hello I'm trying to deploy .war application from the public_html folder at > user homes. > > I've added directive to server.xml : > >

Tomcat deployment from public_html user folder of a war application is not working

2015-09-24 Thread Manuel Parra
Hello I'm trying to deploy .war application from the public_html folder at user homes. I've added directive to server.xml : And I try : http://localhost:8080/~usertest/app And it return : 404 error Then I try : http://localhost:8080/~usertest/app.war It download app.war but it doesn't

Re: Tomcat deployment from public_html user folder of a war application is not working

2015-09-24 Thread Manuel Parra
Yes. This is my Configuration for the hosts in server.xml: ... Then at user's homes I have: /home/usertest/public_html/app.war But in http://localhost:8080/~usertest/ --> HTTP Status 404 - /~usertest/ Thanks in advance. On Thu, Sep 24, 2015 at 3:41 PM, Aurélien Terrestris

Re: Tomcat deployment from public_html user folder of a war application is not working

2015-09-24 Thread Manuel Parra
Well Im using localhost and myserver.com as a server from I connect (URL). May be this a problem with HOST in server.xml? Regards. On Thu, Sep 24, 2015 at 6:02 PM, Manuel Parra wrote: > Yes. > This is my Configuration for the hosts in server.xml: > > "true"> > > ... > >

Re: Tomcat deployment from public_html user folder of a war application is not working

2015-09-24 Thread Manuel Parra
Do you recommend one HOST for each user with especifically appBase ? Thanks. On Thu, Sep 24, 2015 at 6:18 PM, Manuel Parra wrote: > Well Im using localhost and myserver.com as a server from I connect (URL). > May be this a problem with HOST in server.xml? > > Regards. > >

Re: Need help understanding support for Unix Domain Sockets in Tomcat 7.0.x

2015-09-24 Thread Graham Leggett
On 23 Sep 2015, at 22:05, André Warnier (tomcat) wrote: > - you convince whoever wrote that requirement, that an internal TCP > connection within the same host, is no less secure than a Unix Domain socket +1. Regards, Graham --

Re: Which version of Tomcat supports Java 8

2015-09-24 Thread tomcat
On 25.09.2015 01:03, gloria.zh...@wellsfargo.com wrote: Hi, We are currently using Tomcat 7.0.62. Does this version officially support Java 8? If not, which version of Tomcat supports it. All you wish to know is here : http://tomcat.apache.org/whichversion.html

RE: Which version of Tomcat supports Java 8

2015-09-24 Thread Gloria.Zhang
If I understood it correctly, Tomcat 7.0.x supports Java 6, 7 and 8. Correct? Thanks, Gloria -Original Message- From: André Warnier (tomcat) [mailto:a...@ice-sa.com] Sent: Thursday, September 24, 2015 4:21 PM To: users@tomcat.apache.org Subject: Re: Which version of Tomcat supports

Re: Parallel Deployment: Can I request a specific webapp version?

2015-09-24 Thread George Sexton
On 9/24/2015 4:35 AM, Linus Brimstedt wrote: Hello, Opening an old thread here regarding controlling which version of a web app a request ends up at in a parallell deployment scenario. My use case: I would like to use parallel deployments for A/B testing. I.e, deploy new version. Send x% of

[OT] Re: Parallel Deployment: Can I request a specific webapp version?

2015-09-24 Thread tomcat
On 24.09.2015 23:59, George Sexton wrote: ... Couldn't you have your load balancer send x% to one instance, and 1-x% to the other instance? Wait, I didn't get this. Say that x = 20. So we send 20% to instance A. Then we send (1 - 20)% = -19%, to instance B. So together, instance A and

Which version of Tomcat supports Java 8

2015-09-24 Thread Gloria.Zhang
Hi, We are currently using Tomcat 7.0.62. Does this version officially support Java 8? If not, which version of Tomcat supports it. Thanks!

Re: Which version of Tomcat supports Java 8

2015-09-24 Thread James McEvoy
Yes. And a lot more functions. On Thursday, September 24, 2015, wrote: > If I understood it correctly, Tomcat 7.0.x supports Java 6, 7 and 8. > Correct? > > > Thanks, > Gloria > > > -Original Message- > From: André Warnier (tomcat) [mailto:a...@ice-sa.com

Re: Which version of Tomcat supports Java 8

2015-09-24 Thread Violeta Georgieva
On Friday, 25 September 2015, wrote: > If I understood it correctly, Tomcat 7.0.x supports Java 6, 7 and 8. > Correct? Yes Regards, Violeta > > > Thanks, > Gloria > > > -Original Message- > From: André Warnier (tomcat) [mailto:a...@ice-sa.com