Getting garbled data when making http request on https port

2016-03-28 Thread Amey Rokde
Dear Community We are using the apache-tomcat-7.0.55 and have configured only one SSL connector (7070). The SSL connection (https) )works properly and i am able to fetch the request. But if we make http request we get the garbled data to be downloaded in the browser. I tried searching over the n

Re: Getting garbled data when making http request on https port

2016-03-28 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Amey, On 3/28/16 3:54 AM, Amey Rokde wrote: > Dear Community > > We are using the apache-tomcat-7.0.55 and have configured only one > SSL connector (7070). > > The SSL connection (https) )works properly and i am able to fetch > the request. But if w

Tomcat port listening as SYSTEM

2016-03-28 Thread SUSIL SAHU
Hello, I am new to tomcat using version 7.0.28. I am able to start tomcat successfully using startup.bat in windows 2008. But when tried to check the port number using netstat -ab, it is listening as SYSTEM instead of java.exe. [System] TCP0.0.0.0:8080 Lap80:0 LISTENING

Re: Tomcat port listening as SYSTEM

2016-03-28 Thread David kerber
On 3/28/2016 9:58 AM, SUSIL SAHU wrote: Hello, I am new to tomcat using version 7.0.28. I am able to start tomcat successfully using startup.bat in windows 2008. But when tried to check the port number using netstat -ab, it is listening as SYSTEM instead of java.exe. [System] TCP0.0.0.0

Re: Tomcat port listening as SYSTEM

2016-03-28 Thread SUSIL SAHU
It's working, server is starting properly as I mentioned. But I've code that check whether tomcat is running or not using below command: netstat -ab | grep -B 1 "java" | grep "8080" | grep "LISTEN" This doesn't return any value bcz it is listening as SYSTEM instead of java.exe. [System] TCP

Re: Tomcat port listening as SYSTEM

2016-03-28 Thread David kerber
On 3/28/2016 10:37 AM, SUSIL SAHU wrote: It's working, server is starting properly as I mentioned. But I've code that check whether tomcat is running or not using below command: netstat -ab | grep -B 1 "java" | grep "8080" | grep "LISTEN" This doesn't return any value bcz it is listening as SYS

RE: Tomcat port listening as SYSTEM

2016-03-28 Thread Konstantin Preißer
Hi, I think you need to look at the line below the port information, not the one above. It should show "java.exe" (or "tomcat7.exe" if running as a service). TCP0.0.0.0:8009 DESKTOP-F1DTQBM:0 LISTENING [java.exe] TCP0.0.0.0:8080 DESKTOP-F1DTQBM:0 LISTEN

Re: Tomcat port listening as SYSTEM

2016-03-28 Thread tomcat
On 28.03.2016 16:37, SUSIL SAHU wrote: netstat -ab | grep -B 1 "java" | grep "8080" | grep "LISTEN" How about netstat -ab | grep -A 1 "8080" | grep -A 1 "LISTEN" | grep -B 1 "java\.exe" - To unsubscribe, e-mail: users-unsub

Re: Getting garbled data when making http request on https port

2016-03-28 Thread Amey Rokde
Hi Christoph May be i didn't explained my question properly. What we have is a single web application running on https port 7070. This port is configured for https connection only and that the reason there is single connector. What we are seeing is if by mistake or intentionally the user types ins

Why the tomcat source code uses obsolete ant build configuration? why not maven or gradle?

2016-03-28 Thread Raja Anbazhagan
I'm new to tomcat project and I wanted to take a look at the code base to see if I can contribute in any which ways. But after going through the build process and setting up every other tools used to build ant, I'm a bit frustrated. Why didnt we migrated this project to a better build tool like ma

Tomcat 8.5.0 and 9.0.0 M4

2016-03-28 Thread Lulseged Zerfu
Hi I was trying to test HTTP/2 and tried versions 8.5.0 and 9.0.0.M4. I was not able to start these releases because I get NoClassDefFoundError. Caused by: java.lang.NoClassDefFoundError: javax/servlet/ServletContainerInitializer at java.lang.ClassLoader.findBootstrapClass(Native M

Re: Getting garbled data when making http request on https port

2016-03-28 Thread Christopher Schultz
Amey, On 3/28/16 11:25 AM, Amey Rokde wrote: > May be i didn't explained my question properly. What we have is a single > web application running on https port 7070. This port is configured for > https connection only and that the reason there is single connector. What > we are seeing is if by mis

Re: Why the tomcat source code uses obsolete ant build configuration? why not maven or gradle?

2016-03-28 Thread Christopher Schultz
Raja, On 3/28/16 11:57 AM, Raja Anbazhagan wrote: > I'm new to tomcat project and I wanted to take a look at the code base to > see if I can contribute in any which ways. But after going through the > build process and setting up every other tools used to build ant, I'm a bit > frustrated. > > Wh

Re: Why the tomcat source code uses obsolete ant build configuration? why not maven or gradle?

2016-03-28 Thread George Sexton
On 3/28/2016 9:57 AM, Raja Anbazhagan wrote: I'm new to tomcat project and I wanted to take a look at the code base to see if I can contribute in any which ways. But after going through the build process and setting up every other tools used to build ant, I'm a bit frustrated. Why didnt we mig

RE: Why the tomcat source code uses obsolete ant build configuration? why not maven or gradle?

2016-03-28 Thread Caldarale, Charles R
> From: George Sexton [mailto:geor...@mhsoftware.com] > Subject: Re: Why the tomcat source code uses obsolete ant build > configuration? why not maven or gradle? > In my opinion (and it's probably not shared by many, but I don't care), > Maven sucks. +many to that Another "solution" in search

RE: Tomcat 8.5.0 and 9.0.0 M4

2016-03-28 Thread Caldarale, Charles R
> From: Lulseged Zerfu [mailto:zlulse...@hotmail.com] > Subject: Tomcat 8.5.0 and 9.0.0 M4 > I was trying to test HTTP/2 and tried versions 8.5.0 and 9.0.0.M4. I was not > able to start these releases because I get NoClassDefFoundError. > Caused by: java.lang.NoClassDefFoundError: > Class javax

Re: Cluster session replication issue: servlet hang on restart only under load

2016-03-28 Thread Anthony Sturchio
After playing with static clustering a few more days, I still ran headlong into a wall with this. I decided to go back to multicast, and try BackupManager instead of DeltaManager, and it now seems to be restarting correctly, as long as my timeout was high enough for the 15+ second AbstractMapR

Re: Why the tomcat source code uses obsolete ant build configuration? why not maven or gradle?

2016-03-28 Thread David kerber
On 3/28/2016 2:18 PM, Caldarale, Charles R wrote: From: George Sexton [mailto:geor...@mhsoftware.com] Subject: Re: Why the tomcat source code uses obsolete ant build configuration? why not maven or gradle? In my opinion (and it's probably not shared by many, but I don't care), Maven sucks.

RE: Tomcat 8.5.0 and 9.0.0 M4

2016-03-28 Thread Lulseged Zerfu
Hi When I say in place, I mean it is in the same place as in tomcat 8.0.33 (lib). Yes I have only one under apache-tomcat-8.5.0/lib. Have anyone tried and seen same problem or is it only me that have this problem? BR lulseged.zerfu -Original Message- From: Caldarale, Charles R [mailto

Re: Why the tomcat source code uses obsolete ant build configuration? why not maven or gradle?

2016-03-28 Thread Leon Rosenberg
Hi Raja, I think this question arises on this user list every now and then. I even think there have been some effort to create a pom.xml for tomcat, but without great success (after few replies you can imagine why). Personally I totally understand you. From what I see ant is totally gone and has b

Monitoring Tomcat

2016-03-28 Thread Edwin Quijada
Hi! I have an app with Tomcat+Grails+Vaadin+PostgreSQL and I wanna monitor the speed and resources of this. I add to 1024mb to Tomcat because the app and DB is in the same server. What application can I use to monitor performance of this Tomcat ? TIA

Re: Monitoring Tomcat

2016-03-28 Thread Mark Eggers
https://tomcat.apache.org/tomcat-7.0-doc/monitoring.html https://wiki.apache.org/tomcat/FAQ/Monitoring Basically enable JMX, then use a wide variety of tools to query an even wider variety of information. Please note that there are security issues when enabling JMX. Read the first link above for

Re: Monitoring Tomcat

2016-03-28 Thread Leon Rosenberg
Of course MoSKito: http://www.moskito.org Take a look at the step by step guide (start with step 1 not 0). blog.anotheria.net/msk/the-complete-moskito-integration-guide-step-1/ regards Leon On Tue, Mar 29, 2016 at 12:23 AM, Edwin Quijada wrote: > Hi! > I have an app with Tomcat+Grails+Vaadin+P

Re: Monitoring Tomcat

2016-03-28 Thread Edwin Quijada
Thks! From: Mark Eggers Sent: Monday, March 28, 2016 10:32 PM To: Tomcat Users List Subject: Re: Monitoring Tomcat https://tomcat.apache.org/tomcat-7.0-doc/monitoring.html https://wiki.apache.org/tomcat/FAQ/Monitoring Basically enable JMX, then use a wid

Re: Monitoring Tomcat

2016-03-28 Thread Leonardo Santagostini
My two cents: You can aldo use Zabbix to Monitor your Tomcar using JMX. Also Zabbix is used from templates. So once you got one machine monitored as you expected you can easy deployit on other your machine, and the best of all, you dont nees to use apps like Jolokia. But bear in mind that there a

Re: Getting garbled data when making http request on https port

2016-03-28 Thread Amey Rokde
Christoph Fair enough that it is not a security leak . Can you throw some light on what's happening internally so as to understand why we get this garbled data to be downloaded. sorry for pushing Amey On Mon, Mar 28, 2016 at 10:00 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: >

Re: Tomcat 8 Connection Reset Issue

2016-03-28 Thread Theo Sweeny
Hi Chris, From: Christopher Schultz Sent: 24 March 2016 19:42 To: Tomcat Users List Subject: Re: Tomcat 8 Connection Reset Issue -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Theo, On 3/24/16 1:19 PM, Theo Sweeny wrote: > Hello - we are running Tomcat v