Re: URGENT: LOAD.ASHX CAUSES MAJOR ISSUES WITH LOAD BALANCER

  •  01-19-2012, 7:10 PM

    Re: URGENT: LOAD.ASHX CAUSES MAJOR ISSUES WITH LOAD BALANCER

    HI,
     
    I am very sorry that these days I didn't back and check this post .
     
    Here is the previous logic :
     
    if( header contains IF-MODIFIED-SINCE )
    {
         Send304NotModified();
         Response.End();
         return;
    }
    ContinueToSendFileData();
     
     
    and here is the curent logic :
     
    if( header contains IF-MODIFIED-SINCE )
    {
        if( app-settings CuteEditorIgnore304 != "True" )
        {
             Send304NotModified();
             Response.End();
             return;
        }
    }
    ContinueToSendFileData();
     
     
    --
    I think the Send304NotModified() have bug that it didn't send enough response headers as you said .
     
    But as you can use CuteEditorIgnore304 to skip that bug code , So you can get avoid that bug .

    These days we are busy on the CuteEditor7 development . So we haven't scheduled to fix it yet.
     
    If you still want the server send 304 header , please let's know , we will try to fix it .
     
    Regards,
    Terry
     
     
View Complete Thread