public void onSuccess(String imageData) {
String serverUrl = "http://gwtmobile-services.appspot.com/filetransfer";
FileTransfer ft = FileMgr.newFileTransfer();
final String lb = "<br/>";
Notification.activityStart("Uploading", "Hang in there...");
ft.upload(imageData, serverUrl, new FileTransferCallback() {
@Override
public void onSuccess(FileTransferResult result) {
Notification.activityStop();
text.setHTML("response code: " + result.getResponseCode() + lb +
"bytes sent: " + result.getBytesSent() + lb +