2016-11-23 176 views
1

在我的脚本中,我创建了一个小而简单的REST客户端。脚本本身就是一个原型,因此代码不是“值得生产” - 所以忽略懒表达式等等。GlassFish 3 - 400 GET/POST/PUT/DELETE上的错误请求

有两种类型的服务器包含我从中获取数据的REST服务; WildFly 8.2.0或GlassFish 3.1.2.2。这里的问题是:我的REST客户端在从Wildfly服务器获取数据时工作正常,但对于任何请求,GlassFish服务器都会返回HTTP 400错误请求

我可以通过Web浏览器访问两台服务器的REST服务,所以我知道它们都能正常工作。我甚至可以通过一个套接字连接到两台服务器,然后用正确的数据进行响应。

因此,GlassFish不接受请求的原因是什么? (用于测试)

import java.net.Socket; 

Socket s = new Socket("localhost", 8080); 
String t = "GET /rest/appointment/appointments/search/?fromDate=2016-11-21&branchId=3 HTTP/1.1\nhost: localhost:8080\nAuthorization: Basic base64encodedUsername:PasswordHere\n\n" 
OutputStream out = s.getOutputStream(); 
out.write(t.getBytes()); 

InputStream inn = s.getInputStream(); 
Scanner scan = new Scanner(inn); 
String line; 
while ((line = scan.nextLine()) != null) { 
    println line; 
} 
s.close(); 

REST客户端代码

Socket连接:

import groovy.json.JsonSlurper; 
import javax.xml.bind.DatatypeConverter; 


/* 
REST-client (a very simple one) 
*/ 
public class RESTclient { 
    public static Object get(URL url, Map<String, String> headers) { 
    return http(url, "GET", null, headers); 
    } 
    public static Object post(URL url, String data, Map<String, String> headers) { 
    return http(url, "POST", data, headers); 
    } 

    public static Object put(URL url, String data, Map<String, String> headers) { 
    return http(url, "PUT", data, headers); 
    } 

    public static Object delete(URL url, String data, Map<String, String> headers) { 
    return http(url, "DELETE", data, headers); 
    } 

    private static Object http(URL url, String method, String data, Map<String, String> headers) { 
    HttpURLConnection connection = (HttpURLConnection) url.openConnection(); 
    Authenticator.setDefault(new Authenticator() { 
     protected PasswordAuthentication getPasswordAuthentication() { 
     return new PasswordAuthentication("username", "password".toCharArray()); 
     } 
    }); 
    connection.setRequestMethod(method); 

    for (String header : headers.keySet()) { 
     connection.setRequestProperty(header, headers.get(header)); 
    } 

    if (data != null) { 
     connection.setRequestProperty("Content-Type", "application/json"); 
     connection.setDoOutput(true); 
     OutputStream outputStream =connection.getOutputStream(); 
     outputStream.write(data.getBytes()); 
    } 

    int responseCode = connection.getResponseCode(); 
    switch (responseCode) { 
     case HttpURLConnection.HTTP_NO_CONTENT: 
     // This happens when the server doesn't give back content, but all was ok. 
     return (new HashMap()); 
     case HttpURLConnection.HTTP_OK: 
     InputStream inputStream = connection.getInputStream(); 
     BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); 
     String response = reader.readLine(); 

     JsonSlurper parser = new JsonSlurper(); 
     Object jsonResponse = parser.parseText(response); // This can be either a List or a Map 
     // Close the connection 
     try { connection.close(); } catch (Exception e) { /* Already closed */ } 
     return jsonResponse; 
     default: 
     println "response code: " + responseCode; 
     println connection.getResponseMessage(); 
     println connection.getHeaderFields(); 
     // Close the connection 
     try { connection.close(); } catch (Exception e) { /* Already closed */ } 
     return null; 
    } 
    } 
} 

用法:

URL appointmentSearchURL = new URL("http://localhost:8080/rest/appointment/appointments/search/?fromDate=2016-11-21&branchId=3"); 
Object response = RESTclient.get(appointmentSearchURL, new HashMap<String, String>()); 
println response; 

所有这一切都打印出来:

response code: 400 
Bad Request 
[null:[HTTP/1.1 400 Bad Request], Server:[GlassFish Server Open Source Edition 3.1.2.2], Connection:[close], Set-Cookie:[rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 22-Nov-2016 08:43:29 GMT, SSOcookie=2a86cf4b-a772-435a-b92e-f12845dc20a2; Path=/; HttpOnly], Content-Length:[1090], Date:[Wed, 23 Nov 2016 08:43:28 GMT], Content-Type:[text/html], X-Powered-By:[Servlet/3.0 JSP/2.2 (GlassFish Server Open Source Edition 3.1.2.2 Java/Oracle Corporation/1.7)]] 
null 

回答

0

我找到了我的答案!所以,如果以后有任何其他绊倒在同一个问题,我将在这里留下:

有一个缺少的接受头,我猜服务器端只接受json的内容。我还没有进一步研究为什么WildFly服务器不响应400错误的请求,但我猜想WildFly会尝试猜测/推断传入的数据。

connection.setRequestProperty("Accept", "application/json"); 

因此整个问题是通过添加以下解析