获取HTTP 406中的Android Web服务调用(Getting HTTP 406 in An

2019-09-03 01:11发布

我得到406当我通过机器人application.Can调用REST Web服务的任何一个建议我什么是这个代码中的错误,为什么我收到此错误?

REST Web服务

@RequestMapping(value="/mainreservationChartPost", method = RequestMethod.POST)
    public @ResponseBody ModelMap getMRChartDataPOST(@ModelAttribute ("ReservationSummaryRQDTO") ReservationSummaryRQDTO search){

        ReservationSummaryDTO returnDataDTO = new ReservationSummaryDTO();

        MainReservationChartWSImpl wsImpl = MRWSUtil.getInstance().getWS_ServicePort();

        search.setHotelCode("BBH");
        search.setReportDate(toXmlDateGMT(new Date()));

        returnDataDTO = wsImpl.getReservationSummary(search);

        ModelMap model = new ModelMap();
        model.put("reservations", returnDataDTO);

        return model;

    }

Android的代码

public static String POST(String url, ArrayList<NameValuePair> parameter)
            throws Exception {
        BufferedReader in = null;
        try {

            DefaultHttpClient httpclient = new DefaultHttpClient();

            HttpPost httpost = new HttpPost(url);
            httpost.setHeader("Accept", "application*/*");
            httpost.setHeader("Content-type",
                    "application/x-www-form-urlencoded");
            httpost.setEntity(new UrlEncodedFormEntity(parameter, "utf-8"));
            HttpResponse response = httpclient.execute(httpost);

            in = new BufferedReader(new InputStreamReader(response.getEntity()
                    .getContent()));
            StringBuffer sb = new StringBuffer("");
            String line = "";
            String NL = System.getProperty("line.separator");
            while ((line = in.readLine()) != null) {
                sb.append(line + NL);
            }
            in.close();
            String result = sb.toString();
            return result;

        } finally {
            if (in != null) {
                try {
                    in.close();
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }
    }



@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


        ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
        nameValuePairs.add(new BasicNameValuePair("hotelCode","BBH"));
        //nameValuePairs.add(new BasicNameValuePair("reportDate","10-MAY-2013"));


     //String response=hcc.executeHttpPost("http://10.2.241.137/ua_dat/rnd/senddata.php", nameValuePairs);
         try { 
            String response=HttpCustomClient.POST("http://10.2.241.33/MRChartService/mainreservationChart.html", nameValuePairs);



        } catch (Exception e) {
            Log.d("error", e.getMessage().toString()); 
        }




    }

任何一个可以建议如何解决这个..? 在此代码中的任何错误,因为我得到一个406错误...

Answer 1:

406指所请求中请求的接受报头数据的类型和由服务器返回的类型不匹配。 要么改变你接受的类型或改变你的回报MIME类型。



Answer 2:

该错误是不能接受的。

从字面上看。

下面是一些关于它的资料 :

这通常意味着服务无法识别的格式发送的东西还给你。 这可能是一种错误的数据,或头可能只是被搞砸了。 你应该尝试使用数据包嗅探器像Wireshark的,看看有什么是越来越送回。 此外,这可能是因为你只需要指定的内容类型。

如果你正在做的web服务调用,可你从来没有使用数据包嗅探器,这将是一个伟大的想法,找出如何做到这一点。



Answer 3:

406是由服务器返回时,它不能响应基于接受请求标题(即他们有一个接受标头,指出他们只希望XML)。 检查Accept头中来自服务器的响应,并适当地发送数据。



文章来源: Getting HTTP 406 in Android Webservice Call