我已经尝试了所有 Razor 自托管和 servicestack 模板,在这些项目中,如果您安装了 razorFormat,则可以提供静态 html 和 cshtml。我不知道我做错了什么,我刚刚将代码复制到新的解决方案中,我无法获得 html 响应。我可以始终获取元数据页面并且服务正常工作。我无法添加 default.htm 并使其正常工作。
如果我输入,http://localhost:1337
我应该被定向到默认页面。也许我错过了一些东西,但我不知道它是什么。如果有人可以帮我一把,我将不胜感激!
这是我的default.htm
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
SOMETEXT
</body>
</html>
这是我的程序
class Program
{
[Route("/hello")]
[Route("/hello/{Name}")]
public class Hello
{
public string Name { get; set; }
}
public class HelloResponse
{
public string Result { get; set; }
}
public class HelloService : Service
{
public object Any(Hello request)
{
return new HelloResponse { Result = "Hello, " + request.Name };
}
}
public class AppHost : AppHostHttpListenerBase {
public AppHost() : base("StarterTemplate HttpListener", typeof(HelloService).Assembly) {
}
public override void Configure(Funq.Container container) {
container.Register(new HelloService());
}
}
static void Main(string[] args)
{
var listeningOn = args.Length == 0 ? "http://*:1337/" : args[0];
var appHost = new AppHost();
appHost.Init();
appHost.Start(listeningOn);
Console.WriteLine("AppHost Created at {0}, listening on {1}", DateTime.Now, listeningOn);
Console.ReadKey();
}
}
编辑:我应该添加我得到的响应。
Handler for Request not found:
Request.HttpMethod: GET
Request.HttpMethod: GET
Request.PathInfo: /default.htm
Request.QueryString:
Request.RawUrl: /default.htm
我尝试的另一件事是在 AppHostHttpListenerBase.Configure 中放置一个请求过滤器。我什至在我的项目中都没有做到这一点,但我在模板项目中做到了。
编辑:我发现问题是我的 Default.html 和 app.Config 文件没有移动到 bin/Debug 目录。有没有人遇到过这个问题?