Tomcat Ports

2015-11-10 Thread Tauzell, Dave
Hello, I am using Tomcat 8.0.24 as an embedded server. When I run my application I've noticed that in addition to the HTTP port I specified (7001) it is also listening on several other: 1099 - this appears to be for JMX 2000 - 4211 35810 - this changes when I restart the application I

RE: Tomcat Ports

2015-11-10 Thread Tauzell, Dave
[mailto:b...@burbong.com] Sent: Tuesday, November 10, 2015 3:58 PM To: Tomcat Users List Subject: Re: Tomcat Ports On Wed, November 11, 2015 8:21 am, Tauzell, Dave wrote: > Hello, > > I am using Tomcat 8.0.24 as an embedded server. When I run my > application I've noticed that in addition

RE: Access application without giving port number and context root

2015-11-16 Thread Tauzell, Dave
If you want to have multiple applications running on the same tomcat but each has a URL that hides this you need to use a reverse proxy server. End User > Reverse Proxy (NGINX for example ) -> App 1 http://foo.bar/

RE: Tomcat caching

2015-11-16 Thread Tauzell, Dave
If you can reproduce this problem in your development environment and you cannot track down the reason then try out the free version of App Dynamics: http://www.appdynamics.com/lite/. -Dave -Original Message- From: David E. Filip [mailto:dfi...@colornet.com] Sent: Monday, November 16,

RE: Access application without giving port number and context root

2015-11-16 Thread Tauzell, Dave
al Message----- From: Tauzell, Dave [mailto:dave.tauz...@surescripts.com] Sent: Monday, November 16, 2015 10:17 AM To: Tomcat Users List Subject: RE: Access application without giving port number and context root If you want to have multiple applications running on the same tomcat but each has a URL

RE: Tomcat Application Stops Responding

2015-11-16 Thread Tauzell, Dave
A monitoring tool like App Dynamics will give you lots of info but some quicker tests you can do with built-in tools: - Check that the CPU on your server is not at 100% - Use jstack to get a stack dump: http://docs.oracle.com/javase/7/docs/technotes/tools/share/jstack.html .I will take a

RE: Access application without giving port number and context root

2015-11-16 Thread Tauzell, Dave
...@christopherschultz.net] Sent: Monday, November 16, 2015 3:15 PM To: Tomcat Users List Subject: Re: Access application without giving port number and context root Dave, On 11/16/15 10:26 AM, Tauzell, Dave wrote: > Yes, you can use IIS as a reverse proxy. I haven't done it, but >

RE: Zero downtime deployments

2015-12-03 Thread Tauzell, Dave
If you cannot use a tool like flyway you can do it by hand, too. The key is that all database changes need to be backwards compatible. For example: So, if you want to drop a column: 1. Deploy new version of app that doesn't require column X 2. Shutdown version which does 3. drop column X If

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 |

RE: Problem with clientAuth SSL connection

2016-01-12 Thread Tauzell, Dave
You can enable jvm level TLS debug: -Djavax.net.debug=all See this site for more information: http://docs.oracle.com/javase/7/docs/technotes/guides/security/jsse/ReadDebug.html Dave Tauzell | Senior Software Engineer | Surescripts O: 651.855.3042 | www.surescripts.com |