> From what I can see I will need to include this gwtupload library using mave
> and then use that to handle the file uploading and saving into Blob, right? 


You only need to replace the FileItemFactory with an implementation which will 
store files in memory or specific GAE place, try to use gwtupload lib.

Include something like this into your Tapestry module:
> @Contribute(ServiceOverride.class)
>   public static void 
> overrideFileItemFactory(MappedConfiguration<Class,Object> configuration)
>   {
>     configuration.addInstance(FileItemFactory.class, 
> FilesApiFileItemFactory.class);
>   }


> But how do you use this into tapestry? You cant use their normal upload
> component. So do I have to create a normal form (not t:form).


You should be able to use the upload component.

> Did someone try this?

I didn't.

Denis

Reply via email to