Is it possible to parse or deserialize a GWT-RPC response using C#? I can not seem to find any useful information about this ~serialized format.
I get the following response from the service and would like to use its content;
//OK[0,1,10,'Tjsknq4',4,6,9,'Tjsknq4',4,11,2,0,1,10,'TjsdwN4',4,6,9,'TjsdwN4',4,8,2,0,1,7,'TjskEwg',4,6,5,'TjskEwg',4,3,2,3,1,["java.util.ArrayList/3821976829","com.initka.onlineinfo.server.datamodel.DepartureInformation/3749734003","49 min","java.util.Date/1659716317","String1","844","A","22 min","String2","B","52 min"],0,6]
Slightly modified
I understand that it´s used for communication between server and client side using Java and Javascript but can it be deserialized in C# as well or would it require the data model "DepartureInformation"?
A minified Javascript uses the response to populate a list based on the data in "java.util.ArrayList"/"DepartureInformation" and the output looks something like the following example;
- 844, String2, B, 22 min
- 844, String1, A, 49 min
- 844, String2, B, 52 min