Unfortunately there's nothing supported through the main GWT library. We're doing the same but we had to implement our own JSR-286 portlet to support the rpc mechanism. Basically you can do a copy and paste of the gwt servlet and RPCServletUtils into a GWT Portlet and RPCPortletUtils respectively using a ClientDataRequest any time you see HttpServletRequest.
Once this is done you have a big difference between Servlet requests and Portlet requests. There can only be one url for portlet resource requests rather than multiple for multiple rpc requests. The solution to this was to use GWT-dispatch to allow all of our rpc requests going to the same url. I would love to contribute what I have but unfortunately it's very proprietary and heavily dependent on spring. If you have any questions on your implementation please feel free to elaborate.. Thanks On Oct 1, 8:48 am, "[email protected]" <[email protected]> wrote: > Hello, > I managed to incorporate a simple GWT application with RPC into a > portlet. However, I would like to pass data between the GWT > application and the portlet. How does it work? Can the RPC send data > to the portlet via the ActionRequest or RenderRequest object? > > The interaction between GWT and Portlets looks pretty obscure to me. > > Best Regards -- 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.
