Re: [flexcoders] File upload via JAVA

2007-01-25 Thread Abdul Qabiz
You can write simple servlet/jsp that does the uploading. If you can write a simple app with html front end and java backend for file uploading, you can transparently replace front-end with Flash based uploader. You have to take care of cases when multiple-files are being uploaded together, on

Re: [flexcoders] File upload via JAVA ( jsp exemple)

2007-01-24 Thread azurs
correction try { upFile.upload(request,upFile);// upFile.upload(request,logoFile); upFile is the name use in the jsp page } catch (error:Error) { //trace(Unable to upload file.); } azurs a écrit : hello to implement java upload you need a jsp page in your application directory view this

[flexcoders] File upload via JAVA

2007-01-23 Thread [EMAIL PROTECTED]
I'm trying to implement the file upload using the FileReference class and can't find an example of the JAVA code that would be required, I've found .net and php but no java, does anyone have an example ? Cheers Grant