You could: - maybe serialize/deserialize them with RequestFactory#getSerializer to clone them (I think we tried that and had issues with it though) - clone your proxies using an AutoBeanVisitor (create a new proxy, "visit" the old one –get its AutoBean using AutoBeanUtils–, and for each property, update the new one) - use AutoBeans instead of proxies with your Editor, and send the request as a String (using AutoBeanCodex's encode() and decode()) - serialize/deserialize your proxies by your own means (and use that to clone them)
FWIW, we went for the latest, because we wanted something readable in our URLs (the serialization of the proxies is used in our places). -- 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/-/anT6K5b_2tgJ. 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.
