You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@uima.apache.org by "Lou DeGenaro (JIRA)" <de...@uima.apache.org> on 2018/08/17 13:10:00 UTC

[jira] [Created] (UIMA-5855) DUCC Web Server (WS) http -> https redirect does not include query string

Lou DeGenaro created UIMA-5855:
----------------------------------

             Summary: DUCC Web Server (WS) http -> https redirect does not include query string
                 Key: UIMA-5855
                 URL: https://issues.apache.org/jira/browse/UIMA-5855
             Project: UIMA
          Issue Type: Bug
          Components: DUCC
            Reporter: Lou DeGenaro
            Assignee: Lou DeGenaro
             Fix For: 2.2.3-Ducc


DuccHandlerHttpRequestFilter.handleRedirect needs to get query string and append to URL.

Perhaps:

{{String encodedQS = request.getQueryString();}}

{{if(}}{{encodedQS}}{{ != null) {}}

{{    String qs = URLDecoder.decode(encodedQS, "UTF-8");}}

{{    url = url+"?"+qs;}}

{{}}}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)