Lucio Lelii 7 years ago
parent 7b6e1b2bec
commit dbfa5fbffd

@ -430,6 +430,12 @@
<groupId>org.n52.wps</groupId>
<artifactId>52n-wps-algorithm-geotools</artifactId>
<version>${n52version}</version>
<exclusions>
<exclusion>
<artifactId>52n-wps-algorithm</artifactId>
<groupId>org.n52.wps</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.n52.wps</groupId>
@ -472,6 +478,12 @@
<groupId>org.n52.wps</groupId>
<artifactId>52n-wps-algorithm-impl</artifactId>
<version>${n52version}</version>
<exclusions>
<exclusion>
<artifactId>52n-wps-algorithm</artifactId>
<groupId>org.n52.wps</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.n52.wps</groupId>
@ -487,11 +499,23 @@
<groupId>org.n52.wps</groupId>
<artifactId>52n-wps-sextante</artifactId>
<version>${n52version}</version>
<exclusions>
<exclusion>
<artifactId>52n-wps-algorithm</artifactId>
<groupId>org.n52.wps</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.n52.wps</groupId>
<artifactId>52n-wps-grass</artifactId>
<version>${n52version}</version>
<exclusions>
<exclusion>
<artifactId>52n-wps-algorithm</artifactId>
<groupId>org.n52.wps</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.n52.wps</groupId>
@ -502,16 +526,34 @@
<groupId>org.n52.wps</groupId>
<artifactId>52n-wps-ags</artifactId>
<version>${n52version}</version>
<exclusions>
<exclusion>
<artifactId>52n-wps-algorithm</artifactId>
<groupId>org.n52.wps</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.n52.wps</groupId>
<artifactId>52n-wps-r</artifactId>
<version>${n52version}</version>
<exclusions>
<exclusion>
<artifactId>52n-wps-algorithm</artifactId>
<groupId>org.n52.wps</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.n52.wps</groupId>
<artifactId>52n-wps-mc</artifactId>
<version>${n52version}</version>
<exclusions>
<exclusion>
<artifactId>52n-wps-algorithm</artifactId>
<groupId>org.n52.wps</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.n52.wps</groupId>

@ -262,14 +262,17 @@ public class RequestHandler {
LOGGER.debug("Detected Request to Execute!");
req = new ExecuteRequest(doc);
setResponseMimeType((ExecuteRequest)req);
CalledMethodProvider.instance.set("Execute");
LOGGER.debug("Request to Execute Configured!");
}else if (nodeURI.equals(WebProcessingService.WPS_NAMESPACE) && localName.equals("GetCapabilities")){
LOGGER.debug("Detected GetCapabilities!");
req = new CapabilitiesRequest(doc);
CalledMethodProvider.instance.set("GetCapabilities");
this.responseMimeType = "text/xml";
} else if (nodeURI.equals(WebProcessingService.WPS_NAMESPACE) && localName.equals("DescribeProcess")) {
LOGGER.debug("Detected DescribeProcess!");
req = new DescribeProcessRequest(doc);
CalledMethodProvider.instance.set("DescribeProcess");
this.responseMimeType = "text/xml";
} else if(!localName.equals("Execute")){

@ -25,7 +25,7 @@ no. 654119), SoBigData (grant no. 654024);
Version
--------------------------------------------------
1.0.0-SNAPSHOT (2017-06-27)
1.0.0-SNAPSHOT (2017-06-29)
Please see the file named "changelog.xml" in this directory for the release notes.

Loading…
Cancel
Save