Actually, instead of
ClassSomethingProxy extends EntityProxy {
ClassAnotherProxy getProperty1();
List<ClassOtherProxy> getProperty2();
(...)
}
I changed it to
ClassSomethingProxy extends EntityProxy {
ClassAnotherProxy getProperty1();
ClassOtherProxy getProperty2();
(...)
}
ps. i changed the definition of the thrift file to not have a list of
ClassOtherDTOs and also changed the proxy , locator, etc.
And it all works just fine !
What's the deal with using a proxy with a list of proxies? is this a well
known problem? do you need me to give you more info? do you want me to dig
deeper?
it would help me A LOT if there is a work around for this problem.
Thanks.
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-web-toolkit/-/RFTh7TGYD_QJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.