ServiceStack with IIS

I am trying to publish my website containing links to servicestack service APIs.

The website is fine, but when it tries to access my REST services generated by ServiceStack, it returns 404 errors.

Does anyone know how to publish serviceStack REST services on IIS6?

thank

+5
source share
1 answer

From the instructions of the ServiceStack Hello World Tutorial :

Note: due to limitations in IIS 6, the / custompath path must end with .ashx, for example: path = "servicestack.ashx"

The name can be anything, for example. it can be api.ashxif you want.

ASP.NET/IIS 6 .

+7

All Articles