Re: issues with declaring a path in context.xml

2015-11-30 Thread Christopher Schultz
Shakila, On 11/30/15 2:07 PM, Rajaiah, Shakila wrote: > I am using Tomcat 8.0.21 with EE7.0 on windows 7.0. For one of my > projects it needs to read the style sheets from /style directory which > has been placed under /webapps directory. That's probably not where you want it, but it will

Re: Can tomcat serve MPI (parallel) applications?

2015-11-30 Thread Stefan Mayr
Am 29.11.2015 um 19:24 schrieb Martijn Slouter: Thanks for your reply, comments below: ... Any suggestion how I can accomplish the configuration, if I start tomcat with the MPI web application using "mpirun -n 2 java ..." so that only the first MPI process opens the tomcat communication ports,

Re: Detect shutdown when in common/global classpath?

2015-11-30 Thread Mark Thomas
On 30/11/2015 15:51, jimi.hulleg...@svensktnaringsliv.se wrote: > Hi, > > When running code in a webapp, I know it is possible to detect an undeploy of > the webapp, or shutdown of Tomcat, using a ServletContextListener. But how > about code running outside the webapp? > > The background for

Re: Tomcat catalina.out log is not rolling using log4j DailyRollingFileAppender

2015-11-30 Thread Joleen Barker
OMG!!! Finally. I feel like I can go back to the bosses with some progress. This is all good news. Also, thanks for the correction on the "lo and behold", I never knew that. I have to laugh at myself. I can change the catalina file name to the name catalina.log, I think you are right and it be

Re: Tomcat catalina.out log is not rolling using log4j DailyRollingFileAppender

2015-11-30 Thread Joleen Barker
Hi Chris, I will send the log4 details but I wanted to send this information first. The above details for the files remained the same all this time until I decided to login to the software and try to do some work. I had expected the files to roll at midnight each night which I did not see. But,

TC Connector IIS 1.2.40 not running on windows 2012 R2 64 bits

2015-11-30 Thread Garcia Aparici, Carlos
Good day to all. This is the first time I write to the list, although I'm subscribed for years, and I've used it many times to solve our Tomcat problems, but we didn’t need to ask directly until now. We're having problems configuring de Tomcat connector version 1.2.40 downloaded from de

Re: Hash (#) error in Parameters value

2015-11-30 Thread Ben Mazyopa
Dear Team, I am a devote user of tomcat servers, however I have met a bug when using Apache Tomcat 7.0.52, on Windows 10 64bit. Whenever I pass a parameter value of # or *214#, the parameter value ends up being null. For example when I navigate to "http://localhost:8080/myapp/demo?param=*214#;

RE: Hash (#) error in Parameters value

2015-11-30 Thread Tauzell, Dave
The # character is a special character in URLs to signify a "fragment": https://en.wikipedia.org/wiki/Fragment_identifier. If you don't want it treated as such then you do need to escape it. -Dave Dave Tauzell | Senior Software Engineer | Surescripts O: 651.855.3042 | www.surescripts.com |

Detect shutdown when in common/global classpath?

2015-11-30 Thread jimi.hullegard
Hi, When running code in a webapp, I know it is possible to detect an undeploy of the webapp, or shutdown of Tomcat, using a ServletContextListener. But how about code running outside the webapp? The background for this is that we have written a plugin to a CMS, and this plugin exists in the

Re: Tomcat catalina.out log is not rolling using log4j DailyRollingFileAppender

2015-11-30 Thread Christopher Schultz
Joleen, On 11/30/15 7:32 AM, Joleen Barker wrote: > I will send the log4 details but I wanted to send this information first. > The above details for the files remained the same all this time until I > decided to login to the software and try to do some work. I had expected > the files to roll at

issues with declaring a path in context.xml

2015-11-30 Thread Rajaiah, Shakila
Hello, I am using Tomcat 8.0.21 with EE7.0 on windows 7.0. For one of my projects it needs to read the style sheets from /style directory which has been placed under /webapps directory. In my jsp I have added: Under the tomcat 8.0/webapps directory I added the style folder. tomcat

Re: tomcat7 installs to connect to ipv6:::8080 on Ubuntu 14.04

2015-11-30 Thread Christopher Schultz
Christoph, On 11/30/15 8:20 AM, Christoph P.U. Kukulies wrote: > Am 30.11.2015 um 12:12 schrieb Mark Thomas: >> On 30/11/2015 10:51, Christoph P.U. Kukulies wrote: >>> I installed tomcat7 (apt-get) on an Ubuntu 14.04.3 LTS machine and found >>> it being installed as listening >>> to >>> >>> tcp6

Re: Hash (#) error in Parameters value

2015-11-30 Thread Christopher Schultz
Dave, On 11/30/15 10:18 AM, Tauzell, Dave wrote: > The # character is a special character in URLs to signify a > "fragment": https://en.wikipedia.org/wiki/Fragment_identifier. If > you don't want it treated as such then you do need to escape it. +1 The web browser is never going to send the #

Re: Tomcat catalina.out log is not rolling using log4j DailyRollingFileAppender

2015-11-30 Thread Christopher Schultz
Joleen, On 11/30/15 11:44 AM, Joleen Barker wrote: > OMG!!! Finally. I feel like I can go back to the bosses with some progress. > This is all good news. Also, thanks for the correction on the "lo and > behold", I never knew that. I have to laugh at myself. Sometimes, this list can be more of a

RE: issues with declaring a path in context.xml

2015-11-30 Thread Rajaiah, Shakila
Hello, I am using Tomcat 8.0.21 with EE7.0 on windows 7.0. For one of my projects it needs to read the style sheets from /style directory which has been placed under /webapps directory. I am using eclipse/STS as my IDE. In my jsp I have added this line... Under the tomcat 8.0/webapps

Re: Can tomcat serve MPI (parallel) applications?

2015-11-30 Thread john Matlock
As I said earlier, it has been a long time since I worked with MPI (1991 to be exact) so I am not quite understanding your application or the software topology. Let me ask a few more questions. It seems you say that a request for processing comes in, the task it split among many hosts using MPI,

tomcat7 installs to connect to ipv6:::8080 on Ubuntu 14.04

2015-11-30 Thread Christoph P.U. Kukulies
I installed tomcat7 (apt-get) on an Ubuntu 14.04.3 LTS machine and found it being installed as listening to tcp6 00 :::8080 :::* LISTEN How can I turn that to tcp0 0 0.0.0.0:80800.0.0.0:* LISTEN Do I have to disable ipv6 in

Re: tomcat7 installs to connect to ipv6:::8080 on Ubuntu 14.04

2015-11-30 Thread Mark Thomas
On 30/11/2015 10:51, Christoph P.U. Kukulies wrote: > I installed tomcat7 (apt-get) on an Ubuntu 14.04.3 LTS machine and found > it being installed as listening > to > > tcp6 00 :::8080 :::* LISTEN > > How can I turn that to > > tcp0 0

Re: Tomcat catalina.out log is not rolling using log4j DailyRollingFileAppender

2015-11-30 Thread Joleen Barker
Chris, Here are my log4j settings. These are the same settings that have been posted on the Tomcat web site for v6, 7, and I think 8 for users, I didn't change anything here as it seemed like it was just supposed to roll at midnight based on the DatePattern configurations. log4j.rootLogger=INFO,

Re: tomcat7 installs to connect to ipv6:::8080 on Ubuntu 14.04

2015-11-30 Thread Christoph P.U. Kukulies
Am 30.11.2015 um 12:12 schrieb Mark Thomas: On 30/11/2015 10:51, Christoph P.U. Kukulies wrote: I installed tomcat7 (apt-get) on an Ubuntu 14.04.3 LTS machine and found it being installed as listening to tcp6 00 :::8080 :::* LISTEN How can I turn that