I have two type of servers which contain some information.
One of them is Interface Server that is used for collecting all information in one place and pass it to mobile devices.
I used httpClient
to get JSON data with REST from data servers.
I want to pass this json data directly to the mobile devices without any deserialization or serialization in my Interface Server.
String is a good solution but it deserializes this result from json:
"\"{\\\"Count\\\":5}\""
How can I achieve this?