1

こんにちは、私はrestFul Webサービスを使用してサービスを公開していますサーバー側のコードは

@RequestMapping(value = "/getPerson", method = RequestMethod.POST) public ModelAndView getPerson(@RequestParam("inputXml") String inputXml) {
------------------- ------ --------------------------------
} return new ModelAndView("userXmlView", BindingResult.MODEL_KEY_PREFIX + String.class 、 "テスト"); }

クライアント側の実装は次のとおりです。

        URL oracle = new URL("http://localhost:8081/testWeb/restServices/getPerson?inputXml=input");
         System.out.println("Oracle URl is "+oracle);
         HttpURLConnection connection = (HttpURLConnection)oracle.openConnection();
         connection.setDoOutput(true);
        connection.setRequestProperty("Content-type", "application/xml; charset:ISO-8859-1");
        connection.setRequestMethod("POST");
        BufferedReader in = new BufferedReader(new InputStreamReader(
                connection.getInputStream()));
        String inputLine;
       while ((inputLine = in.readLine()) != null) 
            System.out.println(inputLine);  
     in.close(); 

URLを使用してサービスにアクセスできます http://localhost:8081/testWeb/restServices/getPerson?inputXml="input" 実際に私の要件は、このような入力としてxml文字列を渡す必要があることです

http://localhost:8081/testWeb/restServices/getPerson?inputXml="<?xml%20version="1.0"%20encoding="UTF-8"%20standalone="yes"?><product><code>WI1</code><name>Widget%20Number%20One</name><price>300.0</price></product>"

解決策を見つけるのを手伝ってください

4

2 に答える 2

0

RestAssuredを見てください

given().
       formParam("formParamName", "value1").
       queryParam("queryParamName", "value2").
when().
       post("/something");

または春のRestTemplate

Map<String, String> vars = new HashMap<String, String>();
vars.put("count", "5");
restTemplate.getForObject(person, Person.class, vars);
于 2012-12-05T11:32:25.453 に答える
0

Maya/getPersonは RESTful URI 名ではありません。代わりに次のようなものを使用する必要があります/person。そうすれば、HTTP を使用してGETそれまたはそれを行うことができます。DELETE

于 2012-12-05T11:26:02.587 に答える