it's actually a Bad Idea to use PBs on the client-side of a GWT app (as much as it's an exceptionally good idea to use them on the server- side, especially if your server is talking to a remote back-end, possibly written in something other than Java....)
For a start, there's a lot of Reflection used in the Java implementation, and that just doesn't work in Javascript, plus there's a lot of overhead that you don't really need: your best bet is to model your business objects using POJOs in the Client, and then possibly have an Adapter on the server side, if you need to use the PBs talking to a back-end. To answer your question: yes, I think someone tried, but I've not heard of any good success story. On Nov 28, 4:21 pm, asianCoolz <[email protected]> wrote: > anyone tried using PB on GWT? from my research i came across saying > performance issues with PBhttp://tinyurl.com/yem57ud > > any comments? -- 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.
