| <?xml version='1.0' encoding='UTF-8'?>
|
| <!-- Schema file written by PDE -->
|
| <schema targetNamespace="org.eclipse.help.appserver">
|
| <annotation>
|
| <appInfo>
|
| <meta.schema plugin="org.eclipse.help.appserver" id="server" name="server"/>
|
| </appInfo>
|
| <documentation>
|
| Internal extension point to plug in an application server for help and other eclipse plugins.
|
| </documentation>
|
| </annotation>
|
|
|
| <element name="extension">
|
| <complexType>
|
| <sequence>
|
| <element ref="server"/>
|
| </sequence>
|
| <attribute name="point" type="string" use="required">
|
| <annotation>
|
| <documentation>
|
|
|
| </documentation>
|
| </annotation>
|
| </attribute>
|
| <attribute name="id" type="string">
|
| <annotation>
|
| <documentation>
|
|
|
| </documentation>
|
| </annotation>
|
| </attribute>
|
| <attribute name="name" type="string">
|
| <annotation>
|
| <documentation>
|
|
|
| </documentation>
|
| <appInfo>
|
| <meta.attribute translatable="true"/>
|
| </appInfo>
|
| </annotation>
|
| </attribute>
|
| </complexType>
|
| </element>
|
|
|
| <element name="server">
|
| <complexType>
|
| <attribute name="class" type="string" use="required">
|
| <annotation>
|
| <documentation>
|
| The contributors to this extension point must implement the org.eclipse.help.appserver.internal.IWebappServer interface.
|
| </documentation>
|
| </annotation>
|
| </attribute>
|
| <attribute name="default" type="boolean" use="default" value="false">
|
| <annotation>
|
| <documentation>
|
| When set to true, this is the default application server. Normally, only the platform contributed default implementation should set this attribute to true.
|
| </documentation>
|
| </annotation>
|
| </attribute>
|
| </complexType>
|
| </element>
|
|
|
| <annotation>
|
| <appInfo>
|
| <meta.section type="examples"/>
|
| </appInfo>
|
| <documentation>
|
| The following is a sample usage of the server extension point: |
| <p> |
| <samp> |
| &lt;extension id="appserver" name="Tomcat" point="org.eclipse.help.appserver.server"&gt; |
| <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;server class="org.eclipse.tomcat.internal.TomcatAppServer" default="true" /&gt; |
| <br> &lt;/extension&gt; |
| </samp> |
| </p>
|
| </documentation>
|
| </annotation>
|
|
|
| <annotation>
|
| <appInfo>
|
| <meta.section type="apiInfo"/>
|
| </appInfo>
|
| <documentation>
|
| The supplied class must implement the |
| <tt>org.eclipse.help.internal.appserver.IWebappServer</tt> |
| interface. Methods in that interface control starting and stopping of the application server, |
| as well as starting and stopping of a web application. |
| Web applications must have direct access to classes loaded by the customized class loader passed in when starting the web application. |
| <p> |
| In addition to this, all the web applications running under the provided application server must have access to the Jasper 1 JSP Engine runtime. These libraries are currently shipped with Tomcat 4.0.x drivers (http://jakarta.apache.org). |
| </p>
|
| </documentation>
|
| </annotation>
|
|
|
| <annotation>
|
| <appInfo>
|
| <meta.section type="implementation"/>
|
| </appInfo>
|
| <documentation>
|
| The Eclipse Platform provides an implementation of this extension point using the Apache Tomcat |
| application server.
|
| </documentation>
|
| </annotation>
|
|
|
| <annotation>
|
| <appInfo>
|
| <meta.section type="copyright"/>
|
| </appInfo>
|
| <documentation>
|
| Copyright (c) 2002, 2005 IBM Corporation and others.<br>
|
| All rights reserved. This program and the accompanying materials are made
|
| available under the terms of the Eclipse Public License v1.0 which accompanies
|
| this distribution, and is available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>
|
| </documentation>
|
| </annotation>
|
|
|
| </schema>
|