Bamboo - Stress-Free Page Layouts
Bamboo
About BambooQuickstart tutorialDownloadsGallery of page layouts built with BambooGallery of page layouts built with BambooUser ManualBamboo EditorContact
HOWTO: Uninstall the Webapp Bindings from a J2EE webapp

Introduction

This guide describes how to remove the Bamboo webapp bindings from a J2EE webapp.

Pre-Requirements

  • The webapp bindings have been installed as described in HOWTO: Install the Webapp Bindings into a J2EE webapp

Suitable For

  • Languages: J2EE
  • Site types: all (public, internal / intranet, private)

Guide

  1. Delete the following JAR's from your webapp's WEB-INF/lib directory:
    • x17_sft_curium_core_@meta.projekt.version.full.underscored@.jar
    • x17_sft_curium_webapp_bindings_@meta.projekt.version.full.underscored@.jar
  2. Also delete the following 3rd party JAR's from your webapp's WEB-INF/lib directory, unless they are required by other code in your webapp:
    • log4j-1.2.11.jar
  3. You may need to shutdown your webapp or the servlet before you can delete these JAR's. Consult the documentation for your servlet container for details.
  4. Remove the following <servlet>, and <servlet-mapping> elements from webapp's WEB-INF/web.xml file.

<servlet>
	<servlet-name>LayoutServlet</servlet-name>
	<servlet-class>com.x1seven.curium.layoutservlet.LayoutServlet</servlet-class>
</servlet>

<servlet-mapping>
	<servlet-name>LayoutServlet</servlet-name>
	<url-pattern>*.layout</url-pattern>
</servlet-mapping>

See Also

  • HOWTO: Install the Webapp Bindings into a J2EE webapp