3
votes

I have tried two flash upload components, swfupload and uploadify, and both seem to generate POSTs with a "Filename" parameter. My problem is that the service I'm posting to has a strictly specified set of allowed parameters and Filename is not one of them.

So, is it at all possible to remove this parameter from the post?

1
What service are you posting to? What are the allowed parameters? - Richard Inglis

1 Answers

1
votes

A quick look at the docs reveals that you can change the uploadDataFieldName, which is by default "Filedata", by setting the second parameter of the upload() method. Docs doesn't say anything about the Filename parameter though, so I guess that's a no.