zoukankan      html  css  js  c++  java
  • [Resolved] Chunked HTTP/1.1 POST request support

    [Resolved] Chunked HTTP/1.1 POST request support - LiteSpeed Support Forums

    [Resolved] Chunked HTTP/1.1 POST request support - LiteSpeed Support Forums

    Sample chunked POST request:

    Code:

    POST /test.php HTTP/1.1
    User-Agent: Profile/MIDP-2.0 Configuration/CLDC-1.1
    Host: 127.0.0.1
    Transfer-Encoding: chunked
    
    6
    Hello_
    5
    World
    0

    // after last '0' there are two times CRLF, so the last 5 bytes are: 0x30, 0x0D, 0x0A, 0x0D, 0x0A

    Above request is attached as text file to this post.



    And here is the test.php:

    PHP Code:



    <?php

        $in 
    fopen('php://input''r');

        
    $text fread($in100);

        
    $size strlen($text);

        echo 
    "Text: $text<br/>";

        echo 
    "Size: $size<br/>";    

    ?>


    On Apache 2.2.11 it gives following response:

    Code:

    HTTP/1.1 200 OK
    Date: Sun, 27 Jun 2010 22:04:27 GMT
    Server: Apache/2.2.11 (Win32) PHP/5.3.0
    X-Powered-By: PHP/5.3.0
    Content-Length: 38
    Content-Type: text/html
    
    Text: Hello_World<br/>Size: 11<br/>

    I also tested this POST request on Tomcat and Jetty - works perfectly - we recive request with its content.

    (When testing it on Apache or other servers - remember not to use any proxies like Squid, cause they usually also don't support chunked POSTs).



    Unfortunetly, on LSWS the PHP $text variable leaves empty:

    Code:

    HTTP/1.1 200 OK
    Date: Sun, 27 Jun 2010 22:02:54 GMT
    Server: LiteSpeed
    Connection: close
    X-Powered-By: PHP/5.2.8
    Content-Type: text/html
    Content-Length: 26
    
    Text: <br/>Size: 0<br/>

    No data is read from "php://input". The strange thing is LSWS doesn't abort request at the begining by returing some 4xx or 5xx error - not at all. LSWS accepts the request, passes it to PHP file but drops posted content. The retured code is HTTP 200.

    All seems to be perfect but we cannot access chunked request body from PHP file.



    Such requests as above are produced by major part of today mobile devices when POST-ing large data (above 5 KB). So now, using LSWS server we cannot upload files to server from large number of mobile phones.

  • 相关阅读:
    Linux 命令ln
    基于ifix组态软件研究控制按钮权限
    Linux sar 性能监控命令
    使用Oracle执行计划分析SQL性能
    谈谈解决问题的思路
    MySQL技术内幕:InnoDB存储引擎 pdf下载
    算法笔记 pdf下载
    Python最佳代码实践:性能、内存和可用性!
    利用Python进行数据分析 pdf下载
    主流 NoSQL 数据库常见应用场景详解
  • 原文地址:https://www.cnblogs.com/lexus/p/2391822.html
Copyright © 2011-2022 走看看