OK, I tried that.  Unfortunately it produces the same payload as the
other examples.

Interesting:

I tried not setting any properties on the File object whatsoever.

Simply:

File file = req.edit(existingFile);
req.persist().using(file).fire(...);

And this also produces the same payload as all of our "setData"
examples.

So it appears that from GWT's standpoint, all of our approaches have
been no-op's.

Ryan


On Jan 23, 2:49 pm, Y2i <[email protected]> wrote:
> It might not help, but may be you can try this code?
>
> File file = req.edit(existingFile);
> FileData data = file.getData();
> data.setTextData("something");
> file.setData(data);
> req.persist().using(file).fire(...);

-- 
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.

Reply via email to