gwt version 2.0 (with old rpc mechnism).

I have a rpc call that looks like this (The sync call):
LoginMemberResultDto loginMember(String loginName, String password)

LoginMemberResultDto  contains
        private MemberDto memberResult;
        public MemberDto getMemberResult() {
                return this.memberResult;
        }

        public void setMemberResult(final MemberDto memberResult) {
                this.memberResult = memberResult;
        }

MemberDto has a subclass AdministratorDto. But this latter one isn't
included in the policy gwt.rpc file :(..
Any idea why?
I double checked the rpc requirements like serializable, default
constructor, but can't find it...

How can I solve this? where/how can I find why it skipped the
AdministratorDto object ?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
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.

Reply via email to