On 12/07/2011 01:41 PM, Francois Forster wrote: > Actually, it happens even if I don’t add isFeatured. Is there something > incompatible due to the different namespace?
Changing the namespace is probably why this is failing.
If you need to change the namespace then you can use aliases:
@namespace("v2")
protocol Service {
@aliases(["v1.Result"])
record Result { ... }
...
}
This will make v2 be able to read v1.
Doug
