I\'ve got a .NET Rest webservice which delivers responses in Json. I consume the webservice in Java. I use Gson to serialize to and from Json.
I\'ve got problems seriali
Solved it by adding the following to the abstract base class so it's automatically serialized by Gson:
private String __type = this.getClass().getSimpleName();