tags:

views:

20

answers:

1

How do I upload files using sdk3? I'm developing my project using flex and spring iam using the jboss server

A: 

Hi,

On the flex side you will have to create a FileReference object and use the upload method to upload the file. The upload method requires a Request object which is the URL of your Spring controller that is going to handle your upload.

On the server side, you can have a CommonsMultipartResolver and since you will not be using spring beans.. you will have to get the file from request using something like this:

 MultipartActionRequest multipartRequest = (MultipartActionRequest) request;
 MultipartFile multipartFile = multipartRequest.getFile("file");

Hope this helps,
Regards,
Abdel Raoof

Abdel Olakara
In addition you can have a look at the FileReference documentation for coding details: http://livedocs.adobe.com/flex/3/html/help.html?content=17_Networking_and_communications_7.html
Abdel Olakara