使用Java发布请求返回错误400

时间:2019-12-13 13:05:07

标签: java rest kofax

我真的看不出我的Java代码在哪里。 我必须使用REST API登录到Kofax Total Agility。为此,我尝试使用邮差测试我的json是否正确构建。这是我的登录JSON:

{
  "userIdentityWithPassword": {
    "LogOnProtocol": "7",
    "UnconditionalLogOn": false,
    "UserId": "myLogin",
    "Password": "myPassword"
  }
}

我得到一个肯定的答案:

{
    "d": {
        "__type": "Session2:http://www.kofax.com/agility/services/sdk",
        "SessionId": "1DE6B79F34054D58AEE1509FE583811F",
        "ResourceId": "873C0F5C8BD34BAFBF4B14FF538FBAEC",
        "DisplayName": "Aurore Mouret",
        "IsValid": true,
        "LogonState": {
            "__type": "LogonState:http://www.kofax.com/agility/services/sdk",
            "FormName": "",
            "LogonStateType": 0
        },
        "ReserveLicenseUsed": false
    }
}

到目前为止,太好了。为此,我创建了模型:

public class UserIdentityWithPasswordRestRequestModel {
    LogOnWithPassword2RestRequestModel userIdentityWithPassword;
}
public class LogOnWithPassword2RestRequestModel {
    @SerializedName("LogOnProtocol")
    private String logOnProtocol;
    @SerializedName("UnconditionalLogOn")
    private boolean unconditionalLogOn;
    @SerializedName("UserId")
    private String userId; // C640521793431F4486D4EF1586672385
    @SerializedName("Password")
    private String password; // 123456
}

对于响应:

public class LogOnWithPassword2RestResponseModel {
    private DRestResponseModel d;
}
public class DRestResponseModel {
    @SerializedName("__type")
    private String type;
    @SerializedName("SessionId")
    private String sessionId;
    @SerializedName("ResourceId")
    private String resourceId;
    @SerializedName("DisplayName")
    private String displayName;
    @SerializedName("IsValid")
    private boolean isValid;
    @SerializedName("LogonState")
    private LogonStateRestResponseModel logonState;
    @SerializedName("ReserveLicenseUsed")
    private boolean reserveLicenseUsed;
}
public class LogonStateRestResponseModel {
    @SerializedName("__type")
    private String type;
    @SerializedName("FormName")
    private String formName;
    @SerializedName("LogonStateType")
    private String logonStateType;
}

这些类应该允许我构建json。 现在,我创建了一个构建请求对象并期望响应对象的方法。

public LogOnWithPassword2RestResponseModel logOnWithPassword() throws Exception {
    LogOnWithPassword2RestResponseModel returnValue = new LogOnWithPassword2RestResponseModel();

    // set the HTTP Connection to the KTA Application
    URL url = new URL("http://localhost/TotalAgility/Services/SDK/UserService.svc/json/LogOnWithPassword2");
    HttpURLConnection con = (HttpURLConnection)url.openConnection();

    con.setRequestMethod("POST");
    con.setRequestProperty("Content-Type", "application/json; utf-8");
    con.setDoOutput(true);

    Gson gson = new GsonBuilder().setPrettyPrinting().create();
    LogOnWithPassword2RestRequestModel userIdentityWithPassword = new LogOnWithPassword2RestRequestModel();
    // set the values
    userIdentityWithPassword.setLogOnProtocol(logOnProtocol);
    userIdentityWithPassword.setUnconditionalLogOn(unconditionalLogOn);
    userIdentityWithPassword.setUserId(userId);
    userIdentityWithPassword.setPassword(password);

    UserIdentityWithPasswordRestRequestModel userIdentityWithPasswordRestRequestModel =
            new UserIdentityWithPasswordRestRequestModel();
    userIdentityWithPasswordRestRequestModel.setUserIdentityWithPassword(userIdentityWithPassword);

    // Convert to Json :
    String jsonInputString = gson.toJson(userIdentityWithPasswordRestRequestModel);
    System.out.println(jsonInputString);

    // add request parameter, form parameters
    try(OutputStream os = con.getOutputStream()) {
        byte[] input = jsonInputString.getBytes(StandardCharsets.UTF_8);
        os.write(input, 0, input.length);
        System.out.println("OS " + os);
    }

    // get the response from KTA
    try(BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(), StandardCharsets.UTF_8))) {
        StringBuilder response = new StringBuilder();
        String responseLine = null;
        while ((responseLine = br.readLine()) != null) {
            response.append(responseLine.trim());
        }
        System.out.println(response.toString());
        returnValue = gson.fromJson(response.toString(), LogOnWithPassword2RestResponseModel.class);
        System.out.println(returnValue);
    }

    return returnValue;
}

当我调用这部分代码时,我注意到我构建了“正确的” JSON:

{
  "userIdentityWithPassword": {
    "LogOnProtocol": "7",
    "UnconditionalLogOn": false,
    "UserId": "myLogin",
    "Password": "myPassword"
  }
}

由于我无法解释的原因,我收到了错误400。

Exception in thread "main" java.io.IOException: Server returned HTTP response code: 400 for URL: http://94.247.28.163/TotalAgility/Services/SDK/UserService.svc/json/LogOnWithPassword2
    at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1913)
    at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1509)
    at com.signature.app.ui.controller.DocumentController.logOnWithPassword(DocumentController.java:71)
    at com.signature.app.Main.main(Main.java:21)

第71行对应于try catch的这一行

try(BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(),StandardCharsets.UTF_8)))

1 个答案:

答案 0 :(得分:1)

我替换了

List

使用此代码:

con.setRequestProperty("Content-Type", "application/json; utf-8");
相关问题