3

我使用ServiceStack(非常棒)构建了一个简单的 Rest 服务,它返回一个键值对列表。

我的服务如下所示:

 public class ServiceListAll : RestServiceBase<ListAllResponse>
{
    public override object OnGet(ListAllResponse request)
    {          
        APIClient c = VenueServiceHelper.CheckAndGetClient(request.APIKey, VenueServiceHelper.Methods.ListDestinations);

        if (c == null)
        {
            return null;
        }
        else
        {
            if ((RequestContext.AbsoluteUri.Contains("counties")))
            {
                return General.GetListOfCounties();
            }

            else if ((RequestContext.AbsoluteUri.Contains("destinations")))
            {
                return General.GetListOfDestinations();
            }

            else
            {
                return null;
            }
        }
    }
}

我的回复是这样的:

    public class ListAllResponse
{
    public string County { get; set; }
    public string Destination { get; set; }
    public string APIKey { get; set; }     
}

我已将其余 URL 映射如下:

.Add<ListAllResponse>("/destinations")
.Add<ListAllResponse>("/counties")

调用服务时

http://localhost:5000/counties/?apikey=xxx&format=xml

我收到此异常(未命中服务第一行中的断点):

NullReferenceException 对象引用未设置为对象的实例。在 ServiceStack.Text.XmlSerializer.SerializeToStream(Object obj, Stream stream) 在 ServiceStack.Common.Web.HttpResponseFilter.<GetStreamSerializer>b_ 3(IRequestContext r, Object o, Stream s) 在 ServiceStack.Common.Web.HttpResponseFilter.<> c _DisplayClass1.<GetResponseSerializer>b__0(IRequestContext httpReq, Object dto, IHttpResponse httpRes) at ServiceStack.WebHost.Endpoints.Extensions.HttpResponseExtensions.WriteToResponse(IHttpResponse response, Object result, ResponseSerializerDelegate defaultAction, IRequestContext serializerCtx, Byte[] bodyPrefix, Byte[]体后缀)

无论我是否在调用中包含任何参数,都会引发异常。我还在同一个项目中创建了许多其他类似的服务,它们运行良好。谁能指出我正确的方向,这意味着什么?

4

1 回答 1

7

您的 Web 服务设计有点落后,您的请求 DTO应该继续而RestServiceBase<TRequest>不是您的响应。如果您正在创建一个 REST-ful 服务,我建议您的服务的名称(即请求 DTO)是一个名词,例如在这种情况下可能是 Codes。

此外,我建议为您的服务使用相同的强类型响应,其名称遵循“{RequestDto}Response”的约定,例如 CodesResponse。

最后返回一个空响应而不是 null,因此客户端只需要处理一个空结果集而不是空响应。

以下是我将如何重写您的服务:

 [RestService("/codes/{Type}")]
 public class Codes {
      public string APIKey { get; set; }     
      public string Type { get; set; }
 }

 public class CodesResponse {
      public CodesResponse() {
           Results = new List<string>();
      }

      public List<string> Results { get; set; }
 }

 public class CodesService : RestServiceBase<Codes>
 {
      public override object OnGet(Codes request)
      {          
           APIClient c = VenueServiceHelper.CheckAndGetClient(request.APIKey, 
              VenueServiceHelper.Methods.ListDestinations);

           var response = new CodesResponse();
           if (c == null) return response;

           if (request.Type == "counties") 
                response.Results = General.GetListOfCounties();
           else if (request.Type == "destinations") 
                response.Results = General.GetListOfDestinations();

           return response; 
     }
 }

您可以使用 [RestService] 属性或以下路由(执行相同操作):

Routes.Add<Codes>("/codes/{Type}");

这将允许您像这样调用服务:

http://localhost:5000/codes/counties?apikey=xxx&format=xml
于 2012-03-08T22:17:38.313 回答