|
What this is
Other links
The source code<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd"> <web-app id="WebApp"> <servlet id="bridge"> <servlet-name>equinoxbridgeservlet <display-name>Equinox Bridge Servlet <description>Equinox Bridge Servlet <servlet-class>org.eclipse.equinox.servletbridge.BridgeServlet <init-param> <param-name>commandline <param-value>-console </init-param> <init-param> <param-name>enableFrameworkControls <param-value>true </init-param> <!-- org.eclipse.equinox.servletbridge and the Servlet API are exported automatically to the underlying OSGi framework. The extendedFrameworkExports parameter allows the specification of additional java package exports. The format is a comma separated list of exports as specified by the "Export-Package" bundle manifest header. For example: com.mycompany.exports; version=1.0.0, com.mycompany.otherexports; version=1.0.0 --> <init-param> <param-name>extendedFrameworkExports <param-value> </init-param> <!-- You can specify your own framework launcher here. The default is: org.eclipse.equinox.servletbridge.FrameworkLauncher <init-param> <param-name>frameworkLauncherClass <param-value>org.eclipse.equinox.servletbridge.FrameworkLauncher </init-param> --> <load-on-startup>1 </servlet> <servlet-mapping> <servlet-name>equinoxbridgeservlet <url-pattern>/* </servlet-mapping> <!-- This is required if your application bundles expose JSPs. --> <servlet-mapping> <servlet-name>equinoxbridgeservlet <url-pattern>*.jsp </servlet-mapping> </web-app> |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.