[code]
MyGenericClass<T> implements IsSerializable{
public MyGenericClass(){ }
}
[/code]
throws rpc.SerializationException when trying to send an instance using RPC. Though,
[code]
MyGenericSubclass extends MyGenericClass<String>{
// ...
}
[/code]
works perfectly.
I've found
a link that pretty much describes my problem as well as the
fix, but it doesn't seem to work.
Any thoughts?
Thanks in advance,
Nikola