こんにちは、私は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>"
解決策を見つけるのを手伝ってください