Flex upload problem - Help!

Hi. I've got a JSP page that works fine when I upload a file
to it from another JSP page, using simple Browse and Submit
buttons. I've deployed the Flex 3 SWF to the same folder as the JSP
page and am trying to upload a file from the Flex app and keep
getting this error:
Error #2044: Unhandled IOErrorEvent:. text=Error #2038: File
I/O Error.
at
TV_Schedule()[C:\flexTest\_workspace\TV_Schedule\src\TV_Schedule.mxml:9]
at _TV_Schedule_mx_managers_SystemManager/create()
at
mx.managers::SystemManager/initializeTopLevelWindow()[E:\dev\3.0.x\frameworks\projects\fr amework\src\mx\managers\SystemManager.as:2438]
at mx.managers::SystemManager/
http://www.adobe.com/2006/flex/mx/internal::docFrameHandler()[E:\dev\3.0.x\frameworks\proj ects\framework\src\mx\managers\SystemManager.as:2330
On the Tomcat server's error log, it has the following,
[Fri Aug 22 12:16:19 2008] [error] [client xxx.xxx.xx.xxx]
mod_security: Access denied with code 403.
Error processing request body: Multipart: final boundary
missing [hostname "myhost.mydomain.org"] [uri
"/myfolder/upload.jsp"]
I've read that if we put the following in an .htaccess file
in the root, it will get rid of the problem,
SecFilterEngine Off
SecFilterScanPOST Off
However, this opens us up to all kinds of attacks. I've read
that the "Multipart: final boundary missing" is a known issue. Is
this true? Are there documents on this? Will the next version of
Flex fix this?

Adobe Newsbot hopes that the following resources helps you.
NewsBot is experimental and any feedback (reply to this post) on
its utility will be appreciated:
All Classes (Flex 3):
mx.automation, The Flex automation framework uses the
AutomationID class to ..... The FileReference class provides a
means to upload and download files
Link:
http://livedocs.adobe.com/flex/3/langref/class-summary.html
Flex cookbook beta - Uploading files from Flex using PHP:
Flex cookbook beta - Code a control so that end users can
upload a file ... text=Error #2038: File I/O Error. And the
permissions for the folder are 777 so
Link:
http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&postId=5241&produ ctId=2
F (Flex 3):
The FileReference class provides a means to upload and
download files ...... handle error messages, and bind your form
data to the Flex data model to
Link:
http://livedocs.adobe.com/flex/3/langref/all-index-F.html
Flex Solutions:
MORE FLEX FRAMEWORK LIBRARIES AND UTILITIES. 709. 12.
Excerpted from Flex Solutions, .... invoked if an error occurs in
the upload phase of the file:
Link:
http://www.adobe.com/devnet/flex/articles/upload_files/uploading_files_to_the_server.pdf
[#FP-292] uploading of files: io error 2038 on Apache - app
ok on:
Actual Results: Expected Results: Upload file Workaround (if
any): ... This error is also seen when using Flex 3 and has been
pending for a really long time
Link:
http://bugs.adobe.com/jira/browse/FP-292
Disclaimer: This response is generated automatically by the
Adobe NewsBot based on Adobe
Community
Engine.

Similar Messages

  • Adobe Premiere Elements 11 Uploading Problem - HELP

    I recorded some footage with Bandicam, then editted it, using a lot of clipping and cropping of the footage to give it a widescreen look. When I uploading it, I choose the setting of "High Definition Video for YouTube". When it finally uploaded, it looked out of wack. Footage was shrunk down and the cropping was off. When I re-uploaded it under the setting of "Flash Video for YouTube" it came out perfectly, just not in high quality. What setting should I use this time?

    The Tutorial Links Page http://forums.adobe.com/thread/1275830 may also help
    Plus...
    Premiere Elements FAQ List (2 pages of FAQ as of September 2013) http://forums.adobe.com/community/premiere_elements/premiere_elements_faq?view=all
    Premiere Elements TIPS List (6 pages of Tips as of September 2013) http://forums.adobe.com/community/premiere_elements/premiere_elements_tips?view=all

  • File Upload Problem - help with a condition

    Dear all,
    I have built a form that includes a file upload. Everything works great until I don't include a file for upload(!) It wont allow me to "not" upload a file, it throws an error at me. My database allows this field to be blank. Do I have to wite some sort of condition that allows the file field to be blank, if so, could anyone help with it?
    Many thanks

    Hello,
    Can any one at Adobe help with this please as I still cannot understand why I am forced to upload a file with the file upload control. What happens if I dont want to add a file with my insert form??? I get errors if I do not include a file:
    Developer Details:
    Folder error. Security Error. Folder 'C:\Inetpub\Www_root\absbiodiesel.co.uk\' is out of base folder 'C:\Inetpub\Www_root\absbiodiesel.co.uk\NewsArticles\'. (FOLDER_DEL_SECURITY_ERROR)
    tNG Execution Trace - VIEW
    tNG_insert.executeTransaction
    STARTER.Trigger_Default_Starter
    tNG_insert.doTransaction
    BEFORE.Trigger_Default_FormValidation
    tNG_insert.prepareSQL
    tNG_insert.executeTransaction - execute sql
    tNG_insert.postExecuteSql
    AFTER.Trigger_FileUpload*
    ERROR.Trigger_Default_Insert_RollBack
    tNG_insert.getRecordset
    tNG_insert.getFakeRsArr
    tNG_insert.getLocalRecordset
    tNG_insert.getFakeRecordset
    tNG_insert.getFakeRecordset

  • Flex slider chart problem [HELP]

    Hi people.
    thx for answer.
    My problem is : i can´t use the slider when i have more
    than 2 lineseries in the chart.
    when i have 1 lineserie, the slider works fine .... but when
    i have 2 or more .... the slider don`t work.
    I think that the problem is because i don`t keep in an array
    collection all the data to move fine the slider.
    example.
    with this function the slider work fine with 1 lineserie but
    with 2 or more dosent.
    private function updateMainData():void{
    if(iContSerie <= 1){
    sliderBig.source = sliderBig2.source.slice(leftBoundary,
    rightBoundary);
    }else{
    bigChart2.dataProvider =
    sliderBig2.source.slice(leftBoundary, rightBoundary);
    with this function the slider with 2 or more lineserie work
    but only move the last lineserie added.
    private function updateMainData():void{
    if(iContSerie <= 1){
    sliderBig.source = sliderBig2.source.slice(leftBoundary,
    rightBoundary);
    }else{
    sliderBig.source = sliderBig2.source.slice(leftBoundary,
    rightBoundary);
    how i move all the series like i move one serie?
    here is the app
    http://www.ricoterox.com.ar/hola/mainArrayLeyenda.html
    and here the code.
    http://www.ricoterox.com.ar/hola/code.txt
    can you try in your flex ? it is much to request?
    THX so Much.
    Danny.
    sory for my english ... i argentinian

    There's an example that displays percentages for a data tip
    in a stacked column chart here:
    http://livedocs.adobe.com/flex/3/html/help.html?content=charts_displayingdata_08.html
    hth,
    matt horn
    flex docs

  • File Filter on Flex Uploader

    Hi,
    I would just like to ask for some help regarding my flex
    uploader. My problem is I can't filter the file types when i am
    uploading. For example I only wanted to see image files (.jpg,
    .png, .gif) when browsing files to upload but instead I always get
    All file types. Here's my code just in case you need it.
    thanks a lot. any feedback would be very much appreciated.

    I'm thinking you can file the following under "obvious", so
    excuse if it is...
    if you only want to see the image file types you mentioned,
    you'd have to remove the other file types (*.swf, *.bmp) passed to
    the FileFilter constructor. Also, you want to pass an Array to the
    browse() function, so use the following in your addFiles()
    function:
    _refAddFiles.browse(filesToFilter);
    and not
    _refAddFiles.browse(imageTypes);
    On Windows you'll get only the file types listed in the
    dialog box and on a Mac you'll see all files, but only the file
    types listed will be selectable, the others are grayed out. Don't
    know what it looks like on Linux.
    TS

  • Need a fix for Muse upload problems to GoDaddy????  I found one!

    GoDaddy now has a new cpanel named "Plesk".  In that panel you will find File Manager.  (I use the Windows version).  In the left panel of File Manager, you will see the root directory and all of its subfolders.  When you click on any of these folders, you will see their contents in the right panel.  You will also see a folder labelled "httpdocs".  This is the default folder that is set up in GoDaddy to be your "home" folder.  So, to fix your upload problems, do these steps:
    1.  Click on the httpdocs folder to see it open in the right panel.  In the toolbar above the right panel, you will see a green plus sign with the word "New".  Click on this drop-down menu.
    2.  Choose "directory"
    3.  Type in the name of one of the folders that your site will need, e.g. images, css, assets, scripts, etc.  This basically creates a subfolder within the httpdocs folder, right?  (There is a way to see how your Muse site sets up these folders prior to publish or upload.  You do this by choosing "Export as HTML" in the File menu of Muse, creating a folder on your desktop (or wherever) for the HTML export, then inspecting its contents after your save it.)
    4.  Continue to create all the subfolders within httpdocs that you will need.  Unfortunately, you have to do this one folder at a time.
    5.  After you have them set up, begin the process of uploading your site, like this:
    6.  In the File menu in Muse, you'll of course see "Upload to FTP Host ...".  Click on it.
    7.  A dialog box will open.  In the top text field, type in your website name ... you must use www. with your entry
    8.  In the "FTP Host" field, type in your domain name again like this ... "ftp.yourdomain.com" ... NO FORWARD SLASHES!!! (even if you find instructions to the contrary, like in Filezilla)  (Also, your domain might be a .org or .net, instead of a .com)
    9.  In the "Host directory" field, YOU MUST ENTER "httpdocs"!!!!  Despite what you learn, DO NOT LEAVE THIS FIELD BLANK!!!
    10.  Then enter your GoDaddy username and password.  (If you set up a different username for your GoDaddy account and your Plesk account, like I did, then use your Plesk username and password.)
    11.  Click on "Upload:  All Files"
    The next few steps are tedious, but necessary to keep your site organized on GoDaddy and to keep from confusing things.  You can probably get away with it, but, if your site doesn't load properly in a browser after doing the above steps, you'll need to click on each folder in the root directory that you copied as a subfolder in the "httpdocs" folder and delete the files.  For example, in the left panel of File Manager, you'll see the root directory.  Click on the "images" folder.  If there are any images that you need for your site in that folder, delete them.  Remember ... you've already copied them over to the images subfolder in httpdocs during your last upload described in the instructions above.  If you don't trust that you can delete them, click on the "httpdocs" folder, then click on the "images" folder and check the files.  Same files, right?  So, go ahead and delete the site files that you find in the appropriate folders in the root directory, making sure that you don't delete the ones that are NOT duplicated within the "httpdocs" folder.  Also remember that your .html pages will not require a subfolder to be set up in the "httpsdocs" folder.  They can just sit there, looking pretty.  But you will have to delete them from the root directory to keep things tidy.  Just click on the folder icon next to "root directory", and you'll see those html pages in the right panel.  Again, delete them. 
    REMEMBER:  To keep your Muse uploads to your GoDaddy site error free, you must ALWAYS make sure that "httpdocs" appears in the "Host directory" field in the "Upload to FTP Host ..." dialog box in Muse.  And all files and folders that your site needs MUST go in the "httpdocs" folder in the root directory of your site in GoDaddy's File Manager (now found in your Plesk Panel).
    I hope this wasn't too confusing.  If so, call GoDaddy.  I called them with this fix and they are using it in their phone support.

    Thank you! Thank you! Thank you! I was going out of my mind. And GoDaddy was no help (although they're usually really good.) I put all the folders in "httpdocs" and the website worked perfectly!

  • A different uploading problem

    I have read through the discussions and see that a lot of people are having an uploading problem. I am too, but my problem is a little different. When I upload my photos, everything seems to be fine, all the pages turn from blue to red, and it appears to be done. But, if I quit iWeb, it says it hasn't finished uploading. When I go to the site on the web, everything is there. So, it seems to not be finalizing the last little part where it marks the files as uploaded.
    I am using iWeb 1.1.1.
    I have tried deleting the files from my iDisk and uploading again.
    I have repaired permissions.
    I have deleted the file com.apple.iWeb.plist
    It's not that I'm trying to quit too soon, I have left it for hours, even overnight, and it doesn't complete.
    There's a small circle to the right of the word site that fills in to show progress as it's finishing, and that gets to the point where there's only a small sliver of white.
    Any ideas? Thanks for the help!
    Kirsten
    MacBook   Mac OS X (10.4.7)  

    Have you tried "Publish ALL to .Mac"?

  • Is Safari the problem?  upload problems after Leopard install...

    I installed maximum ram and leopard 10.5 on my old emac and it runs great. I had problems uploading photos to ebay, and attachments to emails, so I installed ilife hoping the upgrade would fix the problem. Nope, when I attempt to upload, the icon just spins and spins, on and on. Could this be a Safari problem? Very frustrated, totally stumped.

    I'm not sure how to link to the iPhoto post thread that help me solve my upload problem. But it is solved. I had to resize the jpeg pic files to 640x320 because my files were way to big. Thanks Old Toad!

  • PL20 flexi upload issue

    Hi All,
    When we uploaded the file using flexi upload for posting level 20, system is reading the data properly but at the same time system is posting correction reversal entries for the same. Eg if i'm uploading the file with 100 INR system is posting the amount and again system is posting the correction document for -100 INR. Kindly help us in resolving this issue.
    We have created a flexi upload for PL20 entries, in which we created a seperate method and task for the same. And in task we have defined the processing type as two sided, created a field catalog in flexible upload. Please let us know if you need further details.
    Regards,
    Magesh

    Hi Collet,
    In Task, we use cons freq- monthly, proc. type two sided, cons. group- all values. In method we have defined DCP flexible upload w.r.t method and doc. type. In flexible upload field category we have defined the respective fields as per the manual journal entry screen.
    Yesterday only i configured flexi upload for PL20. In my total records during the first PL20 flat file upload, items were reversed with text CORR and in which most of the amount are w.r.t clearing a/c.
    Kindly let me know if you want further details.
    Regards,
    Magesh

  • My daughter has just bought me an iPad 2 from Dubai and set it all up for me but unfortunately the iMessage function doesn't seem to work. We keep getting messages,when trying to activate it, that there is a network connection problem - help!

    My daughter has just bought me an iPad 2 from Dubai and set it all up for me but unfortunately the iMessage function doesn't seem to work. We keep getting messages,when trying to activate it, that there is a network connection problem - help!

    Thank you both for your responses but my daughter was reassured by the salesman in the iStyle store (official Apple store in the UAE) that iMessages would work but conceded that FaceTime wouldn't. My iTunes account is registered in the uk and my daughter's iPhone has iMessages even though she bought it (and uses it) in Dubai. Can anyone else throw any light on this?

  • I couldn't log into my apple account on my iPad, then i couldn't unlock it resulting in it being disabled, however it's the same as my iPhones password, I then called apple, i was hung up on twice and they said it will cost £70 to fix THEIR problem, help?

    I couldn't log into my apple account on my iPad, then i couldn't unlock it resulting in it being disabled, however it's the same as my iPhones password, I then called apple, i was hung up on twice and they said it will cost £70 to fix THEIR problem, help?

    If you cannot remember the passcode, you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and resync the data from the device (or restore from a backup).
    If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present.
    You may have to force iPad/iPod into Recovery Mode
    http://support.apple.com/kb/ht4097

  • IPad syncing problem - HELP!

    iPad sync problem - HELP!  I keep getting this message "...cannot be synced because there is not enough free space to hold all of the items in the iTunes library (additional ...space needed)"  and yet I seem to have plenty of space on the iPad.  This just started today.  I even tried deleting some things to make even more room, but it didn't help.  Any ideas??? 
    I was thinking of restoring, but I've never done it...  should I? 
    thank you!

    Hello florafromnv,
    Welcome to Apple Support Communities.
    The following article addresses how to resolve the issues related to this message:
    iOS: "Not enough free space" alert when trying to sync
    http://support.apple.com/kb/TS1503
    Regards,
    Jeff D.

  • MOVED: KT333 Ultra; fuzzy logic, 1.6xp overclocking problem help !!!!!

    This topic has been moved to Overclockers & Modding Corner.
    KT333 Ultra; fuzzy logic, 1.6xp overclocking problem help !!!!!

    Not that I am an expert o/c but here are some thoughts on the matter.
    My comments are based on my experiences of the KT3 Ultra2 which is basically the same as the Ultra version.
    This mobo does not have the ability to lock the PCI/AGP bus freely from the FSB. However, it does have dividers. At 133 a 1/4 divider kicks in. Above 152FSB the 1/5 divider works, so that at 166 the PCI & AGP buses will be back in sync. If you are o/c your cpu, don't go from 133 to 145, etc since you will be running the PCI/AGP buses further out of whack. Just go to either the mid 150's or to 166 in one jump. The other problem / issue relates to your cpu. From what you say you have one of the old Palominos which are not great o/c's. I would personally o/c your cpu from the BIOS rather than 'Fluffy Logic' which I would tend to stay away from. 
    With a 166FSB cpu a very stable o/c would be 175-177 beyond 180 gets decidedly tricky.
    Hope this helps

  • Itunes keeps closing as soon as i open it and states 'windows has detected a problem' HELP!!!!

    Help!! Itunes keeps closing straight away and message states 'windows has detected a problem' HELP ASAP PLEASE!!!!

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If you've already tried a complete uninstall and reinstall try opening iTunes in safe mode (hold down CTRL+SHIFT as you start iTunes) then going to Edit > Preferences > Store and turning off Show iTunes in the Cloud purchases. You may find iTunes will now start normally.
    tt2

Maybe you are looking for

  • How do I scan and remove a virus from my iPad?

    MY  iPad  has been having many bad things go on like only one of the speakers works, videos are all messed up into thousands of miniature squares that are obviously not meant to be that way.  When I type it won't type as fast as my fingers and I type

  • How do I put a "Not Eligible" song on my iPhone

    After iTunes matched my library, it found 60 items that were "Not Eligible". Most were music videos but some were not.  If I turn iTunes Match on for my iPhone or iPad, it says the library will be removed and replaced with my iTunes Match library in

  • Solaris 8 on Sun v215

    Is there any way to install Solaris 8 on a sun v215? When I try to boot from cdrom, the server starts to read the DVD then stops and complains about not finding a path to kernel. The Solaris 10 out of the box install shows the platform to be sun4u wh

  • How to determine the "Last Value" in exception aggregation

    Hi gurus, I have a KeyFigure with an exception aggregation -Last value- by time. I report on a multiprovider ("containing" a infocube and a realtime infocube with BPS-InputLayout). I can correct separate Items with this BPS-Layout. So, at the end I h

  • Pass parameter in report 9i

    Hi I have a requirement for goods reciept note report: where we need to pass a paramater call delivery to,this parameter has independent valueset as store and customer. If we pass Store as delivery to parameter status of back ordered items in the rep