<?xml version="1.0" encoding="utf-8"?>
<Configuration xmlns="http://www.mapinfo.com/midev/service/configuration/wfs/v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  
  
<!--
  Title is a human-readable name for your WFS service. Edit the Title
  to add your WFS name.
  
  Abstract is a descriptive introduction to your WFS service. Edit
  the Abstract to describe what type of features or content your WFS
  service provides.
  
  OnlineResource is the top level HTTP URL for your WFS Service. Edit
  the OnlineResource hostname and portnumber with your services WFS top 
  level URL.
  
  MaximumFeatures sets the upper limit for the number of features
  that are allowed to be returned in a single request.  Change this
  number to increase or decrease the limit.  Remove it to allow responses
  with an unlimited number of features.

-->
  
  <Service>
    <Title>PBS Web Feature Service</Title>
    <Abstract>Web Feature Server maintained by PBS</Abstract>
    <OnlineResource>http://BETELGEUSE:8080/rest/Spatial/WFS</OnlineResource>
    <MaximumFeatures>1000</MaximumFeatures>
  </Service>
  
  
<!-- 
  The capability section of the configuration defines the capabilities of
  the WFS service. The current service supports GetCapabilities, 
  DescribeFeatureType, and GetFeature.
--> 
  
  
  <Capabilities>
    <Request>GetCapabilities</Request>
    <Request>DescribeFeatureType</Request>
    <Request>GetFeature</Request>
  </Capabilities>
  
<FeatureTypeList>
    
<!-- 
  The operations listed in this section are applied to all Feature Types. 
  If an operations section is included in any of the FeatureType sections, 
  then the operations apply only to that Feature Type. This means you can 
  restrict which operations can be applied to a specific feature type.
-->
  
    <OperationList>
      <Operation>Query</Operation>
    </OperationList>
    <Namespace>
		  <Uri>http://www.mapinfo.com/wfs</Uri>
		  <Prefix>miwfs</Prefix>
    </Namespace>    
<!-- 
  The featuretypes define the individual data that are available to the WFS
  service.
  
  Edit the Name to define the namespace qualified name for the feature.
  
  Edit the Title to define a human readable name for the feature.
  
  Edit the Abstract to define a descriptive introduction for the feature.
  
  Optionally add a list of operations for this specific feature if they
  differ from the global operations list above.
  
  Edit the LatLonBoundingBox to define the edges of an enclosing rectangle 
  in the SRS of the associated feature type.
  
  Edit the ResourcePath to point to the location of the features data in the
  repository. The Resource Path must start with a / character and is the 
  location within the repository from the root level.
-->    
    <FeatureType>
     <Name>World</Name>
      <Title>World</Title>
      <Abstract>World</Abstract>
      <LatLonBoundingBox>-182.79,-90,180,90</LatLonBoundingBox>
      <ResourcePath>/Samples/NamedTables/WorldTable</ResourcePath>
    </FeatureType>

    <FeatureType>
     <Name>WorldCap</Name>
      <Title>WorldCap</Title>
      <Abstract>WorldCap</Abstract>
      <LatLonBoundingBox>-223.82,-51.7,229.58,64.24</LatLonBoundingBox>
      <ResourcePath>/Samples/NamedTables/WorldcapTable</ResourcePath>
    </FeatureType>
	
	<FeatureType>
     <Name>USA</Name>
      <Title>USA</Title>
      <Abstract>USA</Abstract>
      <LatLonBoundingBox>-223.82,-51.7,229.58,64.24</LatLonBoundingBox>
      <ResourcePath>/Samples/NamedTables/USA</ResourcePath>
    </FeatureType>
     
    <FeatureType>
     <Name>USACap</Name>
      <Title>USA Capital</Title>
      <Abstract>USACap</Abstract>
      <LatLonBoundingBox>-223.82,-51.7,229.58,64.24</LatLonBoundingBox>
      <ResourcePath>/Samples/NamedTables/USA_CAPS</ResourcePath>
    </FeatureType>

  </FeatureTypeList>
</Configuration>