Hi, I'm learning as I go. I have an application that users must provide a user name and password. I pass that to a server which authenticates them against LDAP and also returns several flags defining what function the users is allowed to use. I modeled that pretty much after the StockWatcher application in the GWT tutorial. And it works perfectly. But after I authenticate the user will end up doing one or more searches against LDAP data at the server and, of course, I don't know what those searches will be at the time I do the authentication/ authorization so this requires another RPC call. And there will probably be more than one or two additional RPC calls, depending on what the user is doing.
My question is this: do I simply create another serializable class, a service and asyc interface and (server side) another impl class? Or do I expand the original class so that it includes all the possible data components and flags so that the server will no what to do? Or is it either/or and thus a design choice? Thanks, Rob --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
