设置Web.config与ASP.NET MVC 4并排工作 - 位置标记无法解析值“api”

时间:2013-09-25 14:41:49

标签: servicestack

我查了Run servicestack side by side with another web framework

当我添加位置标记时,“api”未解析...我需要做些什么才能让位置标记知道“api”?

1 个答案:

答案 0 :(得分:1)

首先确保遵循README.txt instructions在ASP.NET MVC中运行ServiceStack。 ServiceStack会根据<location>标记自动推断处理程序路径,如果有多个或者有其他问题推断,可以在Config.ServiceStackHandlerFactoryPath中明确设置,例如:

SetConfig(new EndpointHostConfig { 
    ServiceStackHandlerFactoryPath = "api",
});