[
https://issues.apache.org/jira/browse/OLINGO-1107?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ramesh Reddy resolved OLINGO-1107.
----------------------------------
Resolution: Fixed
Assignee: Ramesh Reddy
Fix Version/s: (Java) V4 4.4.0
Fixed with following commit.
https://github.com/apache/olingo-odata4/commit/0cf76f51c50a0f9eda0ceb044e37efcf09752872
> UriDecoder should use java.net.URLDecoder
> -----------------------------------------
>
> Key: OLINGO-1107
> URL: https://issues.apache.org/jira/browse/OLINGO-1107
> Project: Olingo
> Issue Type: Bug
> Components: odata4-server
> Affects Versions: (Java) V4 4.3.0
> Reporter: Jon McEwen
> Assignee: Ramesh Reddy
> Fix For: (Java) V4 4.4.0
>
>
> Query filters are incorrectly parsed, because the
> org.apache.olingo.commons.core.Decoder doesn't convert '+' to space.
> Simple fix is to use java.net.URLDecoder instead (line 85):
> {{return URLDecoder.decode(encoded, "UTF-8");}}
> Additional unit test:
> {code:Java}
> @Test
> public void decodePlusAsSpace() throws Exception{
> checkOption("%24filter=PaymentStatus+eq+%27Cleared%27", "$filter",
> "PaymentStatus eq 'Cleared'");
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)