使用Java客户端使用c# REST服务
本文关键字:REST 服务 Java 客户端 使用 | 更新日期: 2023-09-27 18:18:27
我有以下c# REST服务定义
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "books/{isbn}")]
void CreateBook(string isbn, Book book);
我想从Java客户端使用这个服务。
String detail = "<Book><Autor>" + autor + "</Autor><ISBN>" + isbn + "</ISBN><Jahr>" + jahr + "</Jahr><Titel>" + titel + "</Titel></Book>";
URL urlP = new URL("http://localhost:18015/BookRestService.svc/books/" + isbn);
HttpURLConnection connectionP = (HttpURLConnection) urlP.openConnection();
connectionP.setReadTimeout(15*1000);
connectionP.setConnectTimeout(15*1000);
connectionP.setRequestMethod("POST");
connectionP.setDoOutput(true);
connectionP.setRequestProperty("Content-Type", "application/xml");
connectionP.setRequestProperty("Content-Length", Integer.toString( detail.length() ));
OutputStream os = connectionP.getOutputStream();
PrintWriter pw = new PrintWriter(new OutputStreamWriter(os));
pw.println(detail);
pw.flush();
pw.close();
int retc = connectionP.getResponseCode();
connectionP.disconnect();
服务返回400给我的Java客户端。当从c#客户端调用时,同样的服务可以正常工作。
我认为你写流的方式可能是原因,试试这个:
connectionP.setDoOutput(true);
DataOutputStream out = new DataOutputStream(connectionP.getOutputStream());
out.writeBytes(detail);
out.flush();
out.close();
在您的服务器代码中,您使用UriTemplate = "books/{isbn}
作为URI模板,但您的客户端代码将URI指定为"http://localhost:18015/BookRestService.svc/booksplain/" + isbn
。
也许你只需要改变Java代码中的URI来反映服务器的URI,例如"books"而不是"booksplain""http://localhost:18015/BookRestService.svc/books/" + isbn
。
同样,如果你想让你的代码更干净、更简洁,可以考虑使用Spring RestTemplate来调用REST API。