RE: [flexcoders] Re: File Uploading

2008-07-16 Thread Dimitrios Gianninas
The same way you would do it in JSP :) Use the FileReference class in Flex to allow the user to select a file and then tell it to send the file to a Java servlet. Then the servlet will receive the file and do what it needs to do with it. I assume you have done the Java portion before, so

Re: [flexcoders] Re: File Uploading

2008-07-16 Thread Leonardo Moreno
Hi I implemented that functionality this way Java: Create a servlet that handles the multipart data and write the file Flex: Using the file reference class pointing to the created servlet you call the upload method For examples you can google ;) regards ericbichara wrote: Hi dimitrios,