Well, depending on your connection speed and the fact that your visual updates happen in the same thread as the processing, I guess it might look that way.
I've implemented the subdomain workaround for a project I'm working on and it worked wonders for me. Community Bot 1 1 1 silver badge. Yoni Yoni 9, 9 9 gold badges 52 52 silver badges 70 70 bronze badges. MonoThreaded MonoThreaded Muhammad Irfan Muhammad Irfan 1, 4 4 gold badges 25 25 silver badges 52 52 bronze badges.
Sign up or log in Sign up using Google. Sign up using Facebook. Sign up using Email and Password. Post as a guest Name. Email Required, but never shown. The Overflow Blog. Stack Gives Back Safety in numbers: crowdsourcing data on nefarious IP addresses. Featured on Meta. If a metadata schema is associated with the inbox, you must fill in any mandatory metadata fields before uploading the asset. The file uploads. You will see a bar showing the progress of the upload. To cancel an upload while it is in progress, click the Cancel icon, located on the right-hand side of the asset.
To pause an upload, click the Pause icon, on the right-hand side of the asset. Choose to view your New Route, Favorites, or Tasks. Or, choose to Upload More. Your file must be formatted according to the template here , also available on the upload feature in Flex.
This allows RoadWarrior to identify and read the address information in your spreadsheet. Do not modify the header row row 1 --this row gives important information to our system that helps categorize the data. In general, the required columns have a green header ; the rest are supplementary.
Required columns, along with any notes, are listed below:. Name - identifier for the address. Street Name - street part of street address. Country - see list of country codes on the second sheet of the Excel template.
Color - the color of the Stop or Favorite pin when uploaded. See list of colors on the second sheet of the Excel template. Phone - phone number for your contact. Note - any pertinent information you would like to add to your Route.
If you use hashtag filtering , this is the place to include those hashtags. Find centralized, trusted content and collaborate around the technologies you use most.
Connect and share knowledge within a single location that is structured and easy to search. I have a flex app that uploads files to a server. The server requires authentication to be able to upload. In IE the upload works fine. However in FF and Safari, it does not upload. I have seen people all over with this same problem but no answers. Don't fail me now stackoverflowers. Based on the flash player bug that others have linked, and the comments on that page, I decided to append session identifiers to my upload URL and give it a shot.
It really was that easy! To make it work, I started by adding a flashVar parameter called sessionParams. This allowed me to pass any string I want in to the flash player as my session identifier, and it will later get appended to the URL used to upload.
In my case, I'm on ColdFusion with java sessions enabled, so my sessionParams are setup like the following before being passed into the flash player:. Hopefully that helps you. If not, let me know and I'll try to provide more code or explanation to help you out.
The problem at least in Firefox is that the session cookies are not sent in the request when you invoke FileReference. What you need to do is add the authentication token either as a form variable or in the query string. Here is an example in Java where the session cookie is called "jsessionid". You can parse the jsessionid out of cookies using Javascript and ExternalInterface to invoke the Javascript function. Or after you authenticate you can have Flex call a backend method that returns the current sessionID.
Indeed in Flash 10 an enhancement to flash. FileReference makes it possible to read the contents of a file before it is uploaded. Meaning that the file can be uploaded in different ways then can be done in Flash 9. I faced the same issue.. File upload was working on all browsers except firefox.
0コメント