I have coded up a servlet that I'll be using to process file uploads with Uploadify. Uploadify provides a "Script" section in its implementation, where by default it points to a pre-packaged Upload.php to process file uploads. Obviously, I will not be able to use this since I'm in Java world.
I'd like to know what the syntax would look like where I link Uploadify to my servlet. See below for Uploadify's link to its PHP file in bold. What would this line look like pointed to a servlet instead of PHP file?
$(document).ready(function() {
$('#file_upload').uploadify({
'uploader' : '/uploadify/uploadify.swf',
**'script' : '/uploadify/uploadify.php',**
'cancelImg' : '/uploadify/cancel.png',
'folder' : '/uploads',
'auto' : true
});
});