ServiceStack.Java Guid conversion in GET request

The issue is that the value of GET requests are added using its natural string value, whilst the properties in the body are encoded in JSON and goes through the custom Gson type Adapters. Unfortunately Microsoft chose to use “crazy-endian” formatting for Guids which is why they’re natural string representation doesn’t match Java’s UUID.

I’ll look into this behavior soon.