added comments

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-transfer/uri-resolver@112323 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2015-03-03 14:17:55 +00:00
parent 03150f9983
commit 214c481f57
1 changed files with 1 additions and 0 deletions

View File

@ -94,6 +94,7 @@ public class HttpResolver extends HttpServlet {
String secondPart= uri.substring( index+1);
logger.debug("firsPart not chagend: "+firsPart);
logger.debug("replacing in smp-uri char space with char + ...");
//FIXED BY FRANCESCO M.
secondPart = secondPart.replace(" ","+");//the char + is removed when the servlet is doing unescaping of the query paramenters, we just put it back
logger.debug("new secondPart: "+secondPart);
uri= firsPart+"?"+secondPart;