<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app 
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" 
    "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>
    <display-name>BioMOBY Web Service: MobyServlet</display-name>
    <servlet>
      <!--  Note: servlet-name is NOT necessarily the same as your MOBY service name 
            (that is derived from the mobyService annotation on the servlet-class) -->
      <servlet-name>MobyServlet</servlet-name>
      <servlet-class>org.biomoby.service.MobyServlet</servlet-class>

    </servlet>
    <servlet-mapping>
      <servlet-name>MobyServlet</servlet-name>
      <url-pattern>/</url-pattern>
    </servlet-mapping>

    <!-- Uncomment any of the parameters below in order to override the "mobyService" Java
         annotation values of the servlet class. -->
    <!-- 
    <context-param>
      <param-name>mobyServiceName</param-name>
      <param-value>MobyServlet</param-value>
    </context-param>-->

    <!-- 
    <context-param>
      <param-name>mobyServiceDescription</param-name>
      <param-value>Null service, not intended for deployment by itself, but rather it should be extended</param-value>
    </context-param>-->

    <!-- A comma separated list of service inputs, of the form "name:objectType:namespace" with :namespace optional. -->
    <!--
    <context-param>
      <param-name>mobyInput</param-name>
      <param-value>name:Global_Keyword</param-value> 
    </context-param>-->

    <!-- A comma separated list of service outputs, of the form "name:objectType:namespace" with :namespace optional. -->
    <context-param>
      <param-name>mobyOutput</param-name>
      <param-value>name:Collection(DNASequence):NCBI_gi</param-value> 
    </context-param>-->

    <!-- A suitable entry from the service type ontology. -->
    <!--
    <context-param>
      <param-name>mobyServiceType</param-name>
      <param-value>Testing</param-value> 
    </context-param>-->

    <!-- A domain name here (i.e. identifies your institution for end-users of the service). -->
    <!--
    <context-param>
	<param-name>mobyProviderURI</param-name>
	<param-value>moby.ucalgary.ca</param-value> 
    </context-param>-->

    <!-- Your e-mail here. -->
    <!--
    <context-param>
      <param-name>mobyAuthorContact</param-name>
      <param-value>gordonp@ucalgary.ca</param-value> 
    </context-param>-->

    <!-- Use "yes", "Y" or "1" if you are the *definitive* provider of this sort of information. -->
    <!--
    <context-param>
      <param-name>mobyAuthoritative</param-name>
      <param-value>NO</param-value> 
    </context-param>-->

    <!-- To use any alternate MOBY Central, uncomment the block below. -->
    <!-- <context-param>
      <param-name>mobyCentralURL</param-name>
      <param-value></param-value> 
    </context-param> -->

</web-app>

