Search in sources :

Example 1 with WFSCapabilitiesType

use of ogc.schema.opengis.wfs_capabilities.v_1_0_0.WFSCapabilitiesType in project ddf by codice.

the class WfsSource method getCapabilities.

private WFSCapabilitiesType getCapabilities() throws SecurityServiceException {
    WFSCapabilitiesType capabilities = null;
    Wfs wfs = factory.getClient();
    try {
        capabilities = wfs.getCapabilities(new GetCapabilitiesRequest());
    } catch (WfsException wfse) {
        LOGGER.info(WFS_ERROR_MESSAGE + " Received HTTP code '{}' from server for source with id='{}'", wfse.getHttpStatus(), getId());
        LOGGER.debug(WFS_ERROR_MESSAGE, wfse);
    } catch (WebApplicationException wae) {
        LOGGER.debug(handleWebApplicationException(wae), wae);
    } catch (Exception e) {
        handleClientException(e);
    }
    return capabilities;
}
Also used : WFSCapabilitiesType(ogc.schema.opengis.wfs_capabilities.v_1_0_0.WFSCapabilitiesType) GetCapabilitiesRequest(org.codice.ddf.spatial.ogc.wfs.v1_0_0.catalog.common.GetCapabilitiesRequest) WebApplicationException(javax.ws.rs.WebApplicationException) Wfs(org.codice.ddf.spatial.ogc.wfs.v1_0_0.catalog.common.Wfs) WfsException(org.codice.ddf.spatial.ogc.wfs.catalog.common.WfsException) UnsupportedQueryException(ddf.catalog.source.UnsupportedQueryException) WfsException(org.codice.ddf.spatial.ogc.wfs.catalog.common.WfsException) InvalidSyntaxException(org.osgi.framework.InvalidSyntaxException) SSLHandshakeException(javax.net.ssl.SSLHandshakeException) JAXBException(javax.xml.bind.JAXBException) ResourceNotFoundException(ddf.catalog.resource.ResourceNotFoundException) CatalogTransformerException(ddf.catalog.transform.CatalogTransformerException) WebApplicationException(javax.ws.rs.WebApplicationException) SecurityServiceException(ddf.security.service.SecurityServiceException) ConnectException(java.net.ConnectException) IOException(java.io.IOException) ResourceNotSupportedException(ddf.catalog.resource.ResourceNotSupportedException)

Example 2 with WFSCapabilitiesType

use of ogc.schema.opengis.wfs_capabilities.v_1_0_0.WFSCapabilitiesType in project ddf by codice.

the class WfsSource method configureWfsFeatures.

private void configureWfsFeatures() throws SecurityServiceException {
    WFSCapabilitiesType capabilities = getCapabilities();
    if (capabilities != null) {
        wfsVersion = capabilities.getVersion();
        List<FeatureTypeType> featureTypes = getFeatureTypes(capabilities);
        List<String> supportedGeo = getSupportedGeo(capabilities);
        buildFeatureFilters(featureTypes, supportedGeo);
    } else {
        LOGGER.info("WfsSource {}: WFS Server did not return any capabilities.", getId());
    }
}
Also used : WFSCapabilitiesType(ogc.schema.opengis.wfs_capabilities.v_1_0_0.WFSCapabilitiesType) FeatureTypeType(ogc.schema.opengis.wfs_capabilities.v_1_0_0.FeatureTypeType)

Example 3 with WFSCapabilitiesType

use of ogc.schema.opengis.wfs_capabilities.v_1_0_0.WFSCapabilitiesType in project ddf by codice.

the class WfsSource method getCapabilities.

private WFSCapabilitiesType getCapabilities() {
    WFSCapabilitiesType capabilities = null;
    ExtendedWfs wfs = factory.getClient();
    try {
        capabilities = wfs.getCapabilities(new GetCapabilitiesRequest());
    } catch (WfsException wfse) {
        LOGGER.debug(WFS_ERROR_MESSAGE + " Received HTTP code '{}' from server for source with id='{}'", wfse.getHttpStatus(), getId(), wfse);
    } catch (WebApplicationException wae) {
        LOGGER.debug(handleWebApplicationException(wae), wae);
    } catch (Exception e) {
        handleClientException(e);
    }
    return capabilities;
}
Also used : WFSCapabilitiesType(net.opengis.wfs.v_1_1_0.WFSCapabilitiesType) GetCapabilitiesRequest(org.codice.ddf.spatial.ogc.wfs.v110.catalog.common.GetCapabilitiesRequest) WebApplicationException(javax.ws.rs.WebApplicationException) WfsException(org.codice.ddf.spatial.ogc.wfs.catalog.common.WfsException) SSLHandshakeException(javax.net.ssl.SSLHandshakeException) WebApplicationException(javax.ws.rs.WebApplicationException) ConnectException(java.net.ConnectException) IOException(java.io.IOException) UnsupportedQueryException(ddf.catalog.source.UnsupportedQueryException) WfsException(org.codice.ddf.spatial.ogc.wfs.catalog.common.WfsException) InvalidSyntaxException(org.osgi.framework.InvalidSyntaxException) JAXBException(javax.xml.bind.JAXBException) CatalogTransformerException(ddf.catalog.transform.CatalogTransformerException)

Example 4 with WFSCapabilitiesType

use of ogc.schema.opengis.wfs_capabilities.v_1_0_0.WFSCapabilitiesType in project ddf by codice.

the class WfsSource method configureWfsFeatures.

private void configureWfsFeatures() {
    WFSCapabilitiesType capabilities = getCapabilities();
    if (capabilities != null) {
        wfsVersion = capabilities.getVersion();
        List<FeatureTypeType> featureTypes = getFeatureTypes(capabilities);
        List<String> supportedSpatialOperators = getSupportedSpatialOperators(capabilities);
        List<QName> supportedGeometryOperands = getSupportedGeometryOperators(capabilities);
        buildFeatureFilters(featureTypes, supportedSpatialOperators, supportedGeometryOperands);
    } else {
        LOGGER.info("WfsSource {}: WFS Server did not return any capabilities.", getId());
    }
}
Also used : WFSCapabilitiesType(net.opengis.wfs.v_1_1_0.WFSCapabilitiesType) FeatureTypeType(net.opengis.wfs.v_1_1_0.FeatureTypeType) QName(javax.xml.namespace.QName)

Example 5 with WFSCapabilitiesType

use of ogc.schema.opengis.wfs_capabilities.v_1_0_0.WFSCapabilitiesType in project ddf by codice.

the class WfsSource method configureWfsFeatures.

private void configureWfsFeatures() {
    WFSCapabilitiesType capabilities = getCapabilities();
    if (capabilities != null) {
        wfsVersion = capabilities.getVersion();
        List<FeatureTypeType> featureTypes = getFeatureTypes(capabilities);
        buildFeatureFilters(featureTypes, capabilities.getFilterCapabilities());
    } else {
        LOGGER.debug("WfsSource {}: WFS Server did not return any capabilities.", getId());
    }
}
Also used : WFSCapabilitiesType(net.opengis.wfs.v_2_0_0.WFSCapabilitiesType) FeatureTypeType(net.opengis.wfs.v_2_0_0.FeatureTypeType)

Aggregations

UnsupportedQueryException (ddf.catalog.source.UnsupportedQueryException)3 CatalogTransformerException (ddf.catalog.transform.CatalogTransformerException)3 IOException (java.io.IOException)3 ConnectException (java.net.ConnectException)3 SSLHandshakeException (javax.net.ssl.SSLHandshakeException)3 WebApplicationException (javax.ws.rs.WebApplicationException)3 JAXBException (javax.xml.bind.JAXBException)3 WfsException (org.codice.ddf.spatial.ogc.wfs.catalog.common.WfsException)3 InvalidSyntaxException (org.osgi.framework.InvalidSyntaxException)3 WFSCapabilitiesType (net.opengis.wfs.v_1_1_0.WFSCapabilitiesType)2 WFSCapabilitiesType (net.opengis.wfs.v_2_0_0.WFSCapabilitiesType)2 WFSCapabilitiesType (ogc.schema.opengis.wfs_capabilities.v_1_0_0.WFSCapabilitiesType)2 ResourceNotFoundException (ddf.catalog.resource.ResourceNotFoundException)1 ResourceNotSupportedException (ddf.catalog.resource.ResourceNotSupportedException)1 SecurityServiceException (ddf.security.service.SecurityServiceException)1 QName (javax.xml.namespace.QName)1 FeatureTypeType (net.opengis.wfs.v_1_1_0.FeatureTypeType)1 FeatureTypeType (net.opengis.wfs.v_2_0_0.FeatureTypeType)1 FeatureTypeType (ogc.schema.opengis.wfs_capabilities.v_1_0_0.FeatureTypeType)1 GetCapabilitiesRequest (org.codice.ddf.spatial.ogc.wfs.v110.catalog.common.GetCapabilitiesRequest)1