[infinispan-issues] [JBoss JIRA] (IPROTO-34) Protobuf/Json mapping generates invalid json
Gustavo Fernandes (JIRA)
issues at jboss.org
Thu Sep 28 09:25:01 EDT 2017
[ https://issues.jboss.org/browse/IPROTO-34?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Gustavo Fernandes updated IPROTO-34:
------------------------------------
Description:
A json containing a string field value with the '\n', when converted to protobuf and back results in invalid json with line breaks.
The following escaping should be done:
{noformat}
REPLACEMENT_CHARS['"'] = "\\\"";
REPLACEMENT_CHARS['\\'] = "\\\\";
REPLACEMENT_CHARS['\t'] = "\\t";
REPLACEMENT_CHARS['\b'] = "\\b";
REPLACEMENT_CHARS['\n'] = "\\n";
REPLACEMENT_CHARS['\r'] = "\\r";
REPLACEMENT_CHARS['\f'] = "\\f";
{noformat}
was:
A json containing a string field value with the '\n', when converted to protobuf and back results in invalid json with line breaks.
The following escaping should be done:
REPLACEMENT_CHARS['"'] = "\\\"";
REPLACEMENT_CHARS['\\'] = "\\\\";
REPLACEMENT_CHARS['\t'] = "\\t";
REPLACEMENT_CHARS['\b'] = "\\b";
REPLACEMENT_CHARS['\n'] = "\\n";
REPLACEMENT_CHARS['\r'] = "\\r";
REPLACEMENT_CHARS['\f'] = "\\f";
> Protobuf/Json mapping generates invalid json
> --------------------------------------------
>
> Key: IPROTO-34
> URL: https://issues.jboss.org/browse/IPROTO-34
> Project: Infinispan ProtoStream
> Issue Type: Bug
> Affects Versions: 4.0.0.Alpha5
> Reporter: Gustavo Fernandes
> Assignee: Gustavo Fernandes
>
> A json containing a string field value with the '\n', when converted to protobuf and back results in invalid json with line breaks.
> The following escaping should be done:
> {noformat}
> REPLACEMENT_CHARS['"'] = "\\\"";
> REPLACEMENT_CHARS['\\'] = "\\\\";
> REPLACEMENT_CHARS['\t'] = "\\t";
> REPLACEMENT_CHARS['\b'] = "\\b";
> REPLACEMENT_CHARS['\n'] = "\\n";
> REPLACEMENT_CHARS['\r'] = "\\r";
> REPLACEMENT_CHARS['\f'] = "\\f";
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
More information about the infinispan-issues
mailing list