普通网友 2015-12-26 22:28
浏览 298
已采纳

无法打开流:HTTP请求失败! 检测到HTTP / 1.1 508环路

I'm making a Php Webservice to read the OutputStream from a httpurlconnection. I have a android app that creates the httpurlconnection to the website and writes a json string to the OutputStream. Now I want to read/get that json with the Webservice. But I always get this error:

failed to open stream: HTTP request failed! HTTP/1.1 508 Loop Detected

I will give all the information about my application. If someone knows a better way to send and receive the data, always welcome!

My android application sends the data when there is an onclick event and then uses a AsyncTask. here's the code:

public void clickbuttonRecieve(View v) {
    MyAsync performBackgroundTask = new MyAsync();
    performBackgroundTask.execute();
}



protected Void doInBackground(Void... tmps) {
        try {
            // instantiate the URL object with the target URL of the resource to
            // request
            URL url = new URL("http://bomatec.be/webservice2.php");

            // instantiate the HttpURLConnection with the URL object - A new
            // connection is opened every time by calling the openConnection
            // method of the protocol handler for this URL.
            // 1. This is the point where the connection is opened.
            HttpURLConnection connection = (HttpURLConnection) url
                    .openConnection();
            // set connection output to true
            connection.setDoOutput(true);
            // instead of a GET, we're going to send using method="POST"
            connection.setRequestMethod("POST");

            // instantiate OutputStreamWriter using the output stream, returned
            // from getOutputStream, that writes to this connection.
            // 2. This is the point where you'll know if the connection was
            // successfully established. If an I/O error occurs while creating
            // the output stream, you'll see an IOException.
            OutputStreamWriter writer = new OutputStreamWriter(
                    connection.getOutputStream());

            // write data to the connection. This is data that you are sending
            // to the server
            // 3. No. Sending the data is conducted here. We established the
            // connection with getOutputStream
            JSONObject data = new JSONObject();
            data.put("user", "12");
            data.put("lat", "50.8");
            data.put("lng", "4.3");
            String json = data.toString();
            writer.write("json=" + json);

            // Closes this output stream and releases any system resources
            // associated with this stream. At this point, we've sent all the
            // data. Only the outputStream is closed at this point, not the
            // actual connection
            writer.close();
            // if there is a response code AND that response code is 200 OK, do
            // stuff in the first if block
            if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) {
                // OK

                // otherwise, if any other status code is returned, or no status
                // code is returned, do stuff in the else block
            } else {
                // Server returned HTTP error code.
            }
        } catch (MalformedURLException e) {
            e.printStackTrace();
            return null;
        } catch (IOException e) {
            e.printStackTrace();
            return null;
        } catch (JSONException e) {
            e.printStackTrace();
            return null;
        }
    }
}

My webservice app contains the following code :

header('Content-Type: application/json');
$json = file_get_contents('http://bomatec.be/webservice2.php?');
$obj = json_decode($json);
echo json_encode(array('json'=>$obj));
echo $json;

When I run the webserwice, example :

http://bomatec.be/webservice2.php?json={%22user_id%22:31,%22lat%22:50.78,%22lng%22:2}

I get following error :

{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}{"json":null}<br />
<b>Warning</b>:  file_get_contents(http://bomatec.be/webservice2.php?): failed to open stream: HTTP request failed! HTTP/1.1 508 Loop Detected
 in <b>/home/bomate1q/public_html/webservice2.php</b> on line <b>15</b><br />
{"json":null}

I don't know how to solve this. I lost myself in it.

  • 写回答

1条回答 默认 最新

  • dseax40600 2015-12-26 22:33
    关注

    Your error is self explanatory, you have a loop and this is a problem on server and has nothing to do with client (android part). In your php you are requesting script:

    $json = file_get_contents('http://bomatec.be/webservice2.php?');
    

    in recursive manner. To get json send to your script from android use:

    $json = file_get_contents('php://input');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)