集美阅读大全是一个以文章句子为主题的在线阅读网站。内含有各种经典好文章,爱情美文,诗歌散文,情感句子说说,范文资料等。读好文章,尽在集美阅读大全!!!
当前位置:集美阅读大全 >杂文 > 正文

httpclient.execute(httpPost); 报错 org.apache.http.NoHttpResponseException: The target server failed to respond

代理机器地址:10.23.21.1:8080 

应用地址:10.23.1.2:8019

private String httpSend(String url,String xml) throws Exception {     log.info("开始请求" + url);     HttpPost httpPost = new HttpPost(url); // 建立连接,需修改IP地址     //设置客户超时     RequestConfig defaultRequestConfig = RequestConfig.custom()           .setSocketTimeout(Integer.valueOf(ConfigVars.getBusiInfoProperty("ConnectTimeout")))           .setConnectTimeout(Integer.valueOf(ConfigVars.getBusiInfoProperty("SocketTimeout")))           .setConnectionRequestTimeout(Integer.valueOf(ConfigVars.getBusiInfoProperty("ConnectionRequestTimeout")))           .setStaleConnectionCheckEnabled(true)           .build();     //设置服务端     RequestConfig requestConfig = RequestConfig.copy(defaultRequestConfig).build();     String proxyState = ConfigVars.getBusiInfoProperty("proxyState");     //判断是否需要代理     if (StringUtil.isNotEmpty(ConfigVars.getBusiInfoProperty("proxyState")) && proxyState.equals("true")) {        HttpHost proxy = new HttpHost(ConfigVars.getBusiInfoProperty("proxyIp"), Integer.parseInt(ConfigVars.getBusiInfoProperty("proxyPort")));        defaultRequestConfig = RequestConfig.copy(defaultRequestConfig).setProxy(proxy).build();        requestConfig = RequestConfig.copy(requestConfig).setProxy(proxy).build();     }     httpPost.setConfig(requestConfig);     CloseableHttpClient httpclient = null;     httpclient = HttpClients.custom().setDefaultRequestConfig(defaultRequestConfig).build();     CloseableHttpResponse response = null;     List<NameValuePair> formparams = new ArrayList<NameValuePair>();     log.info("请求报文:"+xml);     formparams.add(new BasicNameValuePair("xml",xml));     UrlEncodedFormEntity uefEntity = null;     uefEntity = new UrlEncodedFormEntity(formparams, "UTF-8");     httpPost.setEntity(uefEntity);     log.info("开始执行exexcute");     response = httpclient.execute(httpPost);     log.info("执行exexcute--完毕");     HttpEntity entity = response.getEntity();     log.info("获得entity"+entity);     String result =  EntityUtils.toString(entity, "UTF-8");     EntityUtils.consume(entity);     return result;  }

nginx配置:

user  root;
worker_processes  auto;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;

events {
    worker_connections  102400;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    log_format  main  ‘$remote_addr – $remote_user [$time_local] “$request” ‘
                      ‘$status $body_bytes_sent “$http_referer” ‘
                      ‘”$http_user_agent” “$http_x_forwarded_for”‘;

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;
   
   upstream sss {
        server 101.3.20.116:9080;
    }

    server {
        listen       8080;
        server_name  10.23.21.1;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

       location / {
            proxy_pass http://sss;
            proxy_set_header Host $host:8080;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_buffer_size   128k;
            proxy_buffers   4 256k;
            proxy_busy_buffers_size   256k;
       }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ .php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ .php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache’s document root
        # concurs with nginx’s one
        #
        #location ~ /.ht {
        #    deny  all;
        #}
    }

}
 

当执行; response = httpclient.execute(httpPost),会报错提示:org.apache.http.NoHttpResponseException: The target server failed to respond:

httpclient.execute(httpPost); 报错 org.apache.http.NoHttpResponseException: The target server failed to respond

当执行

httpclient.execute(httpGet)请求会响应成功,但是服务器不允许get请求,必须是post请求

想问一下,这个问题出现的原因是什么??

您可能感兴趣的文章

  • nginx报错:WSARecv() failed (10054: An existing connection…
  • centos6.5服务器安装Nginx设置服务和开机自启的方法
  • Linux+Nginx+MySQL下配置论坛程序Discuz的基本教程
  • Windows下Nginx的配置及配置文件部分介绍
  • nginx filter怎么配置?
  • php变量的引用问题
  • C# web程序关于使用wkhtmltopdf插件无法写入目标文件
  • 我太难了!想从 GitHub 上 clone 一个项目下来,失败了 3+1 次。。

未经允许不得转载:杂烩网 » httpclient.execute(httpPost); 报错 org.apache.http.NoHttpResponseException: The target server failed to respond

课后答案张九龄《望月怀远》阅读答案及全诗翻译赏析

望月怀远张九龄海上生明月,天涯共此时。情人怨遥夜,竟夕起相思。灭烛怜光满,披衣觉露滋。不堪盈手赠,还寝梦佳期。注释⑴怀远:怀念远方的亲人。⑵最前面两句:辽阔无边的大海上升起一轮明月,使人想起了远在天涯……
2023-11-22 04:53暂无评论阅读详情

课后答案王安石《次韵唐公三首其三旅思》阅读答案

次韵唐公三首其三旅思王安石此身南北老,愁见问征途。地大蟠三楚,天低入五湖。看云心共远,步月影同孤。慷慨秋风起,悲歌不为鲈②。注:①张壤,字唐公,北宋嘉佑六年契丹国母生辰使,王安石友人。②《晋书&mid……
2023-11-22 04:52暂无评论阅读详情

笔记心得各级干部学习执法为民心得体会

  &ldquo;各级干部都要牢固树立全心全意为人民服务的思想和真心实意对人民负责的精神,做到心里装着群众,凡事想着群众,工作依靠群众,一切为了群众。要坚持权为民所用,情为民所系,利为民所谋,为群众诚……
2023-11-22 04:12暂无评论阅读详情

笔记心得寒假大学生社会实践心得体会

  自从走进了大学,就业问题就似乎总是围绕在我们的身边,成了说不完的话题。在现今社会,招聘会上的大字报都总写着&ldquo;有经验者优先&rdquo;,可还在校园里面的我们这班学子社会经验又会拥有多少……
2023-11-22 04:08暂无评论阅读详情

协议书济南市某美容院转让协议第2篇

&nbsp;&nbsp;__________美容院根据中华人民共和国国务院劳动法规和________市私营企业劳动管理实施办法,结合本美容院经营的具体所需今制订此劳动合同书。&nbsp;&nbsp;双……
2023-11-22 02:36暂无评论阅读详情

剧本劳模宣传短剧剧本《阿咪也想当劳模》

  1、机械厂门卫处,日,外。  清早,机械厂班长李玉伟开着别克赛欧小汽车驶进厂区,门卫室内的保安一边按开电动门,一边朝李玉伟摆手。  李玉伟:(摇下车窗,笑着打招呼)小秦,早。  保安小秦:(笑着)……
2023-11-22 02:11暂无评论阅读详情

教程灰雀说课稿

灰雀说课稿  灰雀说课稿(一):  《灰雀》说课稿  一、说教材  《灰雀》是义务教育课程标准实验教科书,小学语文第五册第二单元的一篇讲读课文。这篇课文记叙了列宁在莫斯科郊外养病期间爱护灰雀的故事。列……
2023-11-22 00:41暂无评论阅读详情

课件“吴隐之字处默,濮阳鄄城人”阅读答案及原文

吴隐之字处默,濮阳鄄城人。美姿容,善谈论,博涉文史,以儒雅标名。弱冠而介立,有清操,虽儋石无储,不取非其道。事母孝谨,及其执丧,哀毁过礼。与太常韩康伯邻居,康伯母,贤明妇人也,每闻隐之哭声,辍餐投箸,……
2023-11-22 00:38暂无评论阅读详情

标签