Project

General

Profile

Actions

Defect #10013

closed

Rest API - Create Version -> Internal server error 500

Added by Juraj Tomana about 12 years ago. Updated about 12 years ago.

Status:
Closed
Priority:
Urgent
Assignee:
-
Category:
REST API
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed
Affected version:

Description

I'm trying to create new version in project using Rest API using C# code:

Uri address = new Uri("http://myredmineserver/projects/test/versions.xml?key=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");

      WebRequest request = WebRequest.Create(address);
      request.Method = "POST";
      string xml =
        "<?xml version=\"1.0\"?>\n" +
          "<version>\n" +
          "<project id=\"45\"/>\n" +
          "<name>1.0.0.10</name>\n" +
          "<due_date>2012-01-16</due_date>\n" +
          "<description>test test</description>\n" +
          "</version>";
      byte[] byteArray = Encoding.UTF8.GetBytes(xml);
      request.ContentType = "application/xml";
      request.ContentLength = byteArray.Length;
      Stream dataStream = request.GetRequestStream();
      dataStream.Write(byteArray, 0, byteArray.Length);
      dataStream.Close();
      WebResponse response = request.GetResponse();
      Console.WriteLine(((HttpWebResponse)response).StatusDescription);

I always get error 500: Internal server error.

Actions #1

Updated by Juraj Tomana about 12 years ago

  • Status changed from New to Resolved

Using the logs I found problem.

Despite of Rest API documentation (http://www.redmine.org/projects/redmine/wiki/Rest_Versions), parameter "due_date" is wrong. Right name of that parameter is "effective_date".

Actions #2

Updated by Jean-Philippe Lang about 12 years ago

  • Category set to REST API
  • Target version set to 1.3.1
  • Resolution set to Fixed

Fixed in r8686. The due_date attribute is now accepted.

Actions #3

Updated by Jean-Philippe Lang about 12 years ago

  • Status changed from Resolved to Closed

Merged.

Actions

Also available in: Atom PDF