opengeospatial / ets-wfs20

Executable Test Suite for WFS 2.0
Other
9 stars 11 forks source link

WFS validation on INSPIRE Validator running into OGC Team Engine Timeout #217

Closed JohannaOtt closed 2 years ago

JohannaOtt commented 2 years ago

Describe the bug When executing the WFS 2.0 test in the INSPIRE Validator, it runs into a timeout from the OGC Team Engine.

To Reproduce Go to the INSPIRE Validator and run a WFS 2.0 validation.

Expected behavior I would expect the OGC Team Engine WFS 2.0 test to be run.

Screenshots grafik

Additional context The INSPIRE Validator team asked me to open an issue here in https://github.com/INSPIRE-MIF/helpdesk-validator/issues/672

ghobona commented 2 years ago

@JohannaOtt I have just ran the Production WFS 2.0 test suite on both Reference Implementations and they completed the test run within 2 minutes. Could you please provide the URL of the service you are testing?

testruns

JohannaOtt commented 2 years ago

It was https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&REQUEST=GetCapabilities&VERSION=2.0.0 this morning.

ghobona commented 2 years ago

Using the ETS through the Eclipse IDE, I was able to verify that a test run on the specific WFS instance at haleconnect takes 46 minutes to complete. The testng results file is at:

https://portal.ogc.org/files/?artifact_id=99838

The specific WFS instance responds quickly to GetFeature requests that do not have any filters. However, GetFeature requests that have filters take about 1 minute to complete each.

Here is a small sample of some of the requests that are sent by the ETS.

https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?service=WFS&version=2.0.0&request=GetFeature&count=10&typenames=ns66:RoadLink&namespaces=xmlns(xml,http://www.w3.org/XML/1998/namespace),xmlns(ns66,http://inspire.ec.europa.eu/schemas/tn-ro/4.0),xmlns(wfs,http://www.opengis.net/wfs/2.0)&filter=%3CFilter%20xmlns%3D%22http%3A%2F%2Fwww.opengis.net%2Ffes%2F2.0%22%20xmlns%3Ans66%3D%22http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn-ro%2F4.0%22%20xmlns%3Awfs%3D%22http%3A%2F%2Fwww.opengis.net%2Fwfs%2F2.0%22%3E%3CPropertyIsEqualTo%20matchAction%3D%22Any%22%20matchCase%3D%22true%22%3E%3CLiteral%3Efalse%3C%2FLiteral%3E%3CValueReference%20xmlns%3Atns%3D%22http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Fnet%2F4.0%22%3Etns%3Afictitious%3C%2FValueReference%3E%3C%2FPropertyIsEqualTo%3E%3C%2FFilter%3E

1 minute 6 seconds

https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?service=WFS&version=2.0.0&request=GetFeature&count=10&typenames=ns74:ConditionOfFacility&namespaces=xmlns(xml,http://www.w3.org/XML/1998/namespace),xmlns(ns74,http://inspire.ec.europa.eu/schemas/tn/4.0),xmlns(wfs,http://www.opengis.net/wfs/2.0)&filter=%3CFilter%20xmlns%3D%22http%3A%2F%2Fwww.opengis.net%2Ffes%2F2.0%22%20xmlns%3Ans74%3D%22http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0%22%20xmlns%3Awfs%3D%22http%3A%2F%2Fwww.opengis.net%2Fwfs%2F2.0%22%3E%3CPropertyIsEqualTo%20matchAction%3D%22Any%22%20matchCase%3D%22true%22%3E%3CLiteral%3Ehttps%3A%2F%2Fwww.data.gv.at%2Fkatalog%2Fdataset%2F3fefc838-791d-4dde-975b-a4131a54e7c5%2FConditionOfFacility_23150030%3C%2FLiteral%3E%3CValueReference%20xmlns%3Atns%3D%22http%3A%2F%2Fwww.opengis.net%2Fgml%2F3.2%22%3Etns%3Aidentifier%3C%2FValueReference%3E%3C%2FPropertyIsEqualTo%3E%3C%2FFilter%3E

50 seconds

<?xml version="1.0" encoding="UTF-8"?><wfs:GetFeature xmlns:wfs="http://www.opengis.net/wfs/2.0" count="10" service="WFS" version="2.0.0">
<wfs:Query xmlns:ns36="http://inspire.ec.europa.eu/schemas/tn-ro/4.0" typeNames="ns36:RoadLink"><Filter xmlns="http://www.opengis.net/fes/2.0"><PropertyIsEqualTo matchAction="Any" matchCase="true"><Literal>false</Literal><ValueReference xmlns:tns="http://inspire.ec.europa.eu/schemas/net/4.0">tns:fictitious</ValueReference></PropertyIsEqualTo></Filter></wfs:Query></wfs:GetFeature>

50 seconds

<?xml version="1.0" encoding="UTF-8"?><wfs:GetFeature xmlns:wfs="http://www.opengis.net/wfs/2.0" count="10" service="WFS" version="2.0.0">
<wfs:Query xmlns:ns37="http://inspire.ec.europa.eu/schemas/tn/4.0" typeNames="ns37:ConditionOfFacility"><Filter xmlns="http://www.opengis.net/fes/2.0"><PropertyIsEqualTo matchAction="Any" matchCase="true"><Literal>https://www.data.gv.at/katalog/dataset/3fefc838-791d-4dde-975b-a4131a54e7c5/ConditionOfFacility_23150030</Literal><ValueReference xmlns:tns="http://www.opengis.net/gml/3.2">tns:identifier</ValueReference></PropertyIsEqualTo></Filter></wfs:Query></wfs:GetFeature>

40 seconds

JohannaOtt commented 2 years ago

@ghobona Thanks a lot for investigating and providing the test results. So when using the UI, the only option is to use WFS with less data in order to have faster repsonses to the GetFeature requests and therefore a faster testing run?

I still have a question concerning the result of the test: There are many errors like Severity: ERROR Message: TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. Location: line=2 column=426 (for example in the test method with signature="getFeaturesByType(org.opengis.cite.iso19142.ProtocolBinding, javax.xml.namespace.QName)[pri:0, instance:org.opengis.cite.iso19142.basic.BasicGetFeatureTests@c267ef4]")

IMHO that should not be an error as the [schema used](https://inspire.ec.europa.eu/schemas/tn-ro/4.0/RoadTransportNetwork.xsd) is importing this schema with target namespace "http://inspire.ec.europa.eu/schemas/tn/4.0". INSPIRE requires the use of the tn/4.0 elements when delivering data in the tn-ro/4.1 schema. So it is not clear to me why that is an error.

Could you please check if you really consider this being an error and if yes, why?

ghobona commented 2 years ago

@JohannaOtt If the WFS is getting the data from an RDMS, then I would recommend trying to improve the response time by creating an index on each queryable feature property.

Regarding schema validation, using the XML Validation facility in NetBeans IDE, I have just checked the ConditionOfFacility feature collection downloaded from the WFS. NetBeans also reported the same schema errors as the OGC Validator.

XML validation started.
Checking file:/Users/gobehobona/Documents/NetBeansProjects/DeleteMe/src/main/java/wfs/ConditionOfFacility.xml...
Referenced entity at "http://schemas.opengis.net/wfs/2.0/wfs.xsd".
Referenced entity at "nbres:/org/netbeans/modules/j2ee/dd/impl/resources/XMLSchema.dtd".

..several more Referenced entity lines..

Referenced entity at "http://schemas.opengis.net/filter/2.0/query.xsd".
Referenced entity at "http://schemas.opengis.net/filter/2.0/expr.xsd".
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "http://schemas.opengis.net/gml/3.2.1/gml.xsd".
Referenced entity at "http://schemas.opengis.net/gml/3.2.1/dynamicFeature.xsd".

..several more Referenced entity lines..

Referenced entity at "http://schemas.opengis.net/gml/3.2.1/dictionary.xsd".
Referenced entity at "http://schemas.opengis.net/gml/3.2.1/deprecatedTypes.xsd".
Referenced entity at "http://schemas.opengis.net/gml/3.2.1/gml.xsd".
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
TargetNamespace.1: Expecting namespace 'http://inspire.ec.europa.eu/schemas/tn/4.0', but the target namespace of the schema document is 'http://inspire.ec.europa.eu/schemas/tn-ro/4.0'. [2] https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)
Referenced entity at "https://haleconnect.com/ows/services/org.789.ffa9f2a0-54d8-4f18-961c-196230496a0a_wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=DescribeFeatureType&OUTPUTFORMAT=application%2Fgml%2Bxml%3B+version%3D3.2&TYPENAME=tn:ConditionOfFacility&NAMESPACES=xmlns(tn,http%3A%2F%2Finspire.ec.europa.eu%2Fschemas%2Ftn%2F4.0)".
Too many errors, stopping further checking.
XML validation finished.
ghobona commented 2 years ago

NetBeans's XML Validation by Schema button is shown on the attached screenshot.

Screenshot 2021-12-16 at 16 58 03

JohannaOtt commented 2 years ago

@ghobona Thank you for the assessment. I will clarify with our network service experts if and how we address that issue of the second namespace not being taken into consideration as expected.

ghobona commented 2 years ago

Since the problem appears to be with the WFS instance, this GitHub issue will be closed on 2022-01-12.