**DEPRECATED** The 52°North Web Processing Service enables the deployment of geo-processes on the web in a standardized way.
GNU General Public License v2.0
63
stars
55
forks
source link
URL decoder swallows up "+" character in test client #147
Open
nuest opened 10 years ago
Sending the request below with the R calculator process, the
+
as a value ofop
disappears afterURLDecoder.decode(documentString, characterEncoding);
in https://github.com/52North/WPS/blob/feature/spring-new-admin-app/52n-wps-server/src/main/java/org/n52/wps/server/WebProcessingService.java#L339This error appears with the test client that uses
application/x-www-form-urlencoded
!Solution: The test client should use the content type header for XML, e.g.
text/xml
.