服务堆栈蛋白质跟踪器教程问题(不会启动元数据)
我的主要问题是当我启动网站并转到/元数据时没有显示
以下是网络配置中的新条目
<system.webServer>
<handlers>
<add path="*" name="ServiceStack.Factory" type="ServiceStack.WebHost.Endpoints.ServiceStackHttpHandlerFactory, ServiceStack" verb="*" preCondition="integratedMode" resourceType="Unspecified" allowPathInfo="true" />
</handlers>
</system.webServer>
有什么想法吗?
答案 0 :(得分:1)
看起来问题是缺少IIS。 :(
将配置更改为此,现在我看到元数据
<system.web>
<httpHandlers>
<add path="*" type="ServiceStack.WebHost.Endpoints.ServiceStackHttpHandlerFactory, ServiceStack" verb="*"/>
</httpHandlers>
</system.web>
兴奋地继续学习本教程的下一部分:)