The idea is to have at least a day of Tomcat in the mean ApacheConNA10 track Additionally we will run BOFs or Meetups on one evening.

So something like (from the old http://wiki.apache.org/tomcat/TomcatTrackUs09_PMC_Sessions)

Summary of the whole Tomcat track:

  • 1 - Have an introduction.
  • 2 - Have more details presentation on the new tech (Tomcat7, Servlet 3.0)
  • 3 - Have a remainder of the existing new stuff (Bayeux, Comet, jdbc-pool, tomcat-lite).
  • 4 - Have well known stuff, like admin/conf stuff, mod_jk/mod_proxy and clustering.
  • 5 - A bunch of more technical presentations.

Detailed session presentations:

Look to http://wiki.apache.org/tomcat/TomcatTrackUs09_PMC_Sessions to see how to write a proposal.

Something like:

TITLE

ABSTRACT

PRESENTER BIO. (Don't forget your email so that you can be contacted later).

mod_jk / mod_proxy and others: Front-ends of Tomcat Clusters.

By Jean-Frederic Clere:

  • Tomcat is often used as a cluster and/or is the back-end server of a front-end reserve proxy. Several front-end can be used, mod_jk, mod_proxy, mod_serf, Traffic Server and mod_cluster, quick presentation of each of them, featuring: loadbalancing, failover, QoS, performances etc.
  • Jean-Frederic has spent more than 20 years writing client/server software. He is committer in APR, Jakarta, Httpd and Tomcat and he likes complex projects where different languages and machines are involved. Born in France, Jean-Frederic lived in Barcelona (Spain) for 14 years. Since May 2006 he lives in Neuchatel (Switzerland) where he works for RedHat in the JBoss division.

New memory leak prevention and detection features in Tomcat 7

By Mark Thomas:

  • It is all too easy to trigger a memory leak within a web application, particularly in PermGen when the application is reloaded. These leaks are often the unintended and unexpected consequences of using a library or even parts of the standard Java APIs. This session will explore the various ways these leaks can be triggered, how to diagnose them when they occur and the techniques that can be used to avoid them. The session will be based around the successful memory leak prevention code recently added to Apache Tomcat codebase although the causes, process of diagnosis and the remedies are widely applicable to any J2EE application server or, in fact, any other environment that provides a 'reload' mechanism that uses multiple class loaders.
  • Mark has been using and developing Tomcat for over six years. He first got involved in the development of Tomcat when he needed better control over the SSL configuration than was available at the time. After fixing that first bug, he started working his way through the remaining Tomcat bugs and is still going. Along the way Mark has become a Tomcat committer and PMC member, volunteered to be the Tomcat 4 & 7 release manager, created the Tomcat security pages, become a member of the ASF and joined the Apache Security Committee. He also helps maintain the ASF's Bugzilla instances. Mark has a MEng in Electronic and Electrical Engineering from the University of Birmingham, UK and is currently a Senior Software Engineer with the SpringSource Division of VMWare.

Becoming a Tomcat 7 super user

By Mark Thomas:

  • Have you ever wanted to to do more than just download Tomcat and install some web applications? Do you want to learn more about Tomcat internals and how everything fits together? Do you want to be able to apply patches for bugs to your Tomcat installation without having to wait for the next release? If you answered yes to any of the above questions then this presentation is for you. Starting with how the Tomcat subversion repository is structured, this presentation will show you how to build each of the major Tomcat versions from source, how to use your local build to generate binary patches for specific bugs and how to extend Tomcat functionality for your environment. After an overview of the Tomcat request processing architecture, a request will be examined as it passes through Tomcat using remote debugging. Key classes and decision points will be highlighted to provide attendees with potential starting points when debugging their own issues. To finish the presentation, and to give a practical example of how the knowledge gained may be put to use, a current bug will be examined, the root cause identified and a patch to fix it generated.

Quickstart guide to embedding Tomcat 7

By Mark Thomas:

  • Tomcat has always been embeddable but with Tomcat 7 it has been much simpler. This presentation will show you how you can embed Tomcat in your application in just five - may need to edit this figure (smile) - lines of code. The remainder of the presentation will demonstrate how this embedded instance can be configured and will cover standard web.xml configuration, how to modify settings normally configured in server.xml and integrating with custom components such as a custom Realm.

Securing and managing your Tomcat installations

By Mladen Turk:

  • Using Apache Tomcat as production application server requires some basic knowledge of using multi-tier application servers to host business logic and data access services. This talk addresses each component and technology separately and shows you how to secure your application server in each case. It focuses on security measures that needs to be considered when securing the associated communication channels that connect Web server to the application server and the application server to the database server. It also gives a glimpse overview on the threats and countermeasures needed to secure the Tomcat in production environments.
  • Mladen Turk is a Principal Software Engineer at JBoss, a division of Red Hat (Switzerland), where he is responsible for Native Integration, Enterprise Web Services and Multiplatform technologies. He is member of JBoss Application Server team and gives more then 20 years of experience in client/server technologies. Mladen is currently acting as Apache Tomcat PMC chair, and beside Tomcat, he actively contributes to APR, Httpd, TrafficServer and Commons projects.

Running Tomcat Stand-alone on Port 80

By Jason Brittain [jason d0t brittain a+ gmail do+ com]:

  • On non-Windows operating systems, Tomcat can only answer web requests on port 80 or port 443 when Tomcat is integrated with a solution that allows receiving requests on these default privileged port numbers. Because using the default port numbers is preferable or even required for many reasons, Tomcat administrators must research the solutions and choose a way to configure it to work on their servers.
  • There are a number of solutions for making Tomcat answer port 80 requests. We'll list the popular solutions, discuss the pros and cons of each solution, and discuss which solutions are usually preferable, and for which reasons.
  • Jason is a co-author of Tomcat: The Definitive Guide, now in its second edition, and has been using Tomcat and contributing to the Apache Tomcat project for over ten years. As a Debian Java committer, Jason works on the Debian and Ubuntu Tomcat 6 package. Jason is a Software Architect at MuleSoft, working on the Tcat Server product.

Introduction to Apache Tomcat 7

By Tim Funk:

  • Apache Tomcat 7 is the latest version of Tomcat products. In this talk, we will overview the new features in Tomcat 7. We will highlight Servlet 3.0 features and how they apply to Tomcat, deprecations which are now gone versus Tomcat 6, and mention features still in common with Tomcat 6.
  • Tim Funk has been a Tomcat user for over 7 years and committer since 2003. Tim currently resides in Pennsylvania and works for Armstrong World Industries performing a range of roles, enjoying the role of developer the most. Tim has a Masters of Software Engineering from Penn State.

Tomcat 7 - Implementing a Servlet Container

By Damodar Chetty:

  • The servlet specification forms the requirements document that a servlet container, such as Tomcat, actually implements. To truly appreciate what a servlet container does, it is therefore critically important to first start with the servlet specification.
  • In this session we'll take a long hard look both at the specification as well as at how Tomcat stays true to it.
  • We will consider the conceptual underpinnings and implementations of aspects such as deployment descriptors, the servlet life cycle, session management, listeners, and filters.
  • Damodar Chetty is the author of the recently published, Tomcat 6 Developer's Guide, and is a veteran software engineer with over two decades in the field. He has graduate degrees from the University of Minnesota (Computer Engineering) and the University of Goa (MBA), and an undergraduate degree in electrical engineering form the University of Bombay.

Tomcat Vital Component Deep Dive

By Damodar Chetty:

  • In this session we'll take an up close and personal look at the most vital components that comprise Tomcat– the connector subsystem, virtual host, the context, the wrapper, and the session manager.
  • We will explore the implementation of the JIO and NIO connectors, look at alternative virtual hosting techniques and its context deployment responsibilities, delve into protocol handlers and the class loading mechanics associated with web application contexts, get familiar with request dispatching and the filter decoration aspects of wrappers, and immerse ourselves in the intricacies of state management with sessions.
  • Damodar Chetty is the author of the recently published, Tomcat 6 Developer's Guide, and is a veteran software engineer with over two decades in the field. He has graduate degrees from the University of Minnesota (Computer Engineering) and the University of Goa (MBA), and an undergraduate degree in electrical engineering form the University of Bombay.
  • No labels