You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to RestExpress
Hello again, I have another question for you:
I have to provide a URI in the JSon-result my server gives via rest.
However the URI includes several header-fields and the ampersand(&) character always becomes &, is there a way to ensure the URI is preserved "as-is" ?
Probably something with the JSon-serialization-provider...
Kind regards Ulli Gerhard
Ulli Gerhard
unread,
Feb 25, 2016, 5:42:48 AM2/25/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to RestExpress
Ok, thanks, solved it :)
Just put false when creating your JSon-(default)-processor
public SerializationProvider() { super(); add(new JacksonJsonProcessor(false), new RawResponseWrapper(), true); // add(new XstreamXmlProcessor(), new RawResponseWrapper()); }