de-bkg / wfs-ft-validator

Tool for validating FeatureTypes served by a WFS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wfs-ft-validator

Command line tool for validating FeatureTypes served by a WFS.

Installation

Prerequisites

To build and install the tool, you require

  • Java SE Development Kit 8+
  • Gradle

Build

git clone https://github.com/de-bkg/wfs-ft-validator.git
cd wfs-ft-validator/
gradle installDist

Usage

cd build/install/wfs-ft-validator
bin\wfs-ft-validator http://example.com/wfs

Running behind http proxy

If your network access requires a http proxy you can set the corresponding Network properties http.proxyHost, http.proxyPort and http.nonProxyHosts for the Java Virtual machine. This is done by editing the DEFAULT_JVM_OPTS variable within the start script for your OS or by dynamically setting the JAVA_OPTS Environment variable.

Example Usage Linux:

export JAVA_OPTS="-Dhttp.proxyHost=your-proxy.net -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=*.bkg"

Example Usage Windows:

SET "JAVA_OPTS=-Dhttp.proxyHost=your-proxy.net -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=*.bkg"

About

Tool for validating FeatureTypes served by a WFS

License:MIT License


Languages

Language:Java 95.1%Language:Dockerfile 3.6%Language:Shell 1.3%