Hi,
i encountered another Exception :-)

i am trying to read some feadures from a WFS:
 
URL url = new 
URL("http://blabla/furtherbla/GisService?Service=wfs&Version=1.1.0&Request=GetCapabilities&Username=me&Password?mysecret";);
       
                
Map m = new HashMap();
m.put(WFSDataStoreFactory.URL.key, url.toString());
                                        
DataStore wfs = (new WFSDataStoreFactory()).createDataStore(m);

The following exception is the result:
Exception in thread "main" java.lang.RuntimeException: Parsing failed for 
NoSRS: java.lang.NullPointerException
        at org.geotools.xml.impl.ParseExecutor.visit(ParseExecutor.java:158)
        at 
org.geotools.xml.impl.BindingWalker$BindingExecutionChain.execute(BindingWalker.java:208)
        at org.geotools.xml.impl.BindingWalker.walk(BindingWalker.java:174)
        at 
org.geotools.xml.impl.ElementHandlerImpl.endElement(ElementHandlerImpl.java:222)
        at 
org.geotools.xml.impl.ParserHandler.endElement(ParserHandler.java:585)
        at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown 
Source)
        at 
org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
        at 
org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
        at 
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown
 Source)
        at 
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown 
Source)
        at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
        at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
        at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
        at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
        at org.geotools.xml.Parser.parse(Parser.java:180)
        at org.geotools.xml.Parser.parse(Parser.java:140)
        at 
org.geotools.data.wfs.v1_1_0.WFS_1_1_0_Protocol.parseCapabilities(WFS_1_1_0_Protocol.java:497)
        at 
org.geotools.data.wfs.v1_1_0.WFS_1_1_0_Protocol.<init>(WFS_1_1_0_Protocol.java:125)
        at 
org.geotools.data.wfs.WFSDataStoreFactory.createDataStore(WFSDataStoreFactory.java:372)
        at 
de.uni_bonn.giub.evaUtils.PlansFactory.getBlockGeometries(PlansFactory.java:50)
        at de.uni_bonn.giub.evaUtils.PlansFactory.main(PlansFactory.java:86)
Caused by: java.lang.NullPointerException
        at java.lang.Class.isAssignableFrom(Native Method)
        at 
org.geotools.xml.AbstractComplexEMFBinding.parse(AbstractComplexEMFBinding.java:137)
        at 
org.geotools.wfs.bindings.FeatureTypeType_NoSRSBinding.parse(FeatureTypeType_NoSRSBinding.java:74)
        at org.geotools.xml.impl.ParseExecutor.visit(ParseExecutor.java:149)
        ... 20 more

The full getCapabilities-Response was (sorry, it is large :-/ )

<?xml version="1.0" encoding="ISO-8859-1"?>
<wfs:WFS_Capabilities xmlns:ogc="http://www.opengis.net/ogc"; 
xmlns:ows="http://www.opengis.net/ows"; xmlns:wfs="http://www.opengis.net/wfs"; 
xmlns:gml="http://www.opengis.net/gml"; 
xmlns:xlink="http://www.w3.org/1999/xlink"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://www.opengis.net/wfs 
http://123.123.123.123/map/schema/ogc/wfs/1.1.0/wfs.xsd"; version="1.1.0" 
updateSequence="0">
  <ows:ServiceIdentification>
    <ows:Title>OSIRIS</ows:Title>
    <ows:Abstract>Web Feature Server based on Smallworld GIS</ows:Abstract>
    <ows:Keywords>
      <ows:Keyword>auth</ows:Keyword>
    </ows:Keywords>

    <ows:ServiceType>WFS</ows:ServiceType>
    <ows:ServiceTypeVersion>1.1.0</ows:ServiceTypeVersion>
    <ows:AccessConstraints>none</ows:AccessConstraints>
  </ows:ServiceIdentification>
  <ows:ServiceProvider>
    <ows:ProviderName>provider</ows:ProviderName>
    <ows:ProviderSite xlink:href="www.provider.de" xlink:type="simple"/>

    <ows:ServiceContact>
      <ows:IndividualName>Max Mustermann</ows:IndividualName>
      <ows:PositionName>Nothing</ows:PositionName>
      <ows:ContactInfo>
        <ows:Phone>
          <ows:Voice>+123456789</ows:Voice>
          <ows:Facsimile>+12 3445 432</ows:Facsimile>

        </ows:Phone>
        <ows:Address>
          <ows:DeliveryPoint>Nowherestreet 11</ows:DeliveryPoint>
          <ows:City>german city</ows:City>
          <ows:PostalCode>12345</ows:PostalCode>
          <ows:Country>germany</ows:Country>
          
<ows:ElectronicMailAddress>[email protected]</ows:ElectronicMailAddress>

        </ows:Address>
        <ows:OnlineResource xlink:href="www.provider.de" xlink:type="simple"/>
      </ows:ContactInfo>
    </ows:ServiceContact>
  </ows:ServiceProvider>
  <ows:OperationsMetadata>
    <ows:Operation name="GetCapabilities">
      <ows:DCP>
        <ows:HTTP>

          <ows:Get xlink:href="http://123.123.123.123/map/GisService?"/>
          <ows:Post xlink:href="http://123.123.123.123/map/WFS"/>
        </ows:HTTP>
      </ows:DCP>
      <ows:Parameter name="AcceptVersions">
        <ows:Value>1.1.0</ows:Value>
        <ows:Value>1.0.0</ows:Value>
      </ows:Parameter>

      <ows:Parameter name="Sections">
        <ows:Value>ServiceIdentification</ows:Value>
        <ows:Value>ServiceProvider</ows:Value>
        <ows:Value>OperationsMetadata</ows:Value>
        <ows:Value>FeatureTypeList</ows:Value>
        <ows:Value>SupportsGMLObjectTypeList</ows:Value>

        <ows:Value>Filter_Capabilities</ows:Value>
      </ows:Parameter>
      <ows:Parameter name="AcceptFormats">
        <ows:Value>text/xml</ows:Value>
      </ows:Parameter>
    </ows:Operation>
    <ows:Operation name="GetFeature">
      <ows:DCP>

        <ows:HTTP>
          <ows:Get xlink:href="http://123.123.123.123/map/GisService?"/>
          <ows:Post xlink:href="http://123.123.123.123/map/WFS"/>
        </ows:HTTP>
      </ows:DCP>
      <ows:Parameter name="ResultType">
        <ows:Value>results</ows:Value>
        <ows:Value>hits</ows:Value>

      </ows:Parameter>
      <ows:Parameter name="OutputFormat">
        <ows:Value>text/xml; subtype=gml/3.1.1</ows:Value>
        <ows:Value>text/xml; subtype=gml/2.1.2</ows:Value>
      </ows:Parameter>
    </ows:Operation>
    <ows:Operation name="GetGMLObject">
      <ows:DCP>

        <ows:HTTP>
          <ows:Get xlink:href="http://123.123.123.123/map/GisService?"/>
          <ows:Post xlink:href="http://123.123.123.123/map/WFS"/>
        </ows:HTTP>
      </ows:DCP>
      <ows:Parameter name="OutputFormat">
        <ows:Value>text/xml; subtype=gml/3.1.1</ows:Value>
        <ows:Value>text/xml; subtype=gml/2.1.2</ows:Value>

      </ows:Parameter>
    </ows:Operation>
    <ows:Operation name="Transaction">
      <ows:DCP>
        <ows:HTTP>
          <ows:Get xlink:href="http://123.123.123.123/map/GisService?"/>
          <ows:Post xlink:href="http://123.123.123.123/map/WFS"/>
        </ows:HTTP>
      </ows:DCP>

      <ows:Parameter name="Idgen">
        <ows:Value>GenerateNew</ows:Value>
      </ows:Parameter>
      <ows:Parameter name="InputFormat">
        <ows:Value>text/xml; subtype=gml/3.1.1</ows:Value>
        <ows:Value>text/xml; subtype=gml/2.1.2</ows:Value>
      </ows:Parameter>

    </ows:Operation>
    <ows:Operation name="DescribeFeatureType">
      <ows:DCP>
        <ows:HTTP>
          <ows:Get xlink:href="http://123.123.123.123/map/GisService?"/>
          <ows:Post xlink:href="http://123.123.123.123/map/WFS"/>
        </ows:HTTP>
      </ows:DCP>
      <ows:Parameter name="OutputFormat">

        <ows:Value>text/xml; subtype=gml/3.1.1</ows:Value>
        <ows:Value>text/xml; subtype=gml/2.1.2</ows:Value>
      </ows:Parameter>
    </ows:Operation>
    <ows:Parameter name="srsName">
      <ows:Value>EPSG:4326</ows:Value>
      <ows:Value>EPSG:31466</ows:Value>

      <ows:Value>EPSG:31467</ows:Value>
      <ows:Value>EPSG:31468</ows:Value>
      <ows:Value>EPSG:31469</ows:Value>
    </ows:Parameter>
  </ows:OperationsMetadata>
  <wfs:FeatureTypeList>
    <wfs:Operations>

      <wfs:Operation>Query</wfs:Operation>
    </wfs:Operations>
    <wfs:FeatureType>
      <wfs:Name>relmap.gebaeude</wfs:Name>
      <wfs:Title>011 Gebäude</wfs:Title>
      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>

      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>

      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>relmap.hausnummer</wfs:Name>

      <wfs:Title>011 Hausnummer</wfs:Title>
      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>

      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>

      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>relmap.strasse</wfs:Name>
      <wfs:Title>081 Straße/Weg</wfs:Title>
      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>

      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>

      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>relmap.rasterkarte</wfs:Name>

      <wfs:Title>Hintergrund Rasterkarte</wfs:Title>
      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>

      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>

      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>relmap.district</wfs:Name>
      <wfs:Title>Stadtteil</wfs:Title>
      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>

      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>

      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>relmap.drawing_function</wfs:Name>

      <wfs:Title>Zeichenfunktion</wfs:Title>
      <wfs:NoSRS/>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>

        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>relmap.drawing</wfs:Name>
      <wfs:Title>Zeichnung</wfs:Title>

      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>

        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>

    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>relmap.drafting_areas</wfs:Name>
      <wfs:Title>Zeichnungs Flächen</wfs:Title>
      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>

      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>

        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>relmap.drafting_lines</wfs:Name>
      <wfs:Title>Zeichnungs Linien</wfs:Title>

      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>

        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>

    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>relmap.drafting_points</wfs:Name>
      <wfs:Title>Zeichnungs Punkte</wfs:Title>
      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>

      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>

        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>relmap.drafting_texts</wfs:Name>
      <wfs:Title>Zeichnungs Texte</wfs:Title>

      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>

        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>

    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>relmap.legend</wfs:Name>
      <wfs:Title>legend</wfs:Title>
      <wfs:NoSRS/>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>

        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>

    <wfs:FeatureType>
      <wfs:Name>relmap.legend_text</wfs:Name>
      <wfs:Title>legend_text</wfs:Title>
      <wfs:NoSRS/>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>

      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>gis.dimensioning</wfs:Name>

      <wfs:Title>Bemaßung</wfs:Title>
      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>

      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>

      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>gis.verschneidungs_thema</wfs:Name>
      <wfs:Title>HD Verschneidungsthema</wfs:Title>
      <wfs:NoSRS/>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>

        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>

    <wfs:FeatureType>
      <wfs:Name>gis.drawing</wfs:Name>
      <wfs:Title>Zeichnung</wfs:Title>
      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>

      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>

        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>gis.drafting_areas</wfs:Name>
      <wfs:Title>Zeichnungs Flächen</wfs:Title>

      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>

        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>

    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>gis.drafting_lines</wfs:Name>
      <wfs:Title>Zeichnungs Linien</wfs:Title>
      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>

      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>

        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>gis.drafting_points</wfs:Name>
      <wfs:Title>Zeichnungs Punkte</wfs:Title>

      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>

        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>

    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>gis.drafting_texts</wfs:Name>
      <wfs:Title>Zeichnungs Texte</wfs:Title>
      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>

      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>

        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>gis.drawing_template</wfs:Name>
      <wfs:Title>Zeichnungsvorlage</wfs:Title>

      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>

        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>

    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>plan.style</wfs:Name>
      <wfs:Title>Bedeutung</wfs:Title>
      <wfs:NoSRS/>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>

        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>

    <wfs:FeatureType>
      <wfs:Name>plan.vorhaben</wfs:Name>
      <wfs:Title>Projekt</wfs:Title>
      <wfs:NoSRS/>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>

      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>plan.planung</wfs:Name>

      <wfs:Title>Thema</wfs:Title>
      <wfs:NoSRS/>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>

        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>
    </wfs:FeatureType>
    <wfs:FeatureType>
      <wfs:Name>plan.wasserflaeche</wfs:Name>
      <wfs:Title>Wasserflächen</wfs:Title>

      <wfs:DefaultSRS>EPSG:31467</wfs:DefaultSRS>
      <wfs:OtherSRS>EPSG:4326</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31466</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31468</wfs:OtherSRS>
      <wfs:OtherSRS>EPSG:31469</wfs:OtherSRS>
      <wfs:OutputFormats>

        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>
      </wfs:OutputFormats>
      <ows:WGS84BoundingBox>
        <ows:LowerCorner>7.43580216 36.34601643</ows:LowerCorner>
        <ows:UpperCorner>3.56645514 36.35187062</ows:UpperCorner>
      </ows:WGS84BoundingBox>

    </wfs:FeatureType>
  </wfs:FeatureTypeList>
  <wfs:SupportsGMLObjectTypeList>
    <wfs:GMLObjectType>
      <wfs:Name>gml:AbstractFeatureType</wfs:Name>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>

      </wfs:OutputFormats>
    </wfs:GMLObjectType>
    <wfs:GMLObjectType>
      <wfs:Name>gml:PointType</wfs:Name>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>

      </wfs:OutputFormats>
    </wfs:GMLObjectType>
    <wfs:GMLObjectType>
      <wfs:Name>gml:LineStringType</wfs:Name>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>

      </wfs:OutputFormats>
    </wfs:GMLObjectType>
    <wfs:GMLObjectType>
      <wfs:Name>gml:PolygonType</wfs:Name>
      <wfs:OutputFormats>
        <wfs:Format>text/xml; subtype=gml/3.1.1</wfs:Format>
        <wfs:Format>text/xml; subtype=gml/2.1.2</wfs:Format>

      </wfs:OutputFormats>
    </wfs:GMLObjectType>
  </wfs:SupportsGMLObjectTypeList>
  <ogc:Filter_Capabilities>
    <ogc:Spatial_Capabilities>
      <ogc:GeometryOperands>
        <ogc:GeometryOperand>gml:Envelope</ogc:GeometryOperand>
        <ogc:GeometryOperand>gml:Point</ogc:GeometryOperand>

        <ogc:GeometryOperand>gml:LineString</ogc:GeometryOperand>
        <ogc:GeometryOperand>gml:Polygon</ogc:GeometryOperand>
      </ogc:GeometryOperands>
      <ogc:SpatialOperators>
        <ogc:SpatialOperator name="BBOX"/>
        <ogc:SpatialOperator name="Beyond"/>
        <ogc:SpatialOperator name="Contains"/>
        <ogc:SpatialOperator name="Crosses"/>

        <ogc:SpatialOperator name="DWithin"/>
        <ogc:SpatialOperator name="Disjoint"/>
        <ogc:SpatialOperator name="Equals"/>
        <ogc:SpatialOperator name="Intersects"/>
        <ogc:SpatialOperator name="Overlaps"/>
        <ogc:SpatialOperator name="Touches"/>
        <ogc:SpatialOperator name="Within"/>
      </ogc:SpatialOperators>
    </ogc:Spatial_Capabilities>

    <ogc:Scalar_Capabilities>
      <ogc:LogicalOperators/>
      <ogc:ComparisonOperators>
        <ogc:ComparisonOperator>LessThan</ogc:ComparisonOperator>
        <ogc:ComparisonOperator>GreaterThan</ogc:ComparisonOperator>
        <ogc:ComparisonOperator>LessThanEqualTo</ogc:ComparisonOperator>
        <ogc:ComparisonOperator>GreaterThanEqualTo</ogc:ComparisonOperator>

        <ogc:ComparisonOperator>EqualTo</ogc:ComparisonOperator>
        <ogc:ComparisonOperator>NotEqualTo</ogc:ComparisonOperator>
        <ogc:ComparisonOperator>Like</ogc:ComparisonOperator>
        <ogc:ComparisonOperator>Between</ogc:ComparisonOperator>
        <ogc:ComparisonOperator>NullCheck</ogc:ComparisonOperator>
      </ogc:ComparisonOperators>

      <ogc:ArithmeticOperators>
        <ogc:SimpleArithmetic/>
      </ogc:ArithmeticOperators>
    </ogc:Scalar_Capabilities>
    <ogc:Id_Capabilities>
      <ogc:EID/>
      <ogc:FID/>
    </ogc:Id_Capabilities>
  </ogc:Filter_Capabilities>

</wfs:WFS_Capabilities>

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Geotools-gt2-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-gt2-users

Reply via email to