HttpInvoker and Jakarta Commons Enum
Hi,
i try to return instances of org.apache.commons.lang.enums.Enum as the result of some method call using HttpInvoker. i do get always null as a result and cant imagine why this happens. Enum does implement the interface Serializable and my subclass is as simple as it can be
Code:
public class Taste extends Enum {
Taste(String name) {
super(name);
}
}
does anyone has any suggestions or any experiences with Enum and HttpInvoker? Working sample code would be nice.