0
votes

I am attempting to implement the IAsyncService interface with ServiceStack 3.9.17.0.

Here is the code for my service definition:

public class TestService : IAsyncService<int>
{
    object IAsyncService<int>.ExecuteAsync(int request)
    {
        return "Yup that worked";
    }
}

And here is the code from my Global.asax.cs:

public class Global : System.Web.HttpApplication
{
    public class TestServiceAppHost : AppHostBase
    {
        public TestServiceAppHost() : base("Test Async Web Services", typeof(TestService).Assembly) { }

        public override void Configure(Funq.Container container)
        {
            Routes.Add<int>("/Test");   
        }
    }
}

When I run and go to the metadata page I see the other 2 services that exist in this project which just implement IService (removed to keep samples clean) but my IAsyncService doesn't display and if i try to hit it i get the following message:

<Int32Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="">
    <ResponseStatus>
        <ErrorCode>KeyNotFoundException</ErrorCode>
        <Message>The given key was not present in the dictionary.</Message>
        <StackTrace>
                at System.Collections.Generic.Dictionary`2.get_Item(TKey key) 
                at ServiceStack.WebHost.Endpoints.Utils.FilterAttributeCache.GetRequestFilterAttributes(Type requestDtoType) 
                at ServiceStack.WebHost.Endpoints.EndpointHost.ApplyRequestFilters(IHttpRequest httpReq, IHttpResponse httpRes, Object requestDto) 
                at ServiceStack.WebHost.Endpoints.RestHandler.ProcessRequest(IHttpRequest httpReq, IHttpResponse httpRes, String operationName)
         </StackTrace>
    </ResponseStatus>
</Int32Response>

Any and all help would be greatly appreciated.

EDIT:

I have update the code to look like this after a suggestion from mythz (thanks again for replying).

DTO and Service:

[Route("/test")]
public class TestDTO
{
    public int request { get; set; }
}

public class TestService : IAsyncService<TestDTO>
{
    object IAsyncService<TestDTO>.ExecuteAsync(TestDTO request)
    {
        return "Yup that worked";
    }
}

I left the Global.asax.cs the same except i changes the route to use the DTO and made the route lower case to match the attribute on the DTO. I am still having the same issue.

Edit #2: I upgraded to v3.9.71 and am still having the same issue.

1

1 Answers

0
votes

ServiceStack Services require a Request DTO, i.e. a concrete POCO class. You cannot use an int as a Request DTO. If you need to you can wrap it in a POCO class, e.g:

[Route("/test")]
public class Request 
{
    public int Int { get; set; }
}