Bug Report B201874
Visible to All Users
Duplicate

We have closed this ticket because another page addresses its subject:

ASPxUploadControl - Advanced Mode - support web farms, web gardens

UploadControl - upload progress does not work in .NET Framework 4, web farm support

created 14 years ago

Hi,
The MVC upload progress do not update the progress percentage when RUN IN IIS.
You can see the behavior using your demo
http://mvc.devexpress.com/UploadControl/Callbacks
The problem DO NOT occur with the ASPX demo.
http://demos.devexpress.com/ASPxperienceDemos/UploadControl/Example.aspx
The MVC demo run fine on my local machine using the Visual studio development server. The demo do not run correctly when I configure the application to run in IIS.
It seems that the handler execute but the return status is always EMPTY_STATUS (<status empty='true'></status>)
Thanks

Show previous comments (5)
DevExpress Support Team 14 years ago

    Hello Martin:
    Please accept my apologies for the delay in responding. This issue is reproduced with your example, and I passed it to our developers for more detailed research. I will keep you informed of any progress.
    Thanks
    Kate.

    DevExpress Support Team 14 years ago

      Hello Martin:
      Please accept my apologies for the huge delay in responding. We have made additional tests and found that basically the control works as expected, however there are additional factors that may affect progressing:

      1. In case of MVC UploadControl, this feature works in .NET Framework 4 only. Previous versions do not allow uploading files correctly and we are not able to avoid it. Thus, our online demo does not show progressing since it is started under .NET Framework 3.5
      2. UploadControl starts to collect progress information after a delay (700ms). If you start your project locally and try to upload a small file, this file will be uploaded very quickly, so you do not see progress.
      3. A test project should fail on the IIS due to the ASPxUploadProgressHttpHandler registration. It is recommended to allow both GET and POST requests as it is described in the following document:
        Upload Control HTTP Handler
        Attached is a video that illustrates how your sample works on our side. Please try to adjust your project with settings illustrated in this video and try to redeploy it on the server.
        If these settings do not help, please reactivate this ticket. If you have a possibility to publish an original problematic project, please provide it. Maybe, there are some additional factors that affect UploadControl.
        Thanks
        Kate.

        Hi,
        Modifying the web.config to add the security element corrected my development issue.
        In our production environment, the problem remains.
        After looking trough your code, I have found that some come make it not possible to work in a webfarm environment.
        The following lines are the issue
        From the UploadProgressManager class:
        public static void SetStatus(string uploadKey, UploadProgressStatus status) {
                       HttpContext.Current.Application[RenderUtils.ProgressHandlerKeyQueryParamName + uploadKey] = status;
                  }
                  public static UploadProgressStatus GetStatus(string uploadKey) {
                       return HttpContext.Current.Application[RenderUtils.ProgressHandlerKeyQueryParamName + uploadKey] as UploadProgressStatus;
                  }
        Since you are using the "Application" object to cache the progress, there is no way that will work in an non-sticky load balanced environment.
        Why not using the "Session" object instead??? Or maybe give an option to use either one.
        I could have "override" some methods in you code but since almost all method use in the process are static, I can't.
        Any idea?
        Thanks

        Answers

        created 14 years ago

        Hello Martin:
        Yes, it is a limitation in our control that does not allow it to work in a web farm environment. However, Session is not an appropriate solution in this case since it does not allow parallel requests, so the progress feature will also be broken.
        We have found a workaround for this problem with the client affinity feature. It is described in the following discussion:
        http://stackoverflow.com/questions/866108/how-to-keep-user-requests-on-the-same-server-when-using-iis-nlb
        In case of an enabled client affinity, all TCP connections are directed to the same cluster host, so the SetStatus method should start to work as expected.
        Thanks
        Kate.

          Show previous comments (1)
          DevExpress Support Team 14 years ago

            Hi Martin:
            Thank you for the detailed explanation. Although the idea of utilizing an arbitrary data store sounds feasible, it is unlikely that we will support it in the near future. I want to be fair to you with this. We do not refuse your suggestion, but the number of scenarios when it may/should be used is low. Therefore, we decided not to change the current implementation. However, we will possibly re-consider our position if we receive further inquiries regarding this functionality. For now, I recommend that you follow recommendations from my previous posts, as a workaround.
            Your understanding is appreciated.
            Thanks
            Kate.

              Thanks

              Serge (DevExpress Support) 13 years ago

                Hi Martin,
                I think you will be interested to know that we are planning to improve the functionality of our UploadControl (both for WebForms and MVC extensions) in the context of a newly created suggestion:
                  ID: Q367420 (ASPxUploadControl - Advanced Mode - support web farms, web gardens)
                Regards,
                Serge

                Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

                Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.