0

我正在尝试使用 zephyr java rest API 在 zephyr 中创建一个“循环”。我编写了以下客户端代码来创建循环。

String auth = new String(Base64.encode("test.manager:test.manager"));
    Client client1 = Client.create();

        String cycle ="{'name': 'Cycle with TCR phase',  'build': '7993',  'environment': 'MyOwnEnv',  'startDate': 1447957800000,  'endDate': 1448389800000,  'status': 0,  'releaseId': 1,  'remotePhases': []}";
        WebResource webresource = client1.resource("http://localhost:81/flex/services/rest/latest/cycle");
        ClientResponse response = webresource.type(MediaType.APPLICATION_JSON_TYPE).accept(MediaType.APPLICATION_JSON_TYPE).post(ClientResponse.class, cycle);
        String responseData =response.getEntity(String.class);  
        System.out.println(responseData);

我收到以下错误"POST http://localhost:81/flex/services/rest/latest/cycle returned a response status of 500 Internal Server Error"。请让我知道代码中的错误是什么,或者是否需要在 zephyr 中设置任何配置

4

1 回答 1

0

请尝试将 POST 请求与参数一起使用,例如:

POSThttp://localhost:80/flex/services/rest/latest/cycle/name=Cycle

与 TCR 阶段,让我们知道这个问题是否仍然存在

于 2015-12-16T21:15:36.137 回答