1

Is a parameterless constructor of "a Request DTO" required in ServiceStack

If I comment out the parameterless constrctor

[DataContract]
[RestService("/Competitions/", "GET")]
[RestService("/Competitions/{Id}", "GET")]
public class Competitions
{
    [DataMember]
    public int CompetitionID { get; set; }
    [DataMember]
    public string CompName { get; set; }
    [DataMember]
    public string CompType { get; set; }
//public Competitions()
//{ 

//}

public Competitions(ABC abc)
    {
    this.CompetitionID = abc.abcID;
    this.CompName = abc.CompName;
    this.CompType = abc.CompType;
    }
}

I will get an exception "No parameterless constructor servicestack" when accessing the metadata page http://localhost/api/xml/metadata?op=Competitions

The stacktrace is

[External Code] 
    ServiceStack.DLL!ServiceStack.WebHost.Endpoints.Metadata.XmlMetadataHandler.CreateMessage(System.Type dtoType = {Name = "Competitions" FullName = "FSI.API.ServiceModel.Competitions"}) Line 17 + 0x8 bytes C#
    ServiceStack.DLL!ServiceStack.WebHost.Endpoints.Metadata.BaseMetadataHandler.ProcessOperations(System.Web.UI.HtmlTextWriter writer = {System.Web.UI.HtmlTextWriter}, ServiceStack.ServiceHost.IHttpRequest httpReq = {ServiceStack.WebHost.Endpoints.Extensions.HttpRequestWrapper}) Line 56 + 0xe bytes    C#
    ServiceStack.DLL!ServiceStack.WebHost.Endpoints.Metadata.BaseMetadataHandler.Execute(System.Web.HttpContext context = {System.Web.HttpContext}) Line 34 C#
    ServiceStack.DLL!ServiceStack.WebHost.Endpoints.Support.HttpHandlerBase.ProcessRequest(System.Web.HttpContext context = {System.Web.HttpContext}) Line 20   C#
[External Code] 
ValidfroM
  • 2,626
  • 3
  • 30
  • 41

1 Answers1

2

The XmlSerializer needs a constructor to work, you can make it internal, private or protected if you want.

Peter
  • 27,590
  • 8
  • 64
  • 84