Hi everyone, I have a web service method with a signature like this:
Collection<SomeType> getCollectionOfSomeType(); In runtime, the collection that this web method returns is LinkedHashSet. >From the client side, I´d like to invoke this web method and retrieve a typed Collection as LinkedHashSet. Is it possible?. Maybe with a proper annotation in "SomeType"?. My goal is iterate over a sorted java.util.Set. My data binding framework is JAXB. Thanks in advance. Regards, Juanjo.
