Hi everybody,

I have a problem with my application.

I need to upload some files on the server using an Adobe Flex application. Flex doesn't provide much control for the file upload, I can't get the raw file data that I want to upload (so I can't send them in the url, or encode them or anything else).

On the server side, I have a wicket page, with a constructor taking only one page parameters argument ("public MyUploadPage(PageParameters params)")

The only thing that doesn't work is when I need to write the data/move them with wicket (I receive nothing in the page parameters). I saw some code in PHP like that:

$file_temp = $_FILES['file']['tmp_name'];
$file_name = $_FILES['file']['name'];
move_uploaded_file(...);

What is the direct equivalent in Wicket?

Thanks!
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to