Possible to show file upload progress for web form submission?

I just made a simple form as a test. There are 3 files being submitted here via a "web form".
Files being uploaded in this case are of these sizes:
110MB
9MB
24MB
I'm testing functionality that will let a print shop's clients upload their files. For larger files they'll use FTP but this "order form" does a lot of business for them so we're trying to replicate in BC.
My problem is that I am wondering if there is a way to show the "upload progress" as a total %. Such as a visual status bar, etc.
As of now the only way it's showing is in the default browser status bar (chrome in this case):
http://cl.ly/image/1d3U0S1h2521
I read somewhere that the limit is 150MB for an upload. Wondering if that means 150MB TOTAL as in 3 files combined in my case. Or If I chose to allow 3 files to be attached would it allow for 450MB?
Also, if you do a user submitted web app instead and allow people to attach files that way, does the same file limit apply?
My second issue is that the upload speed seems to be SLOW. I know it's not my connection because on my non BC site as well as another with the same form, the files upload fairly fast. But on BC it just crawls and on a few tests I get this:
http://cl.ly/image/2T2q160M1R1n
Any help or suggestions with the file upload progress as well as file upload speed would be appreciated.
Thanks!

So if i have 3 files to be uploaded, the max allowed is 750MB correct? (just wondering if when uploading its 250mb total or per file).
Guess i'll do something fake to make it appear its working with a loading graphic or something.
My web browser (chrome in this case) shows the % uploaded. I wonder if all web browsers do the same. I havent tested yet.
If only there were a way to have javascript or something grab that same #% from the web browser itself and just format it to appear where I want on the form along with the % uploading.
Anyone know if that's possible?
Here's where Chrome for mac shows it:
http://cl.ly/image/1c3i3x25262j
If I could grab that (uploading 19%) from the browser and format it into css/html i'd be gold.
Then find if similar browsers do the same and write some js for each browser specifically to grab it.
In a perfect world at least....

Similar Messages

  • VS2010 does not record file upload process for web test

    I'm trying to record the process of uploading a file to the system for web performance test.
    The problem is when a new browser opens for uploading a document, the visual studio is not recording the URL (....Attachement/Upload.aspx) or POST and related Form Post Parameters.
    Is there any settings to able to record when a new browser pops up?
    I'm using VS2010 ultimate and the system is on MS Dynamics CRM platform.

    Hi Michi,
    >>A new browser pops up.
    Could you share us a screen shot about it? Do you mean that it opened a new tab in the same window or a new window in your IE browser?
    Maybe you could use the Fiddler tool to record a web performance test, check the result.
    http://blogs.msdn.com/b/slumley/archive/2007/04/17/enhanced-web-test-support-in-fiddler.aspx
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • VS2010 not recording file upload process for web test

    I'm trying to record the process of uploading a file to the system.
    The problem is when a new browser opens for uploading a document, the visual studio is not recording the URL (....Attachement/Upload.aspx) and related Form Post Parameters.
    Is there any settings to able to record when a new browser pops up?
    I'm using VS2010 ultimate and the system is on MS Dynamics CRM platform.

    Hi,
    this is the forum for Microsoft Office Visio.
    It seems from your question that you need assistance with Visual Studio.
    The Visual Studio forums are located in MSDN, not here in TechNet.
    Try here:
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=visualstudiogeneral
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • SSL certificate - securing web form submission - privacy, usability and Adobe's UX design ethos

    Hi,
    (newbie alert)
    I'm just learning BC and it doesn't seem too bad. One problem I have is the shared certificate and I wonder if there are plans to address this shortcoming in the short term?
    Privacy is a growing concern in Australia (in addition to specific new legal requirements). The web forms that we will use are likely to contain personal information. These should be secured by a certificate.
    If you accept that most end users are not tech-savvy then you might agree with the premise that "Users should not see different domain names in the address bar when submitting personal information".
    Switching domains, multiple times for web forms submission or ecommerce, is in my view, a pretty simplistic and business-centric (as opposewd to user-centric) design approach to the task.
    How does Adobe explain their committment to the end-user and their system design decisions regarding the shared certificate situation? I'd be interested to know if Adobe believes this is a "good-enough" solution based on a range of factors, especially expediency for Adobe. Or are there concrete plans to "fix" this (in my view) sub-optimal situation in the near-term?
    Happy to discuss further.
    Cheers
    BCStarter

    Hey there,
    It is an integral part of how the system works in terms of the system itself and the business model, So it wont be any way to change it any time soon without a big change from BC on how BC works.
    Web forms in BC can be secured with a certificate. Many systems change domain for secure subdomains etc, most people are not tech savy and they actually do not even notice things like change of domain, most actually do not check the SSL certificate. You can even just put graphics of lock symbols and say your form is secure, even when it is not and people fill it in. (Studies have shown this)
    With many eCommerce sites, booking sites etc under my belt, with good UI Design and site flow and good information about being secure etc to the end user - No issues with clients and clients happy with the sales they get through. The domain thing has never been an issue.
    I seen people complain about it on the forums before but looking at the sites, its the user experience flow of the site itself being the primary problem.
    Yep, nice if it was all under the same domain, but this will not likely change in BC especially any time soon, but a site built well - this really does not matter that much, Google for example even offers anaytlitcs settings to work cross domain so they fully well know things like this work on modern websites.

  • HI Masters , I need information for file upload program in web dynpro java

    Hi masters,
           i need some inforamtion and documentation on file upload program in web dynpro java

    Hi surya,
    You can follow this procedure to upload the file
    i) Take One Context Attribute named as "D1" of Type "binary".
    ii) Take one FileUpload UI Element in the Layout Tab.
    iii) Bind FileUpload UI Element's data Property to the taken Context Attribute. Here it is "D1".
    iv) Take one Button UI Element in the Layout Tab named "Upload" and in the Action of that Button write the following Code.
    v) The following code Generates one Folder in the Server & inside that Folder given file is Uploaded.
    File ff=new File("FolderXYZ"); // Creates One Folder with the given Name ( Here Folder name is "FolderXYZ")
    ff.mkdir();
    try
    byte b[]=null;
    IWDAttributeInfo objAttinfo=null;
    IWDModifiableBinaryType binType=null;
    File f=null;
    FileOutputStream fos=null;
    if(wdContext.currentContextElement().getD1()!=null)
    b=wdContext.currentContextElement().getD1();
    objAttinfo=wdContext.getNodeInfo().getAttribute(IPrivateAttachView.IContextElement.D1);
    binType=(IWDModifiableBinaryType)objAttinfo.getModifiableSimpleType();
    f=new File(ff.getName()+"
    "+binType.getFileName());
    fos=new FileOutputStream(f);
    fos.write(b);
    fos.flush();
    fos.close();
    objMessageManager.reportSuccess("File uploaded to server");
    } catch (Exception e)
    objMessageManager.reportException("Unable to upload file to server, error is:"+e,false);
    return;
    The Uploaded file is stored in the folder & that folder is stored in the Server's following Path.
    <Your Server>\c$\usr\sap\J2E\JC00\j2ee\cluster\server0
    You can access your Uploaded file from the following Path
    <Your Server>\c$\usr\sap\J2E\JC00\j2ee\cluster\server0\FolderXYZ
    Regards
    Sagar Ingalwar

  • How do i fix my printer when it won't show the print preview for web pages? it worked and now not.

    how do i fix my printer when it won't show the print preview for web pages?  it worked for a while and now it doesn't.  printer is an hp officejet 7310 all-in-one.

    I would suspect this is a hardware issue.  The rollers are probably having issues picking up the relatively smooth thick media.  You might have better results be cleaning the paper pickup rollers with a damp paper towel.  Also make sure the paper is snugly loaded and the paper guides have been correctly positioned.
    Regards,
    Bob Headrick, MS MVP Printing/Imaging
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • What steps do I take to edit raw files and save for web use, such as Instagram, Facebook, Websites, and emailing?

    What Steps do I take to edit raw files and save for web use, such as Instagram, Facebook, Websites, and emailing?

    When you open a raw file it will open in Adobe camera raw. That is where you can do most of the editing. Then it will be placed inside Photoshop where you can do more if needed.
    Now you can use the save for web dialog to export your image as a png or jpg to use on those sites.

  • How can i compress a file to QT for web use?

    how can i compress a file to QT for web use?

    Shane, in the ProApps site, has a couple of applets (droplets?) that have the settings for doing just that.
    www.proapptips.com
    register (its free) and then head to the download section.
    cheers,
    x

  • Have been trying all weekend to upload Jpegs- either Send does not work or shows files uploading then shows error- never had this problem with Send Now-16 images total size 92MB-largest image 13MB

    Have been trying all weekend to upload Jpegs- either Send does not work or shows files uploading then shows error- never had this problem with Send Now-16 images total size 92MB-largest image 13MB

    Hi Ciaran19,
    Are you sending files from the Adobe Send interface, Adobe Reader, or the Outlook plug-in?
    Have you checked to see whether the files that you're sending appear in the Recent Files/Sent Files list when you're logged on to https://cloud.acrobat.com? (It could be that they're uploading, but not being sent.)
    It would also be worthwhile to send the files in smaller batches, to see whether a particular file or files is problematic, and causing the error.
    Please let us know how it goes. If you're still having trouble, please let us know where you're sending from, and whether you're able to send the files in smaller batches. It would also be helpful to know the exact error message that you're receiving.
    Best,
    Sara

  • I can't get the file attachment in a web form to work

    I have a web form made in Business Catalyst that I'm having some problems with. I have added a file attachment option, but I can't get this to work properly.
    When a user chooses a file and sends the form, the message that is being sent includes the name of the file that was attached, but not the file itself! What am I doing wrong?
    This is the web form (in Norwegian, but you get the idea of where the file upload is) In this form, the file "produktark_plusstjenester.pdf" has been attached.
    The e-mail that is being sent now looks like this (I have removed the private information). But as you can see, it mentions the file produktark_plusstjenester.pdf (94,45 kb), but it is not attached in the e-mail itself.
    Hope someone can clarify this for me

    File on web forms is attached to the case. Go to the case in the admin and you can retrieve the file.

  • How do we customize the default CKEditor for Web Form Editor in UCM 10gR3?

    Our customers are using the Web Form Editor for some WYSIWYG changes. The form has too many options and they would like to limit what the users can do. We have attempted to make changes to the following files to customize the CKEditor for Web Form Editor and cannot see our changes reflected after saving/restarting Content Server.
    Instance\weblayout\webform\ckeditor\config.js
    Instance\weblayout\resources\wcm\3rdparty\fckeditor\fckconfig.js
    Instance\custom\FCKEditor\webform\ckeditor\config.js
    To test a simple change we tried adding the following to change the toolbar options.
    CKEDITOR.editorConfig = function( config )
    config.toolbar = 'MyToolbar';
    config.toolbar_MyToolbar =
    ['NewPage','Preview'],
    ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Scayt'],
    ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
    ['Image','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
    ['Styles','Format'],
    ['Bold','Italic','Strike'],
    ['NumberedList','BulletedList','-','Outdent','Indent'],
    ['Link','Unlink','Anchor'],
    ['Maximize','-','About']
    There isn't much standard documentation on this out of the box feature and I've searched Oracle Support with no luck.
    Content Server 10gR3 (10.1.3.5.1)
    FCKEditor 2010_12_18 ($Rev: 90491 $) br-10g-10.1.3.5-release
    CS10gR35UpdateBundle 2011_02_08 (build 93)
    Thanks,
    Angela

    Posting the answer:
    You need to make the changes to the webforms component inside the ~\custom\FormEditor\templates\fe_config.js file. Then propagate your changes using the Administration > Actions > Publish layout files page.
    One more quick question - where do we limit the Styles, Fonts, Sizes, Colors?
    in the same file we added lines similar to the following to limit the fonts,
    styles....
    CKEDITOR.config.font_names = 'Arial;Times New Roman;Verdana';
    CKEDITOR.config.fontSize_sizes = '16/16px;24/24px;48/48px;';

  • URG: Blank Screen for Web Forms

    Hi Friends,
    I deployed all my forms on web recently I configured them to open in a separate frame .
    My problem is now when I click on the link for Web forms it opens a new window "Oracle Developer Forms Runtime" --Title with a blank screen. If we resize the window manually then it will launch the application.
    Previously it was working fine.
    configuration : DEV6.0
    OAS 4.07
    JINITIATER: 1.1.7.18
    CLIENTS WIN95 with Netscape 4.7 browsers
    HTML:
    <EMBED
    type="application/x-jinit-applet;version=1.1.7.18"
    java_CODE="oracle.forms.engine.Main"
    java_CODEBASE="Java"
    java_ARCHIVE="f60all.jar"
    WIDTH="400"
    HEIGHT="400"
    lookAndFeel="oracle"
    colorScheme="blue"
    serverPort="9000"
    serverHost="rsforms.dcr.net"
    background="no"
    splashScreen="no"
    separateFrame="true"
    serverArgs="module=J:\Webforms\dcr_LOG21.fmx userid=payroll_dba/[email protected] "
    serverApp="Default"
    pluginspage="http://dcr.net:8887/Java/jinit_download.htm">
    <NOEMBED>
    </COMMENT>
    </NOEMBED></EMBED>
    Any help...?
    Thanks in Advance
    Smita T

    For me <param name="splashScreen" value="no"> worked fine.
    jeff rahr (guest) wrote:
    : theo korol (guest) wrote:
    : : I am following the release notes for dev 6.0 that say that
    you
    : : can replace the splashscreen that comes up with your own by
    : : specifying
    : : <param name="splashScreen" value="custom.gif">
    : : in the html
    : : no luck, I can't remove it by specifying value="no"
    : : either, any one else have this problem?
    : : thanks
    : I was having a similar problem until I moved the gif file from
    : the directory specified as the icon directory in the
    registry.dat
    : file to the same directory as the html file.
    null

  • Message box for web form

    I am trying to create a new C# web application. I need the message box and confirmation message box for my application. I knew there is no such control for web forms. I created a script string and registered it by using ScriptManager.RegisterStartupScript(Button1,
    Button1.GetType(), "key", javascriptStr, false). Unfortunately the message box won't pop up when i click the button first, it will pop up when i click it on the second time.
    I really don't know what is wrong.
    Thank you in advance,

    Hello yangyangxiaohui,
    If you post your question in
    ASP.NET forums, you'll get more valuable answers.
    Please open up a new thread there, thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Modifying the appearance of the search box, the search button, and the submit button for web forms

    I'm trying to modify the appearance of the search box, the search button, and the submit button for web forms by modifying the CSS on Stylesheets. None of the tags I'm using (e.g. .webform .cat_button) seem to be working. What are the correct tags for those three elements?

    When you generate the help you can select / deselect the buttons that are displayed.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Need help for file upload - reposted for Steve Muench

    Hi Steve,
    I have been involved developing a web application that requires a file upload operation. I have studied your example on Upload Text File and Image Example in the Not Yet Documented ADF Sample Applications section. I got the file upload part worked but could not get the original file name to populate the name field..i.e. if I upload myFile.txt to the database, the name field will be myFile.txt (not the name enter by user). Is there a way to capture the filename info? or is it possible to do so within ADF framework? I am using ADF/Struts/JSP with ORDDoc data type. Thanks very much.
    Bill

    Hello Nani,
    You need to change any settings in 'FILE' transaction. This transaction is used to set up Logical file paths. ( In general it will be set already for your system).
    You can use the following code.
      DATA: LC_LOGICAL_FILENAME_EXPSRC LIKE RCGIEDIAL-IEFILE
                                                    VALUE 'EHS_IMP_SOURCES'.
      DATA:      L_EMERGENCY_FLAG            TYPE C.
      DATA:      L_FILE_FORMAT               LIKE FILENAME-FILEFORMAT.
      data : X_RCGIEDIAL LIKE  RCGIEDIAL occurs 0 with HEADER LINE.
      read the default pathname on application server
        CALL FUNCTION 'FILE_GET_NAME'
             EXPORTING
                CLIENT                  = SY-MANDT
                  LOGICAL_FILENAME        = LC_LOGICAL_FILENAME_EXPSRC
                  OPERATING_SYSTEM        = SY-OPSYS
                parameter_1             = ' '
                PARAMETER_2             = ' '
                USE_PRESENTATION_SERVER = ' '
                WITH_FILE_EXTENSION     = ' '
                USE_BUFFER              = ' '
             IMPORTING
                  EMERGENCY_FLAG          = L_EMERGENCY_FLAG
                  FILE_FORMAT             = L_FILE_FORMAT
                  FILE_NAME               = X_RCGIEDIAL-IEFILE
             EXCEPTIONS
                  FILE_NOT_FOUND          = 1
                  OTHERS                  = 2.
        write :/ 'file format', L_FILE_FORMAT,
               / 'file name', X_RCGIEDIAL-IEFILE.
    Thanks,
    Jyothi

Maybe you are looking for

  • How can I get quicktime to work on a PC?

    I have a website with quicktime videos downloaded. They were working last week, and they are still working when I access the site through chrome on a mac.  However, they are not working through chrome, IE, or firefox this week on my pc.  We have upda

  • Problem with updater Director 12

    I can't update Director 12 with the new correctif 2 under MacOs X 10.6.8. The process stops at 50% and prompted me to stop DirectoryService ... Where is the problem ?

  • Updating FREE version of iPhoto to work with Leopard?

    Recently upgraded our iBook G4 to Leopard. Now, the System says iPhoto 2.04 (free version) won't work with Leopard. None of the iPhoto upgrades avalable (4, 5, 6) work as upgrades. In the iPhoto discussion, others said the only option is to PAY for i

  • Thunderbolt display not working with bootcamp and windows 7

    I am running a late 2013 MBP Retina display with a Thuderbolt monitor. I am running windows 7 on a dual boot partition. I can not get my thunderbolt display to work while working in windows. The screen is currently black. I have attempted to follow t

  • Problem to create a msi using Adobe customization wizard

    Hi, I am a NATO engineer in charge for testing all kind of patches. We are creating a transformation file and pack it into an msi for a network distribution using your Adobe Customization wizard. Eventhough, the mst file is correctly created changes