Re: Zero downtime deployments

2015-12-08 Thread Kevin Hale Boyes
On 4 December 2015 at 11:19, Christopher Schultz < ch...@christopherschultz.net> wrote: > Kevin, > > On 12/3/15 2:21 PM, Kevin Hale Boyes wrote: > > Thanks for this link to the presentation. > > How do you all deal with some of the other dependencies that the web >

Re: Zero downtime deployments

2015-12-04 Thread Kevin Hale Boyes
3 which uses all the new > stuff. > > I haven't found anything better or more efficient than the 2-step > deployment with live code. > > On Thu, Dec 3, 2015 at 2:21 PM, Kevin Hale Boyes > wrote: > > Thanks for this link to the presentation. > > How do you all deal wit

Re: Zero downtime deployments

2015-12-03 Thread Kevin Hale Boyes
Thanks for this link to the presentation. How do you all deal with some of the other dependencies that the web application has? For example, if v2 of my application needs new database columns or worse, a change to an existing column how can I have v1 and v2 running at the same time? We use Oracle

Re: Tomcat 8 jspx and HTML5

2015-08-11 Thread Kevin Hale Boyes
On 8 August 2015 at 06:54, Konstantin Preißer wrote: > Hi Christopher, > > > -Original Message- > > From: Christopher Schultz [mailto:ch...@christopherschultz.net] > > Sent: Saturday, August 8, 2015 2:32 PM > > > > This is a common problem, and the reason for it is that for > > some reas

Tomcat 8 jspx and HTML5

2015-08-07 Thread Kevin Hale Boyes
I want to use a jspx to generate some HTML5 but I'm running into a strange problem. I've produced a very small test to demonstrate the problem. In the jspx pasted below if I remove the comment in the tag (in the head) then the page won't render properly in chrome browser. When I have a non-empty

Re: Choosing a Connector Protocol

2015-06-09 Thread Kevin Hale Boyes
Thanks for you help! On 9 June 2015 at 07:47, Mark Thomas wrote: > On 09/06/2015 14:38, Kevin Hale Boyes wrote: > > I'm having trouble figuring out what protocol to use for a . > > I'm using Tomcat 8 and Java 8. > > > > The production system that Tomcat

Choosing a Connector Protocol

2015-06-09 Thread Kevin Hale Boyes
I'm having trouble figuring out what protocol to use for a . I'm using Tomcat 8 and Java 8. The production system that Tomcat will be running on is Solaris 11 and I'm not yet sure if I'll be able to build the tomcat native library. So, I'm choosing between the Http11NioProtocol and Http11Nio2Proto

Re: WorkManager replacement

2015-02-13 Thread Kevin Hale Boyes
; On 2/13/15 7:29 AM, Daniel Mikusa wrote: > > On Thu, Feb 12, 2015 at 11:59 PM, Kevin Hale Boyes > > wrote: > > > >> I currently have an application running on weblogic that I'm > >> moving over to tomcat 8. One of the things the application does > >

Re: WorkManager replacement

2015-02-13 Thread Kevin Hale Boyes
Spring is starting to appear to be the best choice. Thanks for the reference. On 13 February 2015 at 08:04, Daniel Mikusa wrote: > On Fri, Feb 13, 2015 at 9:49 AM, Kevin Hale Boyes > wrote: > > > We already use Spring in the project so I'll have a look there. > > &

Re: WorkManager replacement

2015-02-13 Thread Kevin Hale Boyes
el Mikusa wrote: > >> On Thu, Feb 12, 2015 at 11:59 PM, Kevin Hale Boyes >> wrote: >> >> I currently have an application running on weblogic that I'm moving over >>> to >>> tomcat 8. >>> One of the things the application does is run backg

Re: WorkManager replacement

2015-02-13 Thread Kevin Hale Boyes
We already use Spring in the project so I'll have a look there. Thanks On 13 February 2015 at 05:29, Daniel Mikusa wrote: > On Thu, Feb 12, 2015 at 11:59 PM, Kevin Hale Boyes > wrote: > > > I currently have an application running on weblogic that I'm moving over >

WorkManager replacement

2015-02-12 Thread Kevin Hale Boyes
I currently have an application running on weblogic that I'm moving over to tomcat 8. One of the things the application does is run background jobs using the commonj WorkManager. These jobs are managed by weblogic which seems to be the recommended practice. What is the best/recommended way to run