Hi Thomas- >> Basically, you don't want to try and send image bytes through RPC ... >> avoid that and you should be fine. >> > could you elaborate on that. please. What's the problem with doing so?
Sure ... it's pretty simple. AFAIK, there is no way for a browser to deal with image bytes. As I said, you basically have 2 options: 1) Create an Image object and for the URL point to a servlet that will return image bytes to you. 2) Call an RPC that will return a String and set that as the source (setURL()) of your Image. Good luck! -- 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.
