You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello everyone,
I'm trying to use the Xray api POST : "/rest/raven/1.0/import/execution" and I have setted the query parameter executionResults with json data that I should send respecting the mentioned format in the documentation, and this is of course scripting in java language, but I get the error 500/ Internal server error
json object:
{
"info" : {
"summary" : "test of test execution 2"
}
}
HttpPost request = new HttpPost(HOST + "/rest/raven/1.0/import/execution");
String input = FileUtils.readFileToString(json, "UTF-8");
List<NameValuePair> nvps = new ArrayList<>();
nvps.add(new BasicNameValuePair("executionResults", input));
System.out.println(nvps);
request.setEntity(new UrlEncodedFormEntity(nvps, StandardCharsets.UTF_8));
request.setHeader("Content_type", "application/json");
request.setHeader("Authorization", "Basic " +Base64.getEncoder()
.encodeToString((USERNAME + ":" + PASSWORD).getBytes(StandardCharsets.UTF_8))
);
Could you please help with this ?
Hi @Chaimae Alaoui Ismaili and @sakthivel_p10
So far, we don't have any record of any malfunction in this feature.
It is best to contact Xray Support (http://Xraysupport.getXray.app) to share your configuration so that the support team can investigate further.
Thank you.
Kind regards,
Rogerio Paiva [Xray Support Team]
Hi,
Is your issue resolved, am too facing same issue. whichever is worked before is getting 500/internal server error now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.