我正在尝试对发回简单XML响应的本地ReST服务进行POST调用。
我收回了这个错误:
java.io.IOException: Unsupported Media Type
at com.eric.RawTestPOST.httpPost(RawTestPOST.java:42)
at com.eric.RawTestPOST.main(RawTestPOST.java:66)
我正在关注此示例:Link
这是我的代码:
public class RawTestPOST {
public static String httpPost(String urlStr, String method,
String parameter, String parameterValue) throws Exception {
URL url = new URL(urlStr);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setDoOutput(true);
conn.setDoInput(true);
conn.setUseCaches(false);
conn.setAllowUserInteraction(false);
conn.setRequestProperty("Content-Type",
"application/x-www-form-urlencoded");
// Create the form content
OutputStream out = conn.getOutputStream();
Writer writer = new OutputStreamWriter(out, "UTF-8");
/* for (int i = 0; i < string.length; i++) { */
writer.write(method);
writer.write("?");
writer.write(parameter);
writer.write("=");
writer.write(URLEncoder.encode(parameterValue, "UTF-8"));
writer.write("&");
/* } */
writer.close();
out.close();
if (conn.getResponseCode() != 200) {
throw new IOException(conn.getResponseMessage());
}
// Buffer the result into a string
BufferedReader rd = new BufferedReader(new InputStreamReader(conn
.getInputStream()));
StringBuilder sb = new StringBuilder();
String line;
while ((line = rd.readLine()) != null) {
sb.append(line);
}
rd.close();
conn.disconnect();
return sb.toString();
}
public static void main(String[] args) {
String url = "http://localhost:9082/ServicesWSRest/";
String method = "getResponse";
String parameter = "empID";
String parameterValue = "954";
try {
System.out.println(RawTestPOST.httpPost(url, method, parameter,
parameterValue));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
参数不重要。 XML响应只返回发送的参数。
我可以使用GET请求。
如果您需要更多信息,请告诉我。
谢谢, ë
答案 0 :(得分:1)
不支持的媒体类型表示您发布到Web服务的表示形式的媒体类型('application / x-www-form-urlencoded')不是Web服务支持的媒体类型。我猜测Web服务期待“application / xml”表示。这一切都取决于你正在谈论的网络应用程序。